Title: [129418] trunk/Source/WebCore
- Revision
- 129418
- Author
- [email protected]
- Date
- 2012-09-24 14:55:42 -0700 (Mon, 24 Sep 2012)
Log Message
[REGRESSION] Layout Test webaudio/biquad-getFrequencyResponse.html is failing
https://bugs.webkit.org/show_bug.cgi?id=97439
Reviewed by Kenneth Russell.
Fixes uninitialized member variable.
This should fix flaky failing test: webaudio/biquad-getFrequencyResponse.html
* Modules/webaudio/BiquadProcessor.cpp:
(WebCore::BiquadProcessor::BiquadProcessor):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (129417 => 129418)
--- trunk/Source/WebCore/ChangeLog 2012-09-24 21:52:06 UTC (rev 129417)
+++ trunk/Source/WebCore/ChangeLog 2012-09-24 21:55:42 UTC (rev 129418)
@@ -1,3 +1,17 @@
+2012-09-24 Chris Rogers <[email protected]>
+
+ [REGRESSION] Layout Test webaudio/biquad-getFrequencyResponse.html is failing
+ https://bugs.webkit.org/show_bug.cgi?id=97439
+
+ Reviewed by Kenneth Russell.
+
+ Fixes uninitialized member variable.
+
+ This should fix flaky failing test: webaudio/biquad-getFrequencyResponse.html
+
+ * Modules/webaudio/BiquadProcessor.cpp:
+ (WebCore::BiquadProcessor::BiquadProcessor):
+
2012-09-24 Tony Chang <[email protected]>
flex-grow should be 1 when omitted from flex shorthand
Modified: trunk/Source/WebCore/Modules/webaudio/BiquadProcessor.cpp (129417 => 129418)
--- trunk/Source/WebCore/Modules/webaudio/BiquadProcessor.cpp 2012-09-24 21:52:06 UTC (rev 129417)
+++ trunk/Source/WebCore/Modules/webaudio/BiquadProcessor.cpp 2012-09-24 21:55:42 UTC (rev 129418)
@@ -39,6 +39,7 @@
, m_parameter2(0)
, m_parameter3(0)
, m_filterCoefficientsDirty(true)
+ , m_hasSampleAccurateValues(false)
{
double nyquist = 0.5 * this->sampleRate();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes