swresample_x86.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 "libswresample/swresample_internal.h"
  21. #include "libswresample/audioconvert.h"
  22. #define PROTO(pre, in, out, cap) void ff ## pre ## _ ##in## _to_ ##out## _a_ ##cap(uint8_t **dst, const uint8_t **src, int len);
  23. #define PROTO2(pre, out, cap) PROTO(pre, int16, out, cap) PROTO(pre, int32, out, cap) PROTO(pre, float, out, cap)
  24. #define PROTO3(pre, cap) PROTO2(pre, int16, cap) PROTO2(pre, int32, cap) PROTO2(pre, float, cap)
  25. #define PROTO4(pre) PROTO3(pre, mmx) PROTO3(pre, sse) PROTO3(pre, sse2) PROTO3(pre, ssse3) PROTO3(pre, sse4) PROTO3(pre, avx)
  26. PROTO4()
  27. PROTO4(_pack_2ch)
  28. PROTO4(_pack_6ch)
  29. PROTO4(_unpack_2ch)
  30. void swri_audio_convert_init_x86(struct AudioConvert *ac,
  31. enum AVSampleFormat out_fmt,
  32. enum AVSampleFormat in_fmt,
  33. int channels){
  34. int mm_flags = av_get_cpu_flags();
  35. ac->simd_f= NULL;
  36. //FIXME add memcpy case
  37. #define MULTI_CAPS_FUNC(flag, cap) \
  38. if (mm_flags & flag) {\
  39. 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)\
  40. ac->simd_f = ff_int16_to_int32_a_ ## cap;\
  41. 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)\
  42. ac->simd_f = ff_int32_to_int16_a_ ## cap;\
  43. }
  44. MULTI_CAPS_FUNC(AV_CPU_FLAG_MMX, mmx)
  45. MULTI_CAPS_FUNC(AV_CPU_FLAG_SSE, sse)
  46. if(mm_flags & AV_CPU_FLAG_MMX) {
  47. if(channels == 6) {
  48. 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)
  49. ac->simd_f = ff_pack_6ch_float_to_float_a_mmx;
  50. }
  51. }
  52. if(mm_flags & AV_CPU_FLAG_SSE) {
  53. if(channels == 2) {
  54. 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)
  55. ac->simd_f = ff_pack_2ch_int32_to_int32_a_sse;
  56. if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_S16P)
  57. ac->simd_f = ff_pack_2ch_int16_to_int16_a_sse;
  58. if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S16P)
  59. ac->simd_f = ff_pack_2ch_int16_to_int32_a_sse;
  60. if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_S32P)
  61. ac->simd_f = ff_pack_2ch_int32_to_int16_a_sse;
  62. 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)
  63. ac->simd_f = ff_unpack_2ch_int32_to_int32_a_sse;
  64. if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S16)
  65. ac->simd_f = ff_unpack_2ch_int16_to_int16_a_sse;
  66. if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S16)
  67. ac->simd_f = ff_unpack_2ch_int16_to_int32_a_sse;
  68. if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S32)
  69. ac->simd_f = ff_unpack_2ch_int32_to_int16_a_sse;
  70. }
  71. }
  72. if(mm_flags & AV_CPU_FLAG_SSE2) {
  73. 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)
  74. ac->simd_f = ff_int32_to_float_a_sse2;
  75. 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)
  76. ac->simd_f = ff_int16_to_float_a_sse2;
  77. 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)
  78. ac->simd_f = ff_float_to_int32_a_sse2;
  79. 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)
  80. ac->simd_f = ff_float_to_int16_a_sse2;
  81. if(channels == 2) {
  82. if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
  83. ac->simd_f = ff_pack_2ch_int32_to_float_a_sse2;
  84. if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
  85. ac->simd_f = ff_pack_2ch_float_to_int32_a_sse2;
  86. if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S16P)
  87. ac->simd_f = ff_pack_2ch_int16_to_float_a_sse2;
  88. if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLTP)
  89. ac->simd_f = ff_pack_2ch_float_to_int16_a_sse2;
  90. if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S32)
  91. ac->simd_f = ff_unpack_2ch_int32_to_float_a_sse2;
  92. if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_FLT)
  93. ac->simd_f = ff_unpack_2ch_float_to_int32_a_sse2;
  94. if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S16)
  95. ac->simd_f = ff_unpack_2ch_int16_to_float_a_sse2;
  96. if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_FLT)
  97. ac->simd_f = ff_unpack_2ch_float_to_int16_a_sse2;
  98. }
  99. }
  100. if(mm_flags & AV_CPU_FLAG_SSSE3) {
  101. if(channels == 2) {
  102. if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S16)
  103. ac->simd_f = ff_unpack_2ch_int16_to_int16_a_ssse3;
  104. if( out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S16)
  105. ac->simd_f = ff_unpack_2ch_int16_to_int32_a_ssse3;
  106. if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S16)
  107. ac->simd_f = ff_unpack_2ch_int16_to_float_a_ssse3;
  108. }
  109. }
  110. if(mm_flags & AV_CPU_FLAG_SSE4) {
  111. if(channels == 6) {
  112. 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)
  113. ac->simd_f = ff_pack_6ch_float_to_float_a_sse4;
  114. if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
  115. ac->simd_f = ff_pack_6ch_int32_to_float_a_sse4;
  116. if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
  117. ac->simd_f = ff_pack_6ch_float_to_int32_a_sse4;
  118. }
  119. }
  120. if(HAVE_AVX && mm_flags & AV_CPU_FLAG_AVX) {
  121. 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)
  122. ac->simd_f = ff_int32_to_float_a_avx;
  123. if(channels == 6) {
  124. 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)
  125. ac->simd_f = ff_pack_6ch_float_to_float_a_avx;
  126. if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P)
  127. ac->simd_f = ff_pack_6ch_int32_to_float_a_avx;
  128. if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLTP)
  129. ac->simd_f = ff_pack_6ch_float_to_int32_a_avx;
  130. }
  131. }
  132. }