Changeset 106871 in webkit
- Timestamp:
- Feb 6, 2012, 4:30:52 PM (15 years ago)
- Location:
- branches/chromium/1025
- Files:
-
- 2 edited
-
LayoutTests/platform/chromium/test_expectations.txt (modified) (1 diff)
-
Source/WebCore/platform/audio/VectorMath.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/chromium/1025/LayoutTests/platform/chromium/test_expectations.txt
r106841 r106871 3799 3799 BUGWK75932 : fast/js/mozilla/strict/15.4.4.6.html = TEXT 3800 3800 3801 BUGWK75933 WIN : webaudio/convolution-mono-mono.html = TEXT3802 3803 3801 BUGWK76280 : media/W3C/video/networkState/networkState_during_progress.html = PASS TEXT 3804 3802 BUGV81900 SLOW LINUX DEBUG : inspector/debugger/watch-expressions-panel-switch.html = PASS CRASH -
branches/chromium/1025/Source/WebCore/platform/audio/VectorMath.cpp
r105079 r106871 419 419 #endif 420 420 for (; i < framesToProcess; ++i) { 421 realDestP[i] = real1P[i] * real2P[i] - imag1P[i] * imag2P[i]; 422 imagDestP[i] = real1P[i] * imag2P[i] + imag1P[i] * real2P[i]; 421 // Read and compute result before storing them, in case the 422 // destination is the same as one of the sources. 423 float realResult = real1P[i] * real2P[i] - imag1P[i] * imag2P[i]; 424 float imagResult = real1P[i] * imag2P[i] + imag1P[i] * real2P[i]; 425 426 realDestP[i] = realResult; 427 imagDestP[i] = imagResult; 423 428 } 424 429 }
Note:
See TracChangeset
for help on using the changeset viewer.