Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-22 00:54:35 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-24 04:42:38 +0300
commitda0e7c3b676867caf02a503cd74d9fe372e3c95d (patch)
tree6634bebc5cffdc215eb8fafaec6605340ae7c593 /libavcodec/takdec.c
parent505eaf0e37fa3cddaee5e624695d1d2dbd510bd1 (diff)
avcodec/takdec: Remove unnecessary emms_c()
Possible since 3d716d38abdae1982e84e30becb57458244656bd. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/takdec.c')
-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;
}
}