Skip to content
Snippets Groups Projects
Commit 9d3748be authored by Alex Beregszaszi's avatar Alex Beregszaszi
Browse files

2nd 10l (noticed by arpi)

Originally committed as revision 1082 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7b5c80f6
No related branches found
No related tags found
No related merge requests found
...@@ -1283,7 +1283,7 @@ static int mjpeg_decode_frame(AVCodecContext *avctx, ...@@ -1283,7 +1283,7 @@ static int mjpeg_decode_frame(AVCodecContext *avctx,
while (src<buf_end) while (src<buf_end)
{ {
unsigned char *x = *(src++); unsigned char x = *(src++);
*(dst++) = x; *(dst++) = x;
if (x == 0xff) if (x == 0xff)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment