mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/jpeglsenc: Remove unnecessary emms_c()
This encoder does not use any MMX anywhere. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
da0e7c3b67
commit
73f024aa58
|
@ -413,8 +413,6 @@ static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt,
|
||||||
/* End of image */
|
/* End of image */
|
||||||
put_marker_byteu(&pb, EOI);
|
put_marker_byteu(&pb, EOI);
|
||||||
|
|
||||||
emms_c();
|
|
||||||
|
|
||||||
av_shrink_packet(pkt, bytestream2_tell_p(&pb));
|
av_shrink_packet(pkt, bytestream2_tell_p(&pb));
|
||||||
*got_packet = 1;
|
*got_packet = 1;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue