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:
authorJames Almer <jamrial@gmail.com>2014-03-24 02:05:17 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-03-24 05:34:02 +0400
commit63dbba655e7b09bd5bd09d3a8eab270152bb803f (patch)
treec6bd91a05ab7f5d6c3fd8ea5a68f60a5f0bb2914 /libswresample/resample_template.c
parentfa25c4c400649bcc7693107d2d4b9d1fa137173e (diff)
swresample/resample: sse float linear interpolation
About two times faster Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/resample_template.c')
-rw-r--r--libswresample/resample_template.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/resample_template.c b/libswresample/resample_template.c
index c6612766b4..396b4e3055 100644
--- a/libswresample/resample_template.c
+++ b/libswresample/resample_template.c
@@ -48,6 +48,7 @@
# define RENAME(N) N ## _float
# elif defined(TEMPLATE_RESAMPLE_FLT_SSE)
# define COMMON_CORE COMMON_CORE_FLT_SSE
+# define LINEAR_CORE LINEAR_CORE_FLT_SSE
# define RENAME(N) N ## _float_sse
# endif