resample_mmx.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright (c) 2012 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "libavutil/x86/asm.h"
  21. #include "libavutil/cpu.h"
  22. #include "libswresample/swresample_internal.h"
  23. int swri_resample_int16_mmx2 (struct ResampleContext *c, int16_t *dst, const int16_t *src, int *consumed, int src_size, int dst_size, int update_ctx);
  24. int swri_resample_int16_ssse3(struct ResampleContext *c, int16_t *dst, const int16_t *src, int *consumed, int src_size, int dst_size, int update_ctx);
  25. DECLARE_ALIGNED(16, const uint64_t, ff_resample_int16_rounder)[2] = { 0x0000000000004000ULL, 0x0000000000000000ULL};
  26. #define COMMON_CORE_INT16_MMX2 \
  27. x86_reg len= -2*c->filter_length;\
  28. __asm__ volatile(\
  29. "movq "MANGLE(ff_resample_int16_rounder)", %%mm0 \n\t"\
  30. "1: \n\t"\
  31. "movq (%1, %0), %%mm1 \n\t"\
  32. "pmaddwd (%2, %0), %%mm1 \n\t"\
  33. "paddd %%mm1, %%mm0 \n\t"\
  34. "add $8, %0 \n\t"\
  35. " js 1b \n\t"\
  36. "pshufw $0x0E, %%mm0, %%mm1 \n\t"\
  37. "paddd %%mm1, %%mm0 \n\t"\
  38. "psrad $15, %%mm0 \n\t"\
  39. "packssdw %%mm0, %%mm0 \n\t"\
  40. "movd %%mm0, (%3) \n\t"\
  41. : "+r" (len)\
  42. : "r" (((uint8_t*)(src+sample_index))-len),\
  43. "r" (((uint8_t*)filter)-len),\
  44. "r" (dst+dst_index)\
  45. );
  46. #define COMMON_CORE_INT16_SSSE3 \
  47. x86_reg len= -2*c->filter_length;\
  48. __asm__ volatile(\
  49. "movdqa "MANGLE(ff_resample_int16_rounder)", %%xmm0 \n\t"\
  50. "1: \n\t"\
  51. "movdqu (%1, %0), %%xmm1 \n\t"\
  52. "pmaddwd (%2, %0), %%xmm1 \n\t"\
  53. "paddd %%xmm1, %%xmm0 \n\t"\
  54. "add $16, %0 \n\t"\
  55. " js 1b \n\t"\
  56. "phaddd %%xmm0, %%xmm0 \n\t"\
  57. "phaddd %%xmm0, %%xmm0 \n\t"\
  58. "psrad $15, %%xmm0 \n\t"\
  59. "packssdw %%xmm0, %%xmm0 \n\t"\
  60. "movd %%xmm0, (%3) \n\t"\
  61. : "+r" (len)\
  62. : "r" (((uint8_t*)(src+sample_index))-len),\
  63. "r" (((uint8_t*)filter)-len),\
  64. "r" (dst+dst_index)\
  65. );