aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-22 13:28:33 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-24 03:42:38 +0200
commit145914524bb2208585c34a32352b85908c792b9a (patch)
treef4398333c45046330bf933e2820968d3b40592ec /libavcodec
parent4a699858d56261b87afad98f03ca3f9de4b196be (diff)
downloadffmpeg-145914524bb2208585c34a32352b85908c792b9a.tar.gz
avcodec/apedec: Remove unnecessary emms_c()
Possible since 6feea076e98512d78c8d735509ab6b5e9a71ca1c. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/apedec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c
index 26183067a8..e7baa2e77f 100644
--- a/libavcodec/apedec.c
+++ b/libavcodec/apedec.c
@@ -1577,7 +1577,6 @@ static int ape_decode_frame(AVCodecContext *avctx, AVFrame *frame,
ape_unpack_mono(s, blockstodecode);
else
ape_unpack_stereo(s, blockstodecode);
- emms_c();
if (s->error) {
s->samples=0;