1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-29 22:00:58 +02:00

avcodec/4xm: Remove unnecessary and redundant emms_c()

It is unnecessary since ee551a21ddcbf81afe183d9489c534ee80f263a0;
but it was redundant even before that, because decode_simple_internal()
calls emms_c().

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-08-22 13:31:40 +02:00
parent 145914524b
commit 5bf7187327

View File

@ -966,8 +966,6 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *picture,
*got_frame = 1;
emms_c();
return buf_size;
}