Commit ad866f7a authored by banan's avatar banan

Fixed a possible bug, checked against the assembly.

No sample that used the code has been found though.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5448 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent aadff2ba
......@@ -538,7 +538,7 @@ static void fix_coding_method_array (int sb, int channels, sb_int8_array coding_
run = 1;
case_val = 8;
} else {
switch (switchtable[coding_method[ch][sb][j]]) {
switch (switchtable[coding_method[ch][sb][j]-8]) {
case 0: run = 10; case_val = 10; break;
case 1: run = 1; case_val = 16; break;
case 2: run = 5; case_val = 24; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment