You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

164 lines
9.1KB

  1. /*
  2. * Copyright (C) 2012 Michael Niedermayer (michaelni@gmx.at)
  3. *
  4. * This file is part of libswresample
  5. *
  6. * libswresample is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * libswresample is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with libswresample; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "libavutil/x86/cpu.h"
  21. #include "libswresample/swresample_internal.h"
  22. #include "libswresample/audioconvert.h"
  23. #define PROTO(pre, in, out, cap) void ff ## pre ## in## _to_ ##out## _a_ ##cap(uint8_t **dst, const uint8_t **src, int len);
  24. #define PROTO2(pre, out, cap) PROTO(pre, int16, out, cap) PROTO(pre, int32, out, cap) PROTO(pre, float, out, cap)
  25. #define PROTO3(pre, cap) PROTO2(pre, int16, cap) PROTO2(pre, int32, cap) PROTO2(pre, float, cap)
  26. #define PROTO4(pre) PROTO3(pre, mmx) PROTO3(pre, sse) PROTO3(pre, sse2) PROTO3(pre, ssse3) PROTO3(pre, sse4) PROTO3(pre, avx) PROTO3(pre, avx2)
  27. PROTO4(_)
  28. PROTO4(_pack_2ch_)
  29. PROTO4(_pack_6ch_)
  30. PROTO4(_pack_8ch_)
  31. PROTO4(_unpack_2ch_)
  32. av_cold void swri_audio_convert_init_x86(struct AudioConvert *ac,
  33. enum AVSampleFormat out_fmt,
  34. enum AVSampleFormat in_fmt,
  35. int channels){
  36. int mm_flags = av_get_cpu_flags();
  37. ac->simd_f= NULL;
  38. //FIXME add memcpy case
  39. #define MULTI_CAPS_FUNC(flag, cap) \
  40. if (EXTERNAL_##flag(mm_flags)) {\
  41. 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)\
  42. ac->simd_f = ff_int16_to_int32_a_ ## cap;\
  43. 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)\
  44. ac->simd_f = ff_int32_to_int16_a_ ## cap;\
  45. }
  46. MULTI_CAPS_FUNC(MMX, mmx)
  47. MULTI_CAPS_FUNC(SSE2, sse2)
  48. if(EXTERNAL_MMX(mm_flags)) {
  49. if(channels == 6) {
  50. 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)
  51. ac->simd_f = ff_pack_6ch_float_to_float_a_mmx;
  52. }
  53. }
  54. if(EXTERNAL_SSE(mm_flags)) {
  55. if(channels == 6) {
  56. 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)
  57. ac->simd_f = ff_pack_6ch_float_to_float_a_sse;
  58. }
  59. }
  60. if(EXTERNAL_SSE2(mm_flags)) {
  61. 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)
  62. ac->simd_f = ff_int32_to_float_a_sse2;
  63. 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)
  64. ac->simd_f = ff_int16_to_float_a_sse2;
  65. 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)
  66. ac->simd_f = ff_float_to_int32_a_sse2;
  67. 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)
  68. ac->simd_f = ff_float_to_int16_a_sse2;
  69. if(channels == 2) {
  70. 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)
  71. ac->simd_f = ff_pack_2ch_int32_to_int32_a_sse2;
  72. if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_S16P)
  73. ac->simd_f = ff_pack_2ch_int16_to_int16_a_sse2;
  74. if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S16P)
  75. ac->simd_f = ff_pack_2ch_int16_to_int32_a_sse2;
  76. if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_S32P)
  77. ac->simd_f = ff_pack_2ch_int32_to_int16_a_sse2;
  78. 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)
  79. ac->simd_f = ff_unpack_2ch_int32_to_int32_a_sse2;
  80. if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S16)
  81. ac->simd_f = ff_unpack_2ch_int16_to_int16_a_sse2;
  82. if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S16)
  83. ac->simd_f = ff_unpack_2ch_int16_to_int32_a_sse2;
  84. if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S32)
  85. ac->simd_f = ff_unpack_2ch_int32_to_int16_a_sse2;
  86. if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
  87. ac->simd_f = ff_pack_2ch_int32_to_float_a_sse2;
  88. if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
  89. ac->simd_f = ff_pack_2ch_float_to_int32_a_sse2;
  90. if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S16P)
  91. ac->simd_f = ff_pack_2ch_int16_to_float_a_sse2;
  92. if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLTP)
  93. ac->simd_f = ff_pack_2ch_float_to_int16_a_sse2;
  94. if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S32)
  95. ac->simd_f = ff_unpack_2ch_int32_to_float_a_sse2;
  96. if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_FLT)
  97. ac->simd_f = ff_unpack_2ch_float_to_int32_a_sse2;
  98. if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S16)
  99. ac->simd_f = ff_unpack_2ch_int16_to_float_a_sse2;
  100. if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_FLT)
  101. ac->simd_f = ff_unpack_2ch_float_to_int16_a_sse2;
  102. }
  103. if(channels == 6) {
  104. if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
  105. ac->simd_f = ff_pack_6ch_int32_to_float_a_sse2;
  106. if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
  107. ac->simd_f = ff_pack_6ch_float_to_int32_a_sse2;
  108. }
  109. if(HAVE_ALIGNED_STACK && channels == 8) {
  110. 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)
  111. ac->simd_f = ff_pack_8ch_float_to_float_a_sse2;
  112. if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
  113. ac->simd_f = ff_pack_8ch_int32_to_float_a_sse2;
  114. if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
  115. ac->simd_f = ff_pack_8ch_float_to_int32_a_sse2;
  116. }
  117. }
  118. if(EXTERNAL_SSSE3(mm_flags)) {
  119. if(channels == 2) {
  120. if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S16)
  121. ac->simd_f = ff_unpack_2ch_int16_to_int16_a_ssse3;
  122. if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S16)
  123. ac->simd_f = ff_unpack_2ch_int16_to_int32_a_ssse3;
  124. if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S16)
  125. ac->simd_f = ff_unpack_2ch_int16_to_float_a_ssse3;
  126. }
  127. }
  128. if(EXTERNAL_AVX(mm_flags)) {
  129. 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)
  130. ac->simd_f = ff_int32_to_float_a_avx;
  131. if(channels == 6) {
  132. 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)
  133. ac->simd_f = ff_pack_6ch_float_to_float_a_avx;
  134. if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
  135. ac->simd_f = ff_pack_6ch_int32_to_float_a_avx;
  136. if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
  137. ac->simd_f = ff_pack_6ch_float_to_int32_a_avx;
  138. }
  139. if(HAVE_ALIGNED_STACK && channels == 8) {
  140. 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)
  141. ac->simd_f = ff_pack_8ch_float_to_float_a_avx;
  142. if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
  143. ac->simd_f = ff_pack_8ch_int32_to_float_a_avx;
  144. if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
  145. ac->simd_f = ff_pack_8ch_float_to_int32_a_avx;
  146. }
  147. }
  148. if(EXTERNAL_AVX2(mm_flags)) {
  149. 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)
  150. ac->simd_f = ff_float_to_int32_a_avx2;
  151. }
  152. }