diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-11-15 23:52:42 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-11-15 23:52:44 +0100 |
commit | 8f42b09604a6751eb3d3c225b8270b708a8338f4 (patch) | |
tree | a880557c4ff701de3916eb7b387566edc92ae884 | |
parent | 5cd567cfb49fca904165708cfe6c23a1bddc4512 (diff) | |
download | ffmpeg-8f42b09604a6751eb3d3c225b8270b708a8338f4.tar.gz |
swr/resample: fix SSSE3 included unconditionally.
10l Regression since 8ea88339.
-rw-r--r-- | libswresample/resample.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswresample/resample.c b/libswresample/resample.c index 1b1bd5f22a..2096e43db6 100644 --- a/libswresample/resample.c +++ b/libswresample/resample.c @@ -314,9 +314,11 @@ int swr_set_compensation(struct SwrContext *s, int sample_delta, int compensatio #include "resample_template.c" #undef TEMPLATE_RESAMPLE_S16_MMX2 +#if HAVE_SSSE3_INLINE #define TEMPLATE_RESAMPLE_S16_SSSE3 #include "resample_template.c" #undef TEMPLATE_RESAMPLE_S16_SSSE3 +#endif #endif // HAVE_MMXEXT_INLINE |