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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-01-16 04:04:09 +0300
committerJames Almer <jamrial@gmail.com>2016-01-17 03:09:38 +0300
commitdee579ffcd70d4a386e4d2dad6967de3bf2db3ed (patch)
treed63906d5f6ab75f78293e97250f3b7c2d7764254 /libavutil/fixed_dsp.c
parentaa6aa2ef091818c2669c48051286ce361401f31b (diff)
x86/fixed_dsp: add ff_butterflies_fixed_sse2
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/fixed_dsp.c')
-rw-r--r--libavutil/fixed_dsp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/fixed_dsp.c b/libavutil/fixed_dsp.c
index c2f270d453..8c018581df 100644
--- a/libavutil/fixed_dsp.c
+++ b/libavutil/fixed_dsp.c
@@ -160,5 +160,8 @@ AVFixedDSPContext * avpriv_alloc_fixed_dsp(int bit_exact)
fdsp->butterflies_fixed = butterflies_fixed_c;
fdsp->scalarproduct_fixed = scalarproduct_fixed_c;
+ if (ARCH_X86)
+ ff_fixed_dsp_init_x86(fdsp);
+
return fdsp;
}