diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-01 01:20:54 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-01 01:29:36 +0200 |
commit | 481432653319acabe8de50d33a32f049e2e0b6ed (patch) | |
tree | da829c33e00ac2180c3c4eda00667bddded40629 /libswresample | |
parent | 505916265985dc245c481b095b6a375533a41ed2 (diff) | |
download | ffmpeg-481432653319acabe8de50d33a32f049e2e0b6ed.tar.gz |
swr/resample: update SSSE3 flag to new name
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/resample.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/resample.c b/libswresample/resample.c index 7a5c7d73b3..ae08d10981 100644 --- a/libswresample/resample.c +++ b/libswresample/resample.c @@ -401,7 +401,7 @@ int swr_set_compensation(struct SwrContext *s, int sample_delta, int compensatio #undef FELEM_MAX #undef FILTER_SHIFT -#if HAVE_SSSE3 +#if HAVE_SSSE3_INLINE #define COMMON_CORE COMMON_CORE_INT16_SSSE3 #define RENAME(N) N ## _int16_ssse3 #define FILTER_SHIFT 15 @@ -424,7 +424,7 @@ int swri_multiple_resample(ResampleContext *c, AudioData *dst, int dst_size, Aud for(i=0; i<dst->ch_count; i++){ #if ARCH_X86 -#if HAVE_SSSE3 +#if HAVE_SSSE3_INLINE if(c->format == AV_SAMPLE_FMT_S16P && (mm_flags&AV_CPU_FLAG_SSSE3)) ret= swri_resample_int16_ssse3(c, (int16_t*)dst->ch[i], (const int16_t*)src->ch[i], consumed, src_size, dst_size, i+1==dst->ch_count); else #endif |