Commit e4748d63 authored by Michael Niedermayer's avatar Michael Niedermayer

fix? flv escape codes

Originally committed as revision 2029 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ec23a472
......@@ -3662,9 +3662,9 @@ static int h263_decode_block(MpegEncContext * s, DCTELEM * block,
last = get_bits1(&s->gb);
run = get_bits(&s->gb, 6);
if(is11){
level = (int8_t)get_sbits(&s->gb, 11);
level = get_sbits(&s->gb, 11);
} else {
level = (int8_t)get_sbits(&s->gb, 7);
level = get_sbits(&s->gb, 7);
}
} else {
last = get_bits1(&s->gb);
......
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