123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /*
- * Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <LibWeb/WebAudio/AudioNode.h>
- namespace Web::WebAudio {
- // https://webaudio.github.io/web-audio-api/#DynamicsCompressorOptions
- struct DynamicsCompressorOptions : AudioNodeOptions {
- float attack { 0.003 };
- float knee { 30 };
- float ratio { 12 };
- float release { 0.25 };
- float threshold { -24 };
- };
- // https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode
- class DynamicsCompressorNode : public AudioNode {
- WEB_PLATFORM_OBJECT(DynamicsCompressorNode, AudioNode);
- GC_DECLARE_ALLOCATOR(DynamicsCompressorNode);
- public:
- virtual ~DynamicsCompressorNode() override;
- static WebIDL::ExceptionOr<GC::Ref<DynamicsCompressorNode>> create(JS::Realm&, GC::Ref<BaseAudioContext>, DynamicsCompressorOptions const& = {});
- static WebIDL::ExceptionOr<GC::Ref<DynamicsCompressorNode>> construct_impl(JS::Realm&, GC::Ref<BaseAudioContext>, DynamicsCompressorOptions const& = {});
- WebIDL::UnsignedLong number_of_inputs() override { return 1; }
- WebIDL::UnsignedLong number_of_outputs() override { return 1; }
- GC::Ref<AudioParam const> threshold() const { return m_threshold; }
- GC::Ref<AudioParam const> knee() const { return m_knee; }
- GC::Ref<AudioParam const> ratio() const { return m_ratio; }
- GC::Ref<AudioParam const> attack() const { return m_attack; }
- GC::Ref<AudioParam const> release() const { return m_release; }
- float reduction() const { return m_reduction; }
- WebIDL::ExceptionOr<void> set_channel_count_mode(Bindings::ChannelCountMode) override;
- WebIDL::ExceptionOr<void> set_channel_count(WebIDL::UnsignedLong) override;
- protected:
- DynamicsCompressorNode(JS::Realm&, GC::Ref<BaseAudioContext>, DynamicsCompressorOptions const& = {});
- virtual void initialize(JS::Realm&) override;
- virtual void visit_edges(Cell::Visitor&) override;
- private:
- // https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-threshold
- GC::Ref<AudioParam> m_threshold;
- // https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-knee
- GC::Ref<AudioParam> m_knee;
- // https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-ratio
- GC::Ref<AudioParam> m_ratio;
- // https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-attack
- GC::Ref<AudioParam> m_attack;
- // https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-release
- GC::Ref<AudioParam> m_release;
- // https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-internal-reduction-slot
- float m_reduction { 0 }; // [[internal reduction]]
- };
- }
|