mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-16 12:24:52 +00:00
workaround apps which dont provided correctly padded streams
Originally committed as revision 3695 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9993064eec
commit
55429b5534
@ -1832,9 +1832,9 @@ static int mjpeg_decode_frame(AVCodecContext *avctx,
|
||||
*(dst++) = x;
|
||||
if (x == 0xff)
|
||||
{
|
||||
while(*src == 0xff) src++;
|
||||
while(src<buf_end && x == 0xff)
|
||||
x = *(src++);
|
||||
|
||||
x = *(src++);
|
||||
if (x >= 0xd0 && x <= 0xd7)
|
||||
*(dst++) = x;
|
||||
else if (x)
|
||||
|
Loading…
Reference in New Issue
Block a user