From 5bf71873276a4e264188a07e3c1624d94d7741d7 Mon Sep 17 00:00:00 2001
From: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Date: Mon, 22 Aug 2022 13:31:40 +0200
Subject: [PATCH] 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>
---
 libavcodec/4xm.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c
index a7c9043b0a..94d1cbe98a 100644
--- a/libavcodec/4xm.c
+++ b/libavcodec/4xm.c
@@ -966,8 +966,6 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *picture,
 
     *got_frame = 1;
 
-    emms_c();
-
     return buf_size;
 }