1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

fix slice header checking

Originally committed as revision 19303 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefan Gehrer 2009-06-30 06:44:32 +00:00
parent 822d0a6e0c
commit 470de55aa1

View File

@ -441,7 +441,7 @@ static inline int check_for_slice(AVSContext *h) {
align = (-get_bits_count(gb)) & 7; align = (-get_bits_count(gb)) & 7;
/* check for stuffing byte */ /* check for stuffing byte */
if(!align && (show_bits(gb,8) == 0x80)) if(!align && (show_bits(gb,8) == 0x80))
get_bits(gb,8); align = 8;
if((show_bits_long(gb,24+align) & 0xFFFFFF) == 0x000001) { if((show_bits_long(gb,24+align) & 0xFFFFFF) == 0x000001) {
skip_bits_long(gb,24+align); skip_bits_long(gb,24+align);
h->stc = get_bits(gb,8); h->stc = get_bits(gb,8);