mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
22 lines
749 B
Plaintext
22 lines
749 B
Plaintext
// https://webaudio.github.io/web-audio-api/#DynamicsCompressorOptions
|
|
dictionary 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
|
|
[Exposed=Window]
|
|
interface DynamicsCompressorNode : AudioNode {
|
|
constructor(BaseAudioContext context,
|
|
optional DynamicsCompressorOptions options = {});
|
|
readonly attribute AudioParam threshold;
|
|
readonly attribute AudioParam knee;
|
|
readonly attribute AudioParam ratio;
|
|
readonly attribute float reduction;
|
|
readonly attribute AudioParam attack;
|
|
readonly attribute AudioParam release;
|
|
};
|