|
|
@ -302,6 +302,12 @@ static int set_compensation(ResampleContext *c, int sample_delta, int compensati |
|
|
|
#include "resample_template.c" |
|
|
|
#include "resample_template.c" |
|
|
|
#undef TEMPLATE_RESAMPLE_S16_MMX2 |
|
|
|
#undef TEMPLATE_RESAMPLE_S16_MMX2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if HAVE_SSE_INLINE |
|
|
|
|
|
|
|
#define TEMPLATE_RESAMPLE_FLT_SSE |
|
|
|
|
|
|
|
#include "resample_template.c" |
|
|
|
|
|
|
|
#undef TEMPLATE_RESAMPLE_FLT_SSE |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if HAVE_SSE2_INLINE |
|
|
|
#if HAVE_SSE2_INLINE |
|
|
|
#define TEMPLATE_RESAMPLE_S16_SSE2 |
|
|
|
#define TEMPLATE_RESAMPLE_S16_SSE2 |
|
|
|
#include "resample_template.c" |
|
|
|
#include "resample_template.c" |
|
|
@ -328,6 +334,10 @@ static int multiple_resample(ResampleContext *c, AudioData *dst, int dst_size, A |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
if(c->format == AV_SAMPLE_FMT_S16P) ret= swri_resample_int16(c, (int16_t*)dst->ch[i], (const int16_t*)src->ch[i], consumed, src_size, dst_size, i+1==dst->ch_count); |
|
|
|
if(c->format == AV_SAMPLE_FMT_S16P) ret= swri_resample_int16(c, (int16_t*)dst->ch[i], (const int16_t*)src->ch[i], consumed, src_size, dst_size, i+1==dst->ch_count); |
|
|
|
else if(c->format == AV_SAMPLE_FMT_S32P) ret= swri_resample_int32(c, (int32_t*)dst->ch[i], (const int32_t*)src->ch[i], consumed, src_size, dst_size, i+1==dst->ch_count); |
|
|
|
else if(c->format == AV_SAMPLE_FMT_S32P) ret= swri_resample_int32(c, (int32_t*)dst->ch[i], (const int32_t*)src->ch[i], consumed, src_size, dst_size, i+1==dst->ch_count); |
|
|
|
|
|
|
|
#if HAVE_SSE_INLINE |
|
|
|
|
|
|
|
else if(c->format == AV_SAMPLE_FMT_FLTP && (mm_flags&AV_CPU_FLAG_SSE)) |
|
|
|
|
|
|
|
ret= swri_resample_float_sse (c, (float*)dst->ch[i], (const float*)src->ch[i], consumed, src_size, dst_size, i+1==dst->ch_count); |
|
|
|
|
|
|
|
#endif |
|
|
|
else if(c->format == AV_SAMPLE_FMT_FLTP) ret= swri_resample_float(c, (float *)dst->ch[i], (const float *)src->ch[i], consumed, src_size, dst_size, i+1==dst->ch_count); |
|
|
|
else if(c->format == AV_SAMPLE_FMT_FLTP) ret= swri_resample_float(c, (float *)dst->ch[i], (const float *)src->ch[i], consumed, src_size, dst_size, i+1==dst->ch_count); |
|
|
|
else if(c->format == AV_SAMPLE_FMT_DBLP) ret= swri_resample_double(c,(double *)dst->ch[i], (const double *)src->ch[i], consumed, src_size, dst_size, i+1==dst->ch_count); |
|
|
|
else if(c->format == AV_SAMPLE_FMT_DBLP) ret= swri_resample_double(c,(double *)dst->ch[i], (const double *)src->ch[i], consumed, src_size, dst_size, i+1==dst->ch_count); |
|
|
|
} |
|
|
|
} |
|
|
|