From 0cf9256f71bfb8a1854bb5ceeb7ba2b932110670 Mon Sep 17 00:00:00 2001 From: "commit-queue@webkit.org" Date: Tue, 31 Jan 2012 05:47:29 +0000 Subject: [PATCH] Fix ASSERT fail within AudioBus::processWithGainFrom() https://bugs.webkit.org/show_bug.cgi?id=76685 Patch by Raymond Liu on 2012-01-30 Reviewed by Daniel Bates. Source/WebCore: Test: webaudio/audionode-connect-order.html * webaudio/AudioBasicProcessorNode.cpp: (WebCore::AudioBasicProcessorNode::AudioBasicProcessorNode): LayoutTests: * webaudio/audionode-connect-order-expected.txt: Added. * webaudio/audionode-connect-order.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106332 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- LayoutTests/ChangeLog | 10 +++ .../webaudio/audionode-connect-order-expected.txt | 8 +++ LayoutTests/webaudio/audionode-connect-order.html | 73 ++++++++++++++++++++++ Source/WebCore/ChangeLog | 12 ++++ .../WebCore/webaudio/AudioBasicProcessorNode.cpp | 2 +- 5 files changed, 104 insertions(+), 1 deletion(-) create mode 100644 LayoutTests/webaudio/audionode-connect-order-expected.txt create mode 100644 LayoutTests/webaudio/audionode-connect-order.html diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog index e03f209..967a8f9 100644 --- a/LayoutTests/ChangeLog +++ b/LayoutTests/ChangeLog @@ -1,3 +1,13 @@ +2012-01-30 Raymond Liu + + Fix ASSERT fail within AudioBus::processWithGainFrom() + https://bugs.webkit.org/show_bug.cgi?id=76685 + + Reviewed by Daniel Bates. + + * webaudio/audionode-connect-order-expected.txt: Added. + * webaudio/audionode-connect-order.html: Added. + 2012-01-30 Roland Steiner