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.

140 lines
5.5KB

  1. /*
  2. * VC-1 and WMV3 - DSP functions MMX-optimized
  3. * Copyright (c) 2007 Christophe GISQUET <christophe.gisquet@free.fr>
  4. *
  5. * Permission is hereby granted, free of charge, to any person
  6. * obtaining a copy of this software and associated documentation
  7. * files (the "Software"), to deal in the Software without
  8. * restriction, including without limitation the rights to use,
  9. * copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the
  11. * Software is furnished to do so, subject to the following
  12. * conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be
  15. * included in all copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  19. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  21. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  22. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  23. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  24. * OTHER DEALINGS IN THE SOFTWARE.
  25. */
  26. #include "libavutil/attributes.h"
  27. #include "libavutil/cpu.h"
  28. #include "libavutil/x86/cpu.h"
  29. #include "libavutil/x86/asm.h"
  30. #include "libavcodec/vc1dsp.h"
  31. #include "fpel.h"
  32. #include "vc1dsp.h"
  33. #include "config.h"
  34. #define LOOP_FILTER(EXT) \
  35. void ff_vc1_v_loop_filter4_ ## EXT(uint8_t *src, int stride, int pq); \
  36. void ff_vc1_h_loop_filter4_ ## EXT(uint8_t *src, int stride, int pq); \
  37. void ff_vc1_v_loop_filter8_ ## EXT(uint8_t *src, int stride, int pq); \
  38. void ff_vc1_h_loop_filter8_ ## EXT(uint8_t *src, int stride, int pq); \
  39. \
  40. static void vc1_v_loop_filter16_ ## EXT(uint8_t *src, int stride, int pq) \
  41. { \
  42. ff_vc1_v_loop_filter8_ ## EXT(src, stride, pq); \
  43. ff_vc1_v_loop_filter8_ ## EXT(src+8, stride, pq); \
  44. } \
  45. \
  46. static void vc1_h_loop_filter16_ ## EXT(uint8_t *src, int stride, int pq) \
  47. { \
  48. ff_vc1_h_loop_filter8_ ## EXT(src, stride, pq); \
  49. ff_vc1_h_loop_filter8_ ## EXT(src+8*stride, stride, pq); \
  50. }
  51. #if HAVE_YASM
  52. LOOP_FILTER(mmxext)
  53. LOOP_FILTER(sse2)
  54. LOOP_FILTER(ssse3)
  55. void ff_vc1_h_loop_filter8_sse4(uint8_t *src, int stride, int pq);
  56. static void vc1_h_loop_filter16_sse4(uint8_t *src, int stride, int pq)
  57. {
  58. ff_vc1_h_loop_filter8_sse4(src, stride, pq);
  59. ff_vc1_h_loop_filter8_sse4(src+8*stride, stride, pq);
  60. }
  61. static void avg_vc1_mspel_mc00_mmxext(uint8_t *dst, const uint8_t *src,
  62. ptrdiff_t stride, int rnd)
  63. {
  64. ff_avg_pixels8_mmxext(dst, src, stride, 8);
  65. }
  66. static void avg_vc1_mspel_mc00_16_sse2(uint8_t *dst, const uint8_t *src,
  67. ptrdiff_t stride, int rnd)
  68. {
  69. ff_avg_pixels16_sse2(dst, src, stride, 16);
  70. }
  71. #endif /* HAVE_YASM */
  72. void ff_put_vc1_chroma_mc8_nornd_mmx (uint8_t *dst, uint8_t *src,
  73. int stride, int h, int x, int y);
  74. void ff_avg_vc1_chroma_mc8_nornd_mmxext(uint8_t *dst, uint8_t *src,
  75. int stride, int h, int x, int y);
  76. void ff_avg_vc1_chroma_mc8_nornd_3dnow(uint8_t *dst, uint8_t *src,
  77. int stride, int h, int x, int y);
  78. void ff_put_vc1_chroma_mc8_nornd_ssse3(uint8_t *dst, uint8_t *src,
  79. int stride, int h, int x, int y);
  80. void ff_avg_vc1_chroma_mc8_nornd_ssse3(uint8_t *dst, uint8_t *src,
  81. int stride, int h, int x, int y);
  82. av_cold void ff_vc1dsp_init_x86(VC1DSPContext *dsp)
  83. {
  84. int cpu_flags = av_get_cpu_flags();
  85. if (HAVE_6REGS && INLINE_MMX(cpu_flags))
  86. ff_vc1dsp_init_mmx(dsp);
  87. if (HAVE_6REGS && INLINE_MMXEXT(cpu_flags))
  88. ff_vc1dsp_init_mmxext(dsp);
  89. #define ASSIGN_LF(EXT) \
  90. dsp->vc1_v_loop_filter4 = ff_vc1_v_loop_filter4_ ## EXT; \
  91. dsp->vc1_h_loop_filter4 = ff_vc1_h_loop_filter4_ ## EXT; \
  92. dsp->vc1_v_loop_filter8 = ff_vc1_v_loop_filter8_ ## EXT; \
  93. dsp->vc1_h_loop_filter8 = ff_vc1_h_loop_filter8_ ## EXT; \
  94. dsp->vc1_v_loop_filter16 = vc1_v_loop_filter16_ ## EXT; \
  95. dsp->vc1_h_loop_filter16 = vc1_h_loop_filter16_ ## EXT
  96. #if HAVE_YASM
  97. if (EXTERNAL_MMX(cpu_flags)) {
  98. dsp->put_no_rnd_vc1_chroma_pixels_tab[0] = ff_put_vc1_chroma_mc8_nornd_mmx;
  99. }
  100. if (EXTERNAL_AMD3DNOW(cpu_flags)) {
  101. dsp->avg_no_rnd_vc1_chroma_pixels_tab[0] = ff_avg_vc1_chroma_mc8_nornd_3dnow;
  102. }
  103. if (EXTERNAL_MMXEXT(cpu_flags)) {
  104. ASSIGN_LF(mmxext);
  105. dsp->avg_no_rnd_vc1_chroma_pixels_tab[0] = ff_avg_vc1_chroma_mc8_nornd_mmxext;
  106. dsp->avg_vc1_mspel_pixels_tab[1][0] = avg_vc1_mspel_mc00_mmxext;
  107. }
  108. if (EXTERNAL_SSE2(cpu_flags)) {
  109. dsp->vc1_v_loop_filter8 = ff_vc1_v_loop_filter8_sse2;
  110. dsp->vc1_h_loop_filter8 = ff_vc1_h_loop_filter8_sse2;
  111. dsp->vc1_v_loop_filter16 = vc1_v_loop_filter16_sse2;
  112. dsp->vc1_h_loop_filter16 = vc1_h_loop_filter16_sse2;
  113. dsp->avg_vc1_mspel_pixels_tab[0][0] = avg_vc1_mspel_mc00_16_sse2;
  114. }
  115. if (EXTERNAL_SSSE3(cpu_flags)) {
  116. ASSIGN_LF(ssse3);
  117. dsp->put_no_rnd_vc1_chroma_pixels_tab[0] = ff_put_vc1_chroma_mc8_nornd_ssse3;
  118. dsp->avg_no_rnd_vc1_chroma_pixels_tab[0] = ff_avg_vc1_chroma_mc8_nornd_ssse3;
  119. }
  120. if (EXTERNAL_SSE4(cpu_flags)) {
  121. dsp->vc1_h_loop_filter8 = ff_vc1_h_loop_filter8_sse4;
  122. dsp->vc1_h_loop_filter16 = vc1_h_loop_filter16_sse4;
  123. }
  124. #endif /* HAVE_YASM */
  125. }