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.

187 lines
6.6KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav 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. * Libav 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 Libav; 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/internal.h"
  22. #include "libavutil/x86/cpu.h"
  23. #include "libavcodec/avcodec.h"
  24. #include "libavcodec/dsputil.h"
  25. #include "libavcodec/simple_idct.h"
  26. #include "libavcodec/version.h"
  27. #include "dsputil_x86.h"
  28. #include "idct_xvid.h"
  29. int32_t ff_scalarproduct_int16_mmxext(const int16_t *v1, const int16_t *v2,
  30. int order);
  31. int32_t ff_scalarproduct_int16_sse2(const int16_t *v1, const int16_t *v2,
  32. int order);
  33. void ff_bswap32_buf_ssse3(uint32_t *dst, const uint32_t *src, int w);
  34. void ff_bswap32_buf_sse2(uint32_t *dst, const uint32_t *src, int w);
  35. void ff_vector_clip_int32_mmx(int32_t *dst, const int32_t *src,
  36. int32_t min, int32_t max, unsigned int len);
  37. void ff_vector_clip_int32_sse2(int32_t *dst, const int32_t *src,
  38. int32_t min, int32_t max, unsigned int len);
  39. void ff_vector_clip_int32_int_sse2(int32_t *dst, const int32_t *src,
  40. int32_t min, int32_t max, unsigned int len);
  41. void ff_vector_clip_int32_sse4(int32_t *dst, const int32_t *src,
  42. int32_t min, int32_t max, unsigned int len);
  43. static av_cold void dsputil_init_mmx(DSPContext *c, AVCodecContext *avctx,
  44. int cpu_flags, unsigned high_bit_depth)
  45. {
  46. #if HAVE_MMX_INLINE
  47. c->put_pixels_clamped = ff_put_pixels_clamped_mmx;
  48. c->put_signed_pixels_clamped = ff_put_signed_pixels_clamped_mmx;
  49. c->add_pixels_clamped = ff_add_pixels_clamped_mmx;
  50. if (!high_bit_depth) {
  51. c->clear_block = ff_clear_block_mmx;
  52. c->clear_blocks = ff_clear_blocks_mmx;
  53. c->draw_edges = ff_draw_edges_mmx;
  54. switch (avctx->idct_algo) {
  55. case FF_IDCT_AUTO:
  56. case FF_IDCT_SIMPLEMMX:
  57. c->idct_put = ff_simple_idct_put_mmx;
  58. c->idct_add = ff_simple_idct_add_mmx;
  59. c->idct = ff_simple_idct_mmx;
  60. c->idct_permutation_type = FF_SIMPLE_IDCT_PERM;
  61. break;
  62. case FF_IDCT_XVIDMMX:
  63. c->idct_put = ff_idct_xvid_mmx_put;
  64. c->idct_add = ff_idct_xvid_mmx_add;
  65. c->idct = ff_idct_xvid_mmx;
  66. break;
  67. }
  68. }
  69. c->gmc = ff_gmc_mmx;
  70. #endif /* HAVE_MMX_INLINE */
  71. #if HAVE_MMX_EXTERNAL
  72. c->vector_clip_int32 = ff_vector_clip_int32_mmx;
  73. #endif /* HAVE_MMX_EXTERNAL */
  74. }
  75. static av_cold void dsputil_init_mmxext(DSPContext *c, AVCodecContext *avctx,
  76. int cpu_flags, unsigned high_bit_depth)
  77. {
  78. #if HAVE_MMXEXT_INLINE
  79. if (!high_bit_depth && avctx->idct_algo == FF_IDCT_XVIDMMX) {
  80. c->idct_put = ff_idct_xvid_mmxext_put;
  81. c->idct_add = ff_idct_xvid_mmxext_add;
  82. c->idct = ff_idct_xvid_mmxext;
  83. }
  84. #endif /* HAVE_MMXEXT_INLINE */
  85. #if HAVE_MMXEXT_EXTERNAL
  86. c->scalarproduct_int16 = ff_scalarproduct_int16_mmxext;
  87. #endif /* HAVE_MMXEXT_EXTERNAL */
  88. }
  89. static av_cold void dsputil_init_sse(DSPContext *c, AVCodecContext *avctx,
  90. int cpu_flags, unsigned high_bit_depth)
  91. {
  92. #if HAVE_SSE_INLINE
  93. c->vector_clipf = ff_vector_clipf_sse;
  94. #if FF_API_XVMC
  95. FF_DISABLE_DEPRECATION_WARNINGS
  96. /* XvMCCreateBlocks() may not allocate 16-byte aligned blocks */
  97. if (CONFIG_MPEG_XVMC_DECODER && avctx->xvmc_acceleration > 1)
  98. return;
  99. FF_ENABLE_DEPRECATION_WARNINGS
  100. #endif /* FF_API_XVMC */
  101. if (!high_bit_depth) {
  102. c->clear_block = ff_clear_block_sse;
  103. c->clear_blocks = ff_clear_blocks_sse;
  104. }
  105. #endif /* HAVE_SSE_INLINE */
  106. }
  107. static av_cold void dsputil_init_sse2(DSPContext *c, AVCodecContext *avctx,
  108. int cpu_flags, unsigned high_bit_depth)
  109. {
  110. #if HAVE_SSE2_INLINE
  111. if (!high_bit_depth && avctx->idct_algo == FF_IDCT_XVIDMMX) {
  112. c->idct_put = ff_idct_xvid_sse2_put;
  113. c->idct_add = ff_idct_xvid_sse2_add;
  114. c->idct = ff_idct_xvid_sse2;
  115. c->idct_permutation_type = FF_SSE2_IDCT_PERM;
  116. }
  117. #endif /* HAVE_SSE2_INLINE */
  118. #if HAVE_SSE2_EXTERNAL
  119. c->scalarproduct_int16 = ff_scalarproduct_int16_sse2;
  120. if (cpu_flags & AV_CPU_FLAG_ATOM) {
  121. c->vector_clip_int32 = ff_vector_clip_int32_int_sse2;
  122. } else {
  123. c->vector_clip_int32 = ff_vector_clip_int32_sse2;
  124. }
  125. c->bswap_buf = ff_bswap32_buf_sse2;
  126. #endif /* HAVE_SSE2_EXTERNAL */
  127. }
  128. static av_cold void dsputil_init_ssse3(DSPContext *c, AVCodecContext *avctx,
  129. int cpu_flags, unsigned high_bit_depth)
  130. {
  131. #if HAVE_SSSE3_EXTERNAL
  132. c->bswap_buf = ff_bswap32_buf_ssse3;
  133. #endif /* HAVE_SSSE3_EXTERNAL */
  134. }
  135. static av_cold void dsputil_init_sse4(DSPContext *c, AVCodecContext *avctx,
  136. int cpu_flags, unsigned high_bit_depth)
  137. {
  138. #if HAVE_SSE4_EXTERNAL
  139. c->vector_clip_int32 = ff_vector_clip_int32_sse4;
  140. #endif /* HAVE_SSE4_EXTERNAL */
  141. }
  142. av_cold void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx,
  143. unsigned high_bit_depth)
  144. {
  145. int cpu_flags = av_get_cpu_flags();
  146. if (X86_MMX(cpu_flags))
  147. dsputil_init_mmx(c, avctx, cpu_flags, high_bit_depth);
  148. if (X86_MMXEXT(cpu_flags))
  149. dsputil_init_mmxext(c, avctx, cpu_flags, high_bit_depth);
  150. if (X86_SSE(cpu_flags))
  151. dsputil_init_sse(c, avctx, cpu_flags, high_bit_depth);
  152. if (X86_SSE2(cpu_flags))
  153. dsputil_init_sse2(c, avctx, cpu_flags, high_bit_depth);
  154. if (EXTERNAL_SSSE3(cpu_flags))
  155. dsputil_init_ssse3(c, avctx, cpu_flags, high_bit_depth);
  156. if (EXTERNAL_SSE4(cpu_flags))
  157. dsputil_init_sse4(c, avctx, cpu_flags, high_bit_depth);
  158. if (CONFIG_ENCODERS)
  159. ff_dsputilenc_init_mmx(c, avctx, high_bit_depth);
  160. }