rematrix_init.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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/attributes.h"
  21. #include "libavutil/mem.h"
  22. #include "libavutil/x86/cpu.h"
  23. #include "libswresample/swresample_internal.h"
  24. #define D(type, simd) \
  25. mix_1_1_func_type ff_mix_1_1_a_## type ## _ ## simd;\
  26. mix_2_1_func_type ff_mix_2_1_a_## type ## _ ## simd;
  27. D(float, sse)
  28. D(float, avx)
  29. D(int16, sse2)
  30. av_cold int swri_rematrix_init_x86(struct SwrContext *s){
  31. #if HAVE_X86ASM
  32. int mm_flags = av_get_cpu_flags();
  33. int nb_in = s->used_ch_layout.nb_channels;
  34. int nb_out = s->out.ch_count;
  35. int num = nb_in * nb_out;
  36. int i,j;
  37. s->mix_1_1_simd = NULL;
  38. s->mix_2_1_simd = NULL;
  39. if (s->midbuf.fmt == AV_SAMPLE_FMT_S16P){
  40. if(EXTERNAL_SSE2(mm_flags)) {
  41. s->mix_1_1_simd = ff_mix_1_1_a_int16_sse2;
  42. s->mix_2_1_simd = ff_mix_2_1_a_int16_sse2;
  43. }
  44. s->native_simd_matrix = av_calloc(num, 2 * sizeof(int16_t));
  45. s->native_simd_one = av_mallocz(2 * sizeof(int16_t));
  46. if (!s->native_simd_matrix || !s->native_simd_one)
  47. return AVERROR(ENOMEM);
  48. for(i=0; i<nb_out; i++){
  49. int sh = 0;
  50. for(j=0; j<nb_in; j++)
  51. sh = FFMAX(sh, FFABS(((int*)s->native_matrix)[i * nb_in + j]));
  52. sh = FFMAX(av_log2(sh) - 14, 0);
  53. for(j=0; j<nb_in; j++) {
  54. ((int16_t*)s->native_simd_matrix)[2*(i * nb_in + j)+1] = 15 - sh;
  55. ((int16_t*)s->native_simd_matrix)[2*(i * nb_in + j)] =
  56. ((((int*)s->native_matrix)[i * nb_in + j]) + (1<<sh>>1)) >> sh;
  57. }
  58. }
  59. ((int16_t*)s->native_simd_one)[1] = 14;
  60. ((int16_t*)s->native_simd_one)[0] = 16384;
  61. } else if(s->midbuf.fmt == AV_SAMPLE_FMT_FLTP){
  62. if(EXTERNAL_SSE(mm_flags)) {
  63. s->mix_1_1_simd = ff_mix_1_1_a_float_sse;
  64. s->mix_2_1_simd = ff_mix_2_1_a_float_sse;
  65. }
  66. if(EXTERNAL_AVX_FAST(mm_flags)) {
  67. s->mix_1_1_simd = ff_mix_1_1_a_float_avx;
  68. s->mix_2_1_simd = ff_mix_2_1_a_float_avx;
  69. }
  70. s->native_simd_matrix = av_calloc(num, sizeof(float));
  71. s->native_simd_one = av_mallocz(sizeof(float));
  72. if (!s->native_simd_matrix || !s->native_simd_one)
  73. return AVERROR(ENOMEM);
  74. memcpy(s->native_simd_matrix, s->native_matrix, num * sizeof(float));
  75. memcpy(s->native_simd_one, s->native_one, sizeof(float));
  76. }
  77. #endif
  78. return 0;
  79. }