diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-04-23 22:22:28 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-06-18 16:16:59 -0400 |
commit | 6c63cbfe7aa24f37064e2384f9b39431a91bfb29 (patch) | |
tree | fc8852b794439a71c9dc89cd2e707b60d883b177 /libavresample/x86/audio_convert_init.c | |
parent | 97ce1ba8673636c96d3cc002bb76221c60324d95 (diff) | |
download | ffmpeg-6c63cbfe7aa24f37064e2384f9b39431a91bfb29.tar.gz |
lavr: Add x86-optimized function for flt to s16 conversion
Diffstat (limited to 'libavresample/x86/audio_convert_init.c')
-rw-r--r-- | libavresample/x86/audio_convert_init.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavresample/x86/audio_convert_init.c b/libavresample/x86/audio_convert_init.c index f0a1a1a55f..1b2f93c1da 100644 --- a/libavresample/x86/audio_convert_init.c +++ b/libavresample/x86/audio_convert_init.c @@ -33,6 +33,8 @@ extern void ff_conv_s32_to_s16_sse2(int16_t *dst, const int32_t *src, int len); extern void ff_conv_s32_to_flt_sse2(float *dst, const int32_t *src, int len); extern void ff_conv_s32_to_flt_avx (float *dst, const int32_t *src, int len); +extern void ff_conv_flt_to_s16_sse2(int16_t *dst, const float *src, int len); + extern void ff_conv_fltp_to_flt_6ch_mmx (float *dst, float *const *src, int len); extern void ff_conv_fltp_to_flt_6ch_sse4(float *dst, float *const *src, int len); extern void ff_conv_fltp_to_flt_6ch_avx (float *dst, float *const *src, int len); @@ -67,6 +69,8 @@ av_cold void ff_audio_convert_init_x86(AudioConvert *ac) 0, 16, 8, "SSE2", ff_conv_s16_to_flt_sse2); ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32, 0, 16, 8, "SSE2", ff_conv_s32_to_flt_sse2); + ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT, + 0, 16, 16, "SSE2", ff_conv_flt_to_s16_sse2); } if (mm_flags & AV_CPU_FLAG_SSE4 && HAVE_SSE) { ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16, |