[Bug 80497] mpeglib problem playing mp3
Stanislav Karchebny
berk at upnet.ru
Sun May 16 05:35:15 BST 2004
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=80497
berk upnet ru changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From berk upnet ru 2004-05-16 06:35 -------
CVS commit by karchebny:
* Fix that nasty misoptimization bug.
* Would anyone mind if I clean up these Augean stables, or is it better to just drop mpeglib altogether? .)
CCMAIL: 80497-done bugs kde org
M +2 -2 mpeglayer3.cpp 1.6
--- kdemultimedia/mpeglib/lib/splay/mpeglayer3.cpp #1.5:1.6
@ -907,6 +907,6 @ void Mpegtoraw::layer3dequantizesample(i
do{
- out[0][index]=factor*TO_FOUR_THIRDS[in[0][index++]];
- out[0][index]=factor*TO_FOUR_THIRDS[in[0][index++]];
+ out[0][index]=factor*TO_FOUR_THIRDS[in[0][index]];index++;
+ out[0][index]=factor*TO_FOUR_THIRDS[in[0][index]];index++;
}while(--count);
}
More information about the kde-multimedia
mailing list