🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
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.

86 lines
3.0 KiB

  1. /**
  2. * OpenAL cross platform audio library
  3. * Copyright (C) 2014 by Timothy Arceri <t_arceri@yahoo.com.au>.
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library 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. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18. * Or go to http://www.gnu.org/copyleft/lgpl.html
  19. */
  20. #include "config.h"
  21. #include <xmmintrin.h>
  22. #include <emmintrin.h>
  23. #include <smmintrin.h>
  24. #include "alu.h"
  25. #include "defs.h"
  26. template<>
  27. const ALfloat *Resample_<LerpTag,SSE4Tag>(const InterpState* UNUSED(state),
  28. const ALfloat *RESTRICT src, ALsizei frac, ALint increment,
  29. ALfloat *RESTRICT dst, ALsizei dstlen)
  30. {
  31. const __m128i increment4{_mm_set1_epi32(increment*4)};
  32. const __m128 fracOne4{_mm_set1_ps(1.0f/FRACTIONONE)};
  33. const __m128i fracMask4{_mm_set1_epi32(FRACTIONMASK)};
  34. ASSUME(frac > 0);
  35. ASSUME(increment > 0);
  36. ASSUME(dstlen >= 0);
  37. alignas(16) ALsizei pos_[4], frac_[4];
  38. InitiatePositionArrays(frac, increment, frac_, pos_, 4);
  39. __m128i frac4{_mm_setr_epi32(frac_[0], frac_[1], frac_[2], frac_[3])};
  40. __m128i pos4{_mm_setr_epi32(pos_[0], pos_[1], pos_[2], pos_[3])};
  41. const ALsizei todo{dstlen & ~3};
  42. for(ALsizei i{0};i < todo;i += 4)
  43. {
  44. const int pos0{_mm_extract_epi32(pos4, 0)};
  45. const int pos1{_mm_extract_epi32(pos4, 1)};
  46. const int pos2{_mm_extract_epi32(pos4, 2)};
  47. const int pos3{_mm_extract_epi32(pos4, 3)};
  48. const __m128 val1{_mm_setr_ps(src[pos0 ], src[pos1 ], src[pos2 ], src[pos3 ])};
  49. const __m128 val2{_mm_setr_ps(src[pos0+1], src[pos1+1], src[pos2+1], src[pos3+1])};
  50. /* val1 + (val2-val1)*mu */
  51. const __m128 r0{_mm_sub_ps(val2, val1)};
  52. const __m128 mu{_mm_mul_ps(_mm_cvtepi32_ps(frac4), fracOne4)};
  53. const __m128 out{_mm_add_ps(val1, _mm_mul_ps(mu, r0))};
  54. _mm_store_ps(&dst[i], out);
  55. frac4 = _mm_add_epi32(frac4, increment4);
  56. pos4 = _mm_add_epi32(pos4, _mm_srli_epi32(frac4, FRACTIONBITS));
  57. frac4 = _mm_and_si128(frac4, fracMask4);
  58. }
  59. /* NOTE: These four elements represent the position *after* the last four
  60. * samples, so the lowest element is the next position to resample.
  61. */
  62. ALsizei pos{_mm_cvtsi128_si32(pos4)};
  63. frac = _mm_cvtsi128_si32(frac4);
  64. for(ALsizei i{todo};i < dstlen;++i)
  65. {
  66. dst[i] = lerp(src[pos], src[pos+1], frac * (1.0f/FRACTIONONE));
  67. frac += increment;
  68. pos += frac>>FRACTIONBITS;
  69. frac &= FRACTIONMASK;
  70. }
  71. return dst;
  72. }