Commit 186f8ae1 authored by Fabrice Bellard's avatar Fabrice Bellard

added forgotten emms() - fix various segmentation faults when using mjpeg


Originally committed as revision 57 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e643b32b
......@@ -796,6 +796,7 @@ static int mjpeg_decode_sos(MJpegDecodeContext *s,
}
}
}
emms_c();
return 0;
}
......@@ -874,6 +875,7 @@ static int mjpeg_decode_frame(AVCodecContext *avctx,
start_code = s->start_code;
s->buf_ptr = s->buffer;
s->start_code = code;
dprintf("marker=%x\n", start_code);
switch(start_code) {
case SOI:
/* nothing to do on SOI */
......
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