mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-27 20:58:16 +00:00
LibWeb: Implement AudioNode.numberOfInputs and .numberOfOutputs
This commit is contained in:
parent
d7a3bad2b4
commit
7b4f0d13ee
Notes:
github-actions[bot]
2024-10-08 14:35:15 +00:00
Author: https://github.com/gmta
Commit: 7b4f0d13ee
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1679
8 changed files with 20 additions and 16 deletions
|
@ -98,20 +98,6 @@ void AudioNode::disconnect(JS::NonnullGCPtr<AudioParam> destination_param, WebID
|
|||
dbgln("FIXME: Implement AudioNode::disconnect(destination_param, output)");
|
||||
}
|
||||
|
||||
// https://webaudio.github.io/web-audio-api/#dom-audionode-numberofinputs
|
||||
WebIDL::UnsignedLong AudioNode::number_of_inputs()
|
||||
{
|
||||
dbgln("FIXME: Implement AudioNode::number_of_inputs()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// https://webaudio.github.io/web-audio-api/#dom-audionode-numberofoutputs
|
||||
WebIDL::UnsignedLong AudioNode::number_of_outputs()
|
||||
{
|
||||
dbgln("FIXME: Implement AudioNode::number_of_outputs()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// https://webaudio.github.io/web-audio-api/#dom-audionode-channelcount
|
||||
WebIDL::ExceptionOr<void> AudioNode::set_channel_count(WebIDL::UnsignedLong channel_count)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue