af_volume_init.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include "config.h"
  19. #include "libavutil/attributes.h"
  20. #include "libavutil/cpu.h"
  21. #include "libavutil/samplefmt.h"
  22. #include "libavutil/x86/cpu.h"
  23. #include "libavfilter/af_volume.h"
  24. void ff_scale_samples_s16_sse2(uint8_t *dst, const uint8_t *src, int len,
  25. int volume);
  26. void ff_scale_samples_s32_sse2(uint8_t *dst, const uint8_t *src, int len,
  27. int volume);
  28. void ff_scale_samples_s32_ssse3_atom(uint8_t *dst, const uint8_t *src, int len,
  29. int volume);
  30. void ff_scale_samples_s32_avx(uint8_t *dst, const uint8_t *src, int len,
  31. int volume);
  32. av_cold void ff_volume_init_x86(VolumeContext *vol)
  33. {
  34. int cpu_flags = av_get_cpu_flags();
  35. enum AVSampleFormat sample_fmt = av_get_packed_sample_fmt(vol->sample_fmt);
  36. if (sample_fmt == AV_SAMPLE_FMT_S16) {
  37. if (EXTERNAL_SSE2(cpu_flags) && vol->volume_i < 32768) {
  38. vol->scale_samples = ff_scale_samples_s16_sse2;
  39. vol->samples_align = 8;
  40. }
  41. } else if (sample_fmt == AV_SAMPLE_FMT_S32) {
  42. if (EXTERNAL_SSE2(cpu_flags)) {
  43. vol->scale_samples = ff_scale_samples_s32_sse2;
  44. vol->samples_align = 4;
  45. }
  46. if (EXTERNAL_SSSE3(cpu_flags) && cpu_flags & AV_CPU_FLAG_ATOM) {
  47. vol->scale_samples = ff_scale_samples_s32_ssse3_atom;
  48. vol->samples_align = 4;
  49. }
  50. if (EXTERNAL_AVX_FAST(cpu_flags)) {
  51. vol->scale_samples = ff_scale_samples_s32_avx;
  52. vol->samples_align = 8;
  53. }
  54. }
  55. }