Commit ce7fb4ce authored by alex's avatar alex

fixed long standing off-by-one bug (fixes playback on ppc)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4702 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 69e65f54
......@@ -2363,7 +2363,7 @@ static int vp3_decode_init(AVCodecContext *avctx)
&superblock_run_length_vlc_table[0][1], 4, 2,
&superblock_run_length_vlc_table[0][0], 4, 2, 0);
init_vlc(&s->fragment_run_length_vlc, 5, 31,
init_vlc(&s->fragment_run_length_vlc, 5, 30,
&fragment_run_length_vlc_table[0][1], 4, 2,
&fragment_run_length_vlc_table[0][0], 4, 2, 0);
......
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