mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
fix? flv escape codes
Originally committed as revision 2029 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ec23a47286
commit
e4748d63ea
@ -3662,9 +3662,9 @@ static int h263_decode_block(MpegEncContext * s, DCTELEM * block,
|
|||||||
last = get_bits1(&s->gb);
|
last = get_bits1(&s->gb);
|
||||||
run = get_bits(&s->gb, 6);
|
run = get_bits(&s->gb, 6);
|
||||||
if(is11){
|
if(is11){
|
||||||
level = (int8_t)get_sbits(&s->gb, 11);
|
level = get_sbits(&s->gb, 11);
|
||||||
} else {
|
} else {
|
||||||
level = (int8_t)get_sbits(&s->gb, 7);
|
level = get_sbits(&s->gb, 7);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
last = get_bits1(&s->gb);
|
last = get_bits1(&s->gb);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user