2012-04-28 13:23:42 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Michael Niedermayer (michaelni@gmx.at)
|
|
|
|
*
|
|
|
|
* This file is part of libswresample
|
|
|
|
*
|
|
|
|
* libswresample is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* libswresample is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with libswresample; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2014-07-03 04:16:50 +03:00
|
|
|
#include "libavutil/x86/cpu.h"
|
2012-04-28 13:23:42 +03:00
|
|
|
#include "libswresample/swresample_internal.h"
|
|
|
|
#include "libswresample/audioconvert.h"
|
|
|
|
|
2013-12-30 14:10:35 +03:00
|
|
|
#define PROTO(pre, in, out, cap) void ff ## pre ## in## _to_ ##out## _a_ ##cap(uint8_t **dst, const uint8_t **src, int len);
|
2012-05-06 16:22:42 +03:00
|
|
|
#define PROTO2(pre, out, cap) PROTO(pre, int16, out, cap) PROTO(pre, int32, out, cap) PROTO(pre, float, out, cap)
|
|
|
|
#define PROTO3(pre, cap) PROTO2(pre, int16, cap) PROTO2(pre, int32, cap) PROTO2(pre, float, cap)
|
2014-11-06 22:38:37 +02:00
|
|
|
#define PROTO4(pre) PROTO3(pre, mmx) PROTO3(pre, sse) PROTO3(pre, sse2) PROTO3(pre, ssse3) PROTO3(pre, sse4) PROTO3(pre, avx) PROTO3(pre, avx2)
|
2013-12-30 14:10:35 +03:00
|
|
|
PROTO4(_)
|
|
|
|
PROTO4(_pack_2ch_)
|
|
|
|
PROTO4(_pack_6ch_)
|
2014-12-30 23:16:37 +02:00
|
|
|
PROTO4(_pack_8ch_)
|
2013-12-30 14:10:35 +03:00
|
|
|
PROTO4(_unpack_2ch_)
|
2015-01-12 20:32:24 +02:00
|
|
|
PROTO4(_unpack_6ch_)
|
2012-05-05 16:31:06 +03:00
|
|
|
|
2012-09-09 03:26:20 +03:00
|
|
|
av_cold void swri_audio_convert_init_x86(struct AudioConvert *ac,
|
2012-04-28 13:23:42 +03:00
|
|
|
enum AVSampleFormat out_fmt,
|
|
|
|
enum AVSampleFormat in_fmt,
|
|
|
|
int channels){
|
|
|
|
int mm_flags = av_get_cpu_flags();
|
|
|
|
|
|
|
|
ac->simd_f= NULL;
|
|
|
|
|
|
|
|
//FIXME add memcpy case
|
|
|
|
|
|
|
|
#define MULTI_CAPS_FUNC(flag, cap) \
|
2014-07-03 04:16:50 +03:00
|
|
|
if (EXTERNAL_##flag(mm_flags)) {\
|
2012-04-28 13:23:42 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S16 || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S16P)\
|
2012-04-28 14:01:50 +03:00
|
|
|
ac->simd_f = ff_int16_to_int32_a_ ## cap;\
|
2012-04-29 15:10:34 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_S32 || out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S32P)\
|
|
|
|
ac->simd_f = ff_int32_to_int16_a_ ## cap;\
|
2012-04-28 13:23:42 +03:00
|
|
|
}
|
|
|
|
|
2014-07-03 04:16:50 +03:00
|
|
|
MULTI_CAPS_FUNC(MMX, mmx)
|
|
|
|
MULTI_CAPS_FUNC(SSE2, sse2)
|
2012-04-28 18:04:42 +03:00
|
|
|
|
2014-07-03 04:16:50 +03:00
|
|
|
if(EXTERNAL_MMX(mm_flags)) {
|
2012-05-13 20:09:01 +03:00
|
|
|
if(channels == 6) {
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_6ch_float_to_float_a_mmx;
|
|
|
|
}
|
|
|
|
}
|
2014-11-07 01:43:06 +02:00
|
|
|
if(EXTERNAL_SSE(mm_flags)) {
|
|
|
|
if(channels == 6) {
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_6ch_float_to_float_a_sse;
|
2015-01-12 20:32:24 +02:00
|
|
|
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S32)
|
|
|
|
ac->simd_f = ff_unpack_6ch_float_to_float_a_sse;
|
2014-11-07 01:43:06 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-03 04:16:50 +03:00
|
|
|
if(EXTERNAL_SSE2(mm_flags)) {
|
2012-04-28 18:04:42 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32 || out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_int32_to_float_a_sse2;
|
2012-04-28 19:52:48 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S16 || out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S16P)
|
|
|
|
ac->simd_f = ff_int16_to_float_a_sse2;
|
2012-04-29 12:27:22 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_FLTP)
|
|
|
|
ac->simd_f = ff_float_to_int32_a_sse2;
|
2012-04-29 13:18:14 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_FLTP)
|
|
|
|
ac->simd_f = ff_float_to_int16_a_sse2;
|
2012-05-05 16:31:06 +03:00
|
|
|
|
|
|
|
if(channels == 2) {
|
2012-07-05 16:17:39 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_2ch_int32_to_int32_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_S16P)
|
|
|
|
ac->simd_f = ff_pack_2ch_int16_to_int16_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S16P)
|
|
|
|
ac->simd_f = ff_pack_2ch_int16_to_int32_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_2ch_int32_to_int16_a_sse2;
|
|
|
|
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S32)
|
|
|
|
ac->simd_f = ff_unpack_2ch_int32_to_int32_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S16)
|
|
|
|
ac->simd_f = ff_unpack_2ch_int16_to_int16_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S16)
|
|
|
|
ac->simd_f = ff_unpack_2ch_int16_to_int32_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S32)
|
|
|
|
ac->simd_f = ff_unpack_2ch_int32_to_int16_a_sse2;
|
|
|
|
|
2012-05-05 16:31:06 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_2ch_int32_to_float_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
|
|
|
|
ac->simd_f = ff_pack_2ch_float_to_int32_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S16P)
|
|
|
|
ac->simd_f = ff_pack_2ch_int16_to_float_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLTP)
|
|
|
|
ac->simd_f = ff_pack_2ch_float_to_int16_a_sse2;
|
2012-05-06 18:22:33 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S32)
|
|
|
|
ac->simd_f = ff_unpack_2ch_int32_to_float_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_FLT)
|
|
|
|
ac->simd_f = ff_unpack_2ch_float_to_int32_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S16)
|
|
|
|
ac->simd_f = ff_unpack_2ch_int16_to_float_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_FLT)
|
|
|
|
ac->simd_f = ff_unpack_2ch_float_to_int16_a_sse2;
|
2012-05-05 16:31:06 +03:00
|
|
|
}
|
2014-11-07 01:43:06 +02:00
|
|
|
if(channels == 6) {
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_6ch_int32_to_float_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
|
|
|
|
ac->simd_f = ff_pack_6ch_float_to_int32_a_sse2;
|
2015-01-12 20:32:24 +02:00
|
|
|
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S32)
|
|
|
|
ac->simd_f = ff_unpack_6ch_int32_to_float_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_FLT)
|
|
|
|
ac->simd_f = ff_unpack_6ch_float_to_int32_a_sse2;
|
2014-11-07 01:43:06 +02:00
|
|
|
}
|
2015-02-15 18:57:02 +02:00
|
|
|
if(channels == 8) {
|
2014-12-30 23:16:37 +02:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_8ch_float_to_float_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_8ch_int32_to_float_a_sse2;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
|
|
|
|
ac->simd_f = ff_pack_8ch_float_to_int32_a_sse2;
|
|
|
|
}
|
2012-04-28 18:04:42 +03:00
|
|
|
}
|
2014-07-03 04:16:50 +03:00
|
|
|
if(EXTERNAL_SSSE3(mm_flags)) {
|
2012-05-06 20:39:52 +03:00
|
|
|
if(channels == 2) {
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S16)
|
|
|
|
ac->simd_f = ff_unpack_2ch_int16_to_int16_a_ssse3;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S16)
|
|
|
|
ac->simd_f = ff_unpack_2ch_int16_to_int32_a_ssse3;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S16)
|
|
|
|
ac->simd_f = ff_unpack_2ch_int16_to_float_a_ssse3;
|
|
|
|
}
|
|
|
|
}
|
2015-05-31 19:20:29 +02:00
|
|
|
if(EXTERNAL_AVX_FAST(mm_flags)) {
|
2012-05-03 16:52:36 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32 || out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_int32_to_float_a_avx;
|
2015-05-31 19:20:29 +02:00
|
|
|
}
|
|
|
|
if(EXTERNAL_AVX(mm_flags)) {
|
2012-05-13 20:09:01 +03:00
|
|
|
if(channels == 6) {
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_6ch_float_to_float_a_avx;
|
2012-05-13 21:53:30 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_6ch_int32_to_float_a_avx;
|
2012-05-13 21:56:18 +03:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
|
|
|
|
ac->simd_f = ff_pack_6ch_float_to_int32_a_avx;
|
2015-01-12 20:32:24 +02:00
|
|
|
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S32)
|
|
|
|
ac->simd_f = ff_unpack_6ch_float_to_float_a_avx;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S32)
|
|
|
|
ac->simd_f = ff_unpack_6ch_int32_to_float_a_avx;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_FLT)
|
|
|
|
ac->simd_f = ff_unpack_6ch_float_to_int32_a_avx;
|
2012-05-13 20:09:01 +03:00
|
|
|
}
|
2015-02-15 18:57:02 +02:00
|
|
|
if(channels == 8) {
|
2014-12-30 23:16:37 +02:00
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_8ch_float_to_float_a_avx;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
|
|
|
|
ac->simd_f = ff_pack_8ch_int32_to_float_a_avx;
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
|
|
|
|
ac->simd_f = ff_pack_8ch_float_to_int32_a_avx;
|
|
|
|
}
|
2012-05-03 16:52:36 +03:00
|
|
|
}
|
2014-11-06 22:38:37 +02:00
|
|
|
if(EXTERNAL_AVX2(mm_flags)) {
|
|
|
|
if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_FLTP)
|
|
|
|
ac->simd_f = ff_float_to_int32_a_avx2;
|
|
|
|
}
|
2012-04-28 13:23:42 +03:00
|
|
|
}
|