RESOLVED FIXED 216050
Make sure BiquadFilterNode tail is getting processed
https://bugs.webkit.org/show_bug.cgi?id=216050
Summary Make sure BiquadFilterNode tail is getting processed
Chris Dumez
Reported 2020-09-01 14:00:53 PDT
Make sure BiquadFilterNode tail is getting processed.
Attachments
Patch (35.37 KB, patch)
2020-09-01 14:05 PDT, Chris Dumez
darin: review+
Chris Dumez
Comment 1 2020-09-01 14:05:27 PDT
Darin Adler
Comment 2 2020-09-01 14:55:45 PDT
Comment on attachment 407710 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=407710&action=review > Source/WebCore/Modules/webaudio/PannerNode.cpp:547 > + return m_panner ? m_panner->requiresTailProcessing() : true; I would write this as: return !m_panner || m_panner->requiresTailProcessing(); For me that seems more readable. Maybe other people find the ? : form more readable? > Source/WebCore/Modules/webaudio/WebKitAudioPannerNode.cpp:355 > + return m_panner ? m_panner->requiresTailProcessing() : true; Ditto.
Chris Dumez
Comment 3 2020-09-01 16:11:59 PDT
Radar WebKit Bug Importer
Comment 4 2020-09-01 16:12:21 PDT
Note You need to log in before you can comment on or make changes to this bug.