diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-22 13:31:40 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-24 03:43:47 +0200 |
commit | 5bf71873276a4e264188a07e3c1624d94d7741d7 (patch) | |
tree | e3f84e84f8b2015b251f34ae44ed88ac2124e732 | |
parent | 145914524bb2208585c34a32352b85908c792b9a (diff) | |
download | ffmpeg-5bf71873276a4e264188a07e3c1624d94d7741d7.tar.gz |
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>
-rw-r--r-- | libavcodec/4xm.c | 2 |
1 files changed, 0 insertions, 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; } |