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.

72 lines
3.3KB

  1. /*
  2. * Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com>
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "config.h"
  21. #include "libavutil/cpu.h"
  22. #include "libavresample/audio_mix.h"
  23. extern void ff_mix_2_to_1_fltp_flt_sse(float **src, float **matrix, int len,
  24. int out_ch, int in_ch);
  25. extern void ff_mix_2_to_1_fltp_flt_avx(float **src, float **matrix, int len,
  26. int out_ch, int in_ch);
  27. extern void ff_mix_2_to_1_s16p_flt_sse2(int16_t **src, float **matrix, int len,
  28. int out_ch, int in_ch);
  29. extern void ff_mix_2_to_1_s16p_flt_sse4(int16_t **src, float **matrix, int len,
  30. int out_ch, int in_ch);
  31. extern void ff_mix_2_to_1_s16p_q8_sse2(int16_t **src, int16_t **matrix,
  32. int len, int out_ch, int in_ch);
  33. extern void ff_mix_1_to_2_fltp_flt_sse(float **src, float **matrix, int len,
  34. int out_ch, int in_ch);
  35. extern void ff_mix_1_to_2_fltp_flt_avx(float **src, float **matrix, int len,
  36. int out_ch, int in_ch);
  37. av_cold void ff_audio_mix_init_x86(AudioMix *am)
  38. {
  39. #if HAVE_YASM
  40. int mm_flags = av_get_cpu_flags();
  41. if (mm_flags & AV_CPU_FLAG_SSE && HAVE_SSE) {
  42. ff_audio_mix_set_func(am, AV_SAMPLE_FMT_FLTP, AV_MIX_COEFF_TYPE_FLT,
  43. 2, 1, 16, 8, "SSE", ff_mix_2_to_1_fltp_flt_sse);
  44. ff_audio_mix_set_func(am, AV_SAMPLE_FMT_FLTP, AV_MIX_COEFF_TYPE_FLT,
  45. 1, 2, 16, 4, "SSE", ff_mix_1_to_2_fltp_flt_sse);
  46. }
  47. if (mm_flags & AV_CPU_FLAG_SSE2 && HAVE_SSE) {
  48. ff_audio_mix_set_func(am, AV_SAMPLE_FMT_S16P, AV_MIX_COEFF_TYPE_FLT,
  49. 2, 1, 16, 8, "SSE2", ff_mix_2_to_1_s16p_flt_sse2);
  50. ff_audio_mix_set_func(am, AV_SAMPLE_FMT_S16P, AV_MIX_COEFF_TYPE_Q8,
  51. 2, 1, 16, 8, "SSE2", ff_mix_2_to_1_s16p_q8_sse2);
  52. }
  53. if (mm_flags & AV_CPU_FLAG_SSE4 && HAVE_SSE) {
  54. ff_audio_mix_set_func(am, AV_SAMPLE_FMT_S16P, AV_MIX_COEFF_TYPE_FLT,
  55. 2, 1, 16, 8, "SSE4", ff_mix_2_to_1_s16p_flt_sse4);
  56. }
  57. if (mm_flags & AV_CPU_FLAG_AVX && HAVE_AVX) {
  58. ff_audio_mix_set_func(am, AV_SAMPLE_FMT_FLTP, AV_MIX_COEFF_TYPE_FLT,
  59. 2, 1, 32, 16, "AVX", ff_mix_2_to_1_fltp_flt_avx);
  60. ff_audio_mix_set_func(am, AV_SAMPLE_FMT_FLTP, AV_MIX_COEFF_TYPE_FLT,
  61. 1, 2, 32, 8, "AVX", ff_mix_1_to_2_fltp_flt_avx);
  62. }
  63. #endif
  64. }