Commit 646d6728 authored by michaelni's avatar michaelni

fix? flv escape codes


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2029 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f6c40bde
......@@ -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