aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-21 23:54:35 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-24 03:42:38 +0200
commitda0e7c3b676867caf02a503cd74d9fe372e3c95d (patch)
tree6634bebc5cffdc215eb8fafaec6605340ae7c593
parent505eaf0e37fa3cddaee5e624695d1d2dbd510bd1 (diff)
downloadffmpeg-da0e7c3b676867caf02a503cd74d9fe372e3c95d.tar.gz
avcodec/takdec: Remove unnecessary emms_c()
Possible since 3d716d38abdae1982e84e30becb57458244656bd. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/takdec.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/takdec.c b/libavcodec/takdec.c
index 3e53401328..6f4cc92e88 100644
--- a/libavcodec/takdec.c
+++ b/libavcodec/takdec.c
@@ -502,8 +502,6 @@ static int decode_subframe(TAKDecContext *s, int32_t *decoded,
memcpy(s->residues, &s->residues[y], 2 * filter_order);
}
- emms_c();
-
return 0;
}
@@ -660,8 +658,6 @@ static int decorrelate(TAKDecContext *s, int c1, int c2, int length)
memmove(s->residues, &s->residues[tmp], 2 * filter_order);
}
-
- emms_c();
break;
}
}