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.

270 lines
11KB

  1. /*
  2. * MMX optimized DSP utils
  3. * Copyright (c) 2000, 2001 Fabrice Bellard
  4. * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. *
  22. * MMX optimization by Nick Kurshev <nickols_k@mail.ru>
  23. */
  24. #include "libavutil/cpu.h"
  25. #include "libavutil/x86/asm.h"
  26. #include "libavutil/x86/cpu.h"
  27. #include "libavcodec/hpeldsp.h"
  28. #include "dsputil_x86.h"
  29. void ff_put_pixels8_x2_mmxext(uint8_t *block, const uint8_t *pixels,
  30. ptrdiff_t line_size, int h);
  31. void ff_put_pixels8_x2_3dnow(uint8_t *block, const uint8_t *pixels,
  32. ptrdiff_t line_size, int h);
  33. void ff_put_pixels16_x2_mmxext(uint8_t *block, const uint8_t *pixels,
  34. ptrdiff_t line_size, int h);
  35. void ff_put_pixels16_x2_3dnow(uint8_t *block, const uint8_t *pixels,
  36. ptrdiff_t line_size, int h);
  37. void ff_put_no_rnd_pixels8_x2_mmxext(uint8_t *block, const uint8_t *pixels,
  38. ptrdiff_t line_size, int h);
  39. void ff_put_no_rnd_pixels8_x2_3dnow(uint8_t *block, const uint8_t *pixels,
  40. ptrdiff_t line_size, int h);
  41. void ff_put_no_rnd_pixels8_x2_exact_mmxext(uint8_t *block,
  42. const uint8_t *pixels,
  43. ptrdiff_t line_size, int h);
  44. void ff_put_no_rnd_pixels8_x2_exact_3dnow(uint8_t *block,
  45. const uint8_t *pixels,
  46. ptrdiff_t line_size, int h);
  47. void ff_put_pixels8_y2_mmxext(uint8_t *block, const uint8_t *pixels,
  48. ptrdiff_t line_size, int h);
  49. void ff_put_pixels8_y2_3dnow(uint8_t *block, const uint8_t *pixels,
  50. ptrdiff_t line_size, int h);
  51. void ff_put_no_rnd_pixels8_y2_mmxext(uint8_t *block, const uint8_t *pixels,
  52. ptrdiff_t line_size, int h);
  53. void ff_put_no_rnd_pixels8_y2_3dnow(uint8_t *block, const uint8_t *pixels,
  54. ptrdiff_t line_size, int h);
  55. void ff_put_no_rnd_pixels8_y2_exact_mmxext(uint8_t *block,
  56. const uint8_t *pixels,
  57. ptrdiff_t line_size, int h);
  58. void ff_put_no_rnd_pixels8_y2_exact_3dnow(uint8_t *block,
  59. const uint8_t *pixels,
  60. ptrdiff_t line_size, int h);
  61. void ff_avg_pixels8_3dnow(uint8_t *block, const uint8_t *pixels,
  62. ptrdiff_t line_size, int h);
  63. void ff_avg_pixels8_x2_mmxext(uint8_t *block, const uint8_t *pixels,
  64. ptrdiff_t line_size, int h);
  65. void ff_avg_pixels8_x2_3dnow(uint8_t *block, const uint8_t *pixels,
  66. ptrdiff_t line_size, int h);
  67. void ff_avg_pixels8_y2_mmxext(uint8_t *block, const uint8_t *pixels,
  68. ptrdiff_t line_size, int h);
  69. void ff_avg_pixels8_y2_3dnow(uint8_t *block, const uint8_t *pixels,
  70. ptrdiff_t line_size, int h);
  71. void ff_avg_pixels8_xy2_mmxext(uint8_t *block, const uint8_t *pixels,
  72. ptrdiff_t line_size, int h);
  73. void ff_avg_pixels8_xy2_3dnow(uint8_t *block, const uint8_t *pixels,
  74. ptrdiff_t line_size, int h);
  75. #define avg_pixels8_mmx ff_avg_pixels8_mmx
  76. #define avg_pixels8_x2_mmx ff_avg_pixels8_x2_mmx
  77. #define avg_pixels16_mmx ff_avg_pixels16_mmx
  78. #define avg_pixels8_xy2_mmx ff_avg_pixels8_xy2_mmx
  79. #define avg_pixels16_xy2_mmx ff_avg_pixels16_xy2_mmx
  80. #define put_pixels8_mmx ff_put_pixels8_mmx
  81. #define put_pixels16_mmx ff_put_pixels16_mmx
  82. #define put_pixels8_xy2_mmx ff_put_pixels8_xy2_mmx
  83. #define put_pixels16_xy2_mmx ff_put_pixels16_xy2_mmx
  84. #define avg_no_rnd_pixels16_mmx ff_avg_pixels16_mmx
  85. #define put_no_rnd_pixels8_mmx ff_put_pixels8_mmx
  86. #define put_no_rnd_pixels16_mmx ff_put_pixels16_mmx
  87. #if HAVE_INLINE_ASM
  88. /***********************************/
  89. /* MMX no rounding */
  90. #define DEF(x, y) x ## _no_rnd_ ## y ## _mmx
  91. #define SET_RND MOVQ_WONE
  92. #define PAVGBP(a, b, c, d, e, f) PAVGBP_MMX_NO_RND(a, b, c, d, e, f)
  93. #define PAVGB(a, b, c, e) PAVGB_MMX_NO_RND(a, b, c, e)
  94. #define STATIC static
  95. #include "rnd_template.c"
  96. #include "hpeldsp_rnd_template.c"
  97. #undef DEF
  98. #undef SET_RND
  99. #undef PAVGBP
  100. #undef PAVGB
  101. #undef STATIC
  102. PIXELS16(static, avg_no_rnd, , _y2, _mmx)
  103. PIXELS16(static, put_no_rnd, , _y2, _mmx)
  104. PIXELS16(static, avg_no_rnd, , _xy2, _mmx)
  105. PIXELS16(static, put_no_rnd, , _xy2, _mmx)
  106. /***********************************/
  107. /* MMX rounding */
  108. #define DEF(x, y) x ## _ ## y ## _mmx
  109. #define SET_RND MOVQ_WTWO
  110. #define PAVGBP(a, b, c, d, e, f) PAVGBP_MMX(a, b, c, d, e, f)
  111. #define PAVGB(a, b, c, e) PAVGB_MMX(a, b, c, e)
  112. #include "hpeldsp_rnd_template.c"
  113. #undef DEF
  114. #undef SET_RND
  115. #undef PAVGBP
  116. #undef PAVGB
  117. PIXELS16(static, avg, , _y2, _mmx)
  118. PIXELS16(static, put, , _y2, _mmx)
  119. #endif /* HAVE_INLINE_ASM */
  120. #if HAVE_YASM
  121. #define HPELDSP_AVG_PIXELS16(CPUEXT) \
  122. PIXELS16(static, put_no_rnd, ff_, _x2, CPUEXT) \
  123. PIXELS16(static, put, ff_, _y2, CPUEXT) \
  124. PIXELS16(static, put_no_rnd, ff_, _y2, CPUEXT) \
  125. PIXELS16(static, avg, ff_, , CPUEXT) \
  126. PIXELS16(static, avg, ff_, _x2, CPUEXT) \
  127. PIXELS16(static, avg, ff_, _y2, CPUEXT) \
  128. PIXELS16(static, avg, ff_, _xy2, CPUEXT)
  129. HPELDSP_AVG_PIXELS16(_3dnow)
  130. HPELDSP_AVG_PIXELS16(_mmxext)
  131. #endif /* HAVE_YASM */
  132. #define SET_HPEL_FUNCS(PFX, IDX, SIZE, CPU) \
  133. do { \
  134. c->PFX ## _pixels_tab IDX [0] = PFX ## _pixels ## SIZE ## _ ## CPU; \
  135. c->PFX ## _pixels_tab IDX [1] = PFX ## _pixels ## SIZE ## _x2_ ## CPU; \
  136. c->PFX ## _pixels_tab IDX [2] = PFX ## _pixels ## SIZE ## _y2_ ## CPU; \
  137. c->PFX ## _pixels_tab IDX [3] = PFX ## _pixels ## SIZE ## _xy2_ ## CPU; \
  138. } while (0)
  139. static void hpeldsp_init_mmx(HpelDSPContext *c, int flags, int cpu_flags)
  140. {
  141. #if HAVE_MMX_INLINE
  142. SET_HPEL_FUNCS(put, [0], 16, mmx);
  143. SET_HPEL_FUNCS(put_no_rnd, [0], 16, mmx);
  144. SET_HPEL_FUNCS(avg, [0], 16, mmx);
  145. SET_HPEL_FUNCS(avg_no_rnd, , 16, mmx);
  146. SET_HPEL_FUNCS(put, [1], 8, mmx);
  147. SET_HPEL_FUNCS(put_no_rnd, [1], 8, mmx);
  148. SET_HPEL_FUNCS(avg, [1], 8, mmx);
  149. #endif /* HAVE_MMX_INLINE */
  150. }
  151. static void hpeldsp_init_mmxext(HpelDSPContext *c, int flags, int cpu_flags)
  152. {
  153. #if HAVE_MMXEXT_EXTERNAL
  154. c->put_pixels_tab[0][1] = ff_put_pixels16_x2_mmxext;
  155. c->put_pixels_tab[0][2] = put_pixels16_y2_mmxext;
  156. c->avg_pixels_tab[0][0] = avg_pixels16_mmxext;
  157. c->avg_pixels_tab[0][1] = avg_pixels16_x2_mmxext;
  158. c->avg_pixels_tab[0][2] = avg_pixels16_y2_mmxext;
  159. c->put_pixels_tab[1][1] = ff_put_pixels8_x2_mmxext;
  160. c->put_pixels_tab[1][2] = ff_put_pixels8_y2_mmxext;
  161. c->avg_pixels_tab[1][0] = ff_avg_pixels8_mmxext;
  162. c->avg_pixels_tab[1][1] = ff_avg_pixels8_x2_mmxext;
  163. c->avg_pixels_tab[1][2] = ff_avg_pixels8_y2_mmxext;
  164. if (!(flags & CODEC_FLAG_BITEXACT)) {
  165. c->put_no_rnd_pixels_tab[0][1] = put_no_rnd_pixels16_x2_mmxext;
  166. c->put_no_rnd_pixels_tab[0][2] = put_no_rnd_pixels16_y2_mmxext;
  167. c->put_no_rnd_pixels_tab[1][1] = ff_put_no_rnd_pixels8_x2_mmxext;
  168. c->put_no_rnd_pixels_tab[1][2] = ff_put_no_rnd_pixels8_y2_mmxext;
  169. c->avg_pixels_tab[0][3] = avg_pixels16_xy2_mmxext;
  170. c->avg_pixels_tab[1][3] = ff_avg_pixels8_xy2_mmxext;
  171. }
  172. if (flags & CODEC_FLAG_BITEXACT && CONFIG_VP3_DECODER) {
  173. c->put_no_rnd_pixels_tab[1][1] = ff_put_no_rnd_pixels8_x2_exact_mmxext;
  174. c->put_no_rnd_pixels_tab[1][2] = ff_put_no_rnd_pixels8_y2_exact_mmxext;
  175. }
  176. #endif /* HAVE_MMXEXT_EXTERNAL */
  177. }
  178. static void hpeldsp_init_3dnow(HpelDSPContext *c, int flags, int cpu_flags)
  179. {
  180. #if HAVE_AMD3DNOW_EXTERNAL
  181. c->put_pixels_tab[0][1] = ff_put_pixels16_x2_3dnow;
  182. c->put_pixels_tab[0][2] = put_pixels16_y2_3dnow;
  183. c->avg_pixels_tab[0][0] = avg_pixels16_3dnow;
  184. c->avg_pixels_tab[0][1] = avg_pixels16_x2_3dnow;
  185. c->avg_pixels_tab[0][2] = avg_pixels16_y2_3dnow;
  186. c->put_pixels_tab[1][1] = ff_put_pixels8_x2_3dnow;
  187. c->put_pixels_tab[1][2] = ff_put_pixels8_y2_3dnow;
  188. c->avg_pixels_tab[1][0] = ff_avg_pixels8_3dnow;
  189. c->avg_pixels_tab[1][1] = ff_avg_pixels8_x2_3dnow;
  190. c->avg_pixels_tab[1][2] = ff_avg_pixels8_y2_3dnow;
  191. if (!(flags & CODEC_FLAG_BITEXACT)){
  192. c->put_no_rnd_pixels_tab[0][1] = put_no_rnd_pixels16_x2_3dnow;
  193. c->put_no_rnd_pixels_tab[0][2] = put_no_rnd_pixels16_y2_3dnow;
  194. c->put_no_rnd_pixels_tab[1][1] = ff_put_no_rnd_pixels8_x2_3dnow;
  195. c->put_no_rnd_pixels_tab[1][2] = ff_put_no_rnd_pixels8_y2_3dnow;
  196. c->avg_pixels_tab[0][3] = avg_pixels16_xy2_3dnow;
  197. c->avg_pixels_tab[1][3] = ff_avg_pixels8_xy2_3dnow;
  198. }
  199. if (flags & CODEC_FLAG_BITEXACT && CONFIG_VP3_DECODER) {
  200. c->put_no_rnd_pixels_tab[1][1] = ff_put_no_rnd_pixels8_x2_exact_3dnow;
  201. c->put_no_rnd_pixels_tab[1][2] = ff_put_no_rnd_pixels8_y2_exact_3dnow;
  202. }
  203. #endif /* HAVE_AMD3DNOW_EXTERNAL */
  204. }
  205. static void hpeldsp_init_sse2(HpelDSPContext *c, int flags, int cpu_flags)
  206. {
  207. #if HAVE_SSE2_EXTERNAL
  208. if (!(cpu_flags & AV_CPU_FLAG_SSE2SLOW)) {
  209. // these functions are slower than mmx on AMD, but faster on Intel
  210. c->put_pixels_tab[0][0] = ff_put_pixels16_sse2;
  211. c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_sse2;
  212. c->avg_pixels_tab[0][0] = ff_avg_pixels16_sse2;
  213. }
  214. #endif /* HAVE_SSE2_EXTERNAL */
  215. }
  216. void ff_hpeldsp_init_x86(HpelDSPContext *c, int flags)
  217. {
  218. int cpu_flags = av_get_cpu_flags();
  219. if (INLINE_MMX(cpu_flags))
  220. hpeldsp_init_mmx(c, flags, cpu_flags);
  221. if (EXTERNAL_AMD3DNOW(cpu_flags))
  222. hpeldsp_init_3dnow(c, flags, cpu_flags);
  223. if (EXTERNAL_MMXEXT(cpu_flags))
  224. hpeldsp_init_mmxext(c, flags, cpu_flags);
  225. if (EXTERNAL_SSE2(cpu_flags))
  226. hpeldsp_init_sse2(c, flags, cpu_flags);
  227. }