summaryrefslogtreecommitdiff
path: root/libavcodec/arm
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2014-11-13 13:47:55 -0300
committerJames Almer <jamrial@gmail.com>2014-11-13 13:47:55 -0300
commit3cec54b7d72bc594b28faa7b8fb6683ef397fe66 (patch)
tree19bc6828a49c0b4d45512c81e9204eb5242b6593 /libavcodec/arm
parent2093c1dc51ee1c08cb558759a1c59e6d1e3358a0 (diff)
x86/flacdsp: add SSE2 and AVX decorrelate functions
Two to four times faster depending on instruction set, block size and channel count.
Diffstat (limited to 'libavcodec/arm')
-rw-r--r--libavcodec/arm/flacdsp_init_arm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/flacdsp_init_arm.c b/libavcodec/arm/flacdsp_init_arm.c
index 9ddb26829d..df1b19c1e8 100644
--- a/libavcodec/arm/flacdsp_init_arm.c
+++ b/libavcodec/arm/flacdsp_init_arm.c
@@ -24,7 +24,7 @@
void ff_flac_lpc_16_arm(int32_t *samples, const int coeffs[32], int order,
int qlevel, int len);
-av_cold void ff_flacdsp_init_arm(FLACDSPContext *c, enum AVSampleFormat fmt,
+av_cold void ff_flacdsp_init_arm(FLACDSPContext *c, enum AVSampleFormat fmt, int channels,
int bps)
{
if (bps <= 16 && CONFIG_FLAC_DECODER)