Commit b1563bfe authored by Michael Niedermayer's avatar Michael Niedermayer

dont return -1 if mpeg4 scalability ...

Originally committed as revision 353 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b3987771
...@@ -2259,8 +2259,7 @@ int mpeg4_decode_picture_header(MpegEncContext * s) ...@@ -2259,8 +2259,7 @@ int mpeg4_decode_picture_header(MpegEncContext * s)
s->scalability= get_bits1(&s->gb); s->scalability= get_bits1(&s->gb);
if (s->scalability) { if (s->scalability) {
printf("bad scalability!!!\n"); printf("scalability not supported\n");
return -1;
} }
} }
//printf("end Data %X %d\n", show_bits(&s->gb, 32), get_bits_count(&s->gb)&0x7); //printf("end Data %X %d\n", show_bits(&s->gb, 32), get_bits_count(&s->gb)&0x7);
......
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