Title: [114988] trunk/Source/WebCore
Revision
114988
Author
crog...@google.com
Date
2012-04-23 20:19:36 -0700 (Mon, 23 Apr 2012)

Log Message

Oscillator::setWaveTable() should not reset oscillator phase
https://bugs.webkit.org/show_bug.cgi?id=84647

Reviewed by Kenneth Russell.

* Modules/webaudio/Oscillator.cpp:
(WebCore::Oscillator::setWaveTable):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (114987 => 114988)


--- trunk/Source/WebCore/ChangeLog	2012-04-24 03:15:08 UTC (rev 114987)
+++ trunk/Source/WebCore/ChangeLog	2012-04-24 03:19:36 UTC (rev 114988)
@@ -1,3 +1,13 @@
+2012-04-23  Chris Rogers  <crog...@google.com>
+
+        Oscillator::setWaveTable() should not reset oscillator phase
+        https://bugs.webkit.org/show_bug.cgi?id=84647
+        
+        Reviewed by Kenneth Russell.
+
+        * Modules/webaudio/Oscillator.cpp:
+        (WebCore::Oscillator::setWaveTable):
+
 2012-04-23  Kentaro Hara  <hara...@chromium.org>
 
         [V8][Refactoring] Remove V8Proxy::throwSyntaxError()

Modified: trunk/Source/WebCore/Modules/webaudio/Oscillator.cpp (114987 => 114988)


--- trunk/Source/WebCore/Modules/webaudio/Oscillator.cpp	2012-04-24 03:15:08 UTC (rev 114987)
+++ trunk/Source/WebCore/Modules/webaudio/Oscillator.cpp	2012-04-24 03:19:36 UTC (rev 114988)
@@ -275,7 +275,6 @@
     MutexLocker processLocker(m_processLock);
     m_waveTable = waveTable;
     m_type = CUSTOM;
-    m_virtualReadIndex = 0;
 }
 
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to