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.

102 lines
3.5KB

  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/x86/cpu.h"
  22. #include "libavcodec/avcodec.h"
  23. #include "libavcodec/dsputil.h"
  24. #include "libavcodec/simple_idct.h"
  25. #include "dsputil_x86.h"
  26. #include "idct_xvid.h"
  27. static av_cold void dsputil_init_mmx(DSPContext *c, AVCodecContext *avctx,
  28. int cpu_flags, unsigned high_bit_depth)
  29. {
  30. #if HAVE_MMX_INLINE
  31. c->put_pixels_clamped = ff_put_pixels_clamped_mmx;
  32. c->put_signed_pixels_clamped = ff_put_signed_pixels_clamped_mmx;
  33. c->add_pixels_clamped = ff_add_pixels_clamped_mmx;
  34. if (!high_bit_depth) {
  35. c->draw_edges = ff_draw_edges_mmx;
  36. switch (avctx->idct_algo) {
  37. case FF_IDCT_AUTO:
  38. case FF_IDCT_SIMPLEMMX:
  39. c->idct_put = ff_simple_idct_put_mmx;
  40. c->idct_add = ff_simple_idct_add_mmx;
  41. c->idct = ff_simple_idct_mmx;
  42. c->idct_permutation_type = FF_SIMPLE_IDCT_PERM;
  43. break;
  44. case FF_IDCT_XVIDMMX:
  45. c->idct_put = ff_idct_xvid_mmx_put;
  46. c->idct_add = ff_idct_xvid_mmx_add;
  47. c->idct = ff_idct_xvid_mmx;
  48. break;
  49. }
  50. }
  51. c->gmc = ff_gmc_mmx;
  52. #endif /* HAVE_MMX_INLINE */
  53. }
  54. static av_cold void dsputil_init_mmxext(DSPContext *c, AVCodecContext *avctx,
  55. int cpu_flags, unsigned high_bit_depth)
  56. {
  57. #if HAVE_MMXEXT_INLINE
  58. if (!high_bit_depth && avctx->idct_algo == FF_IDCT_XVIDMMX) {
  59. c->idct_put = ff_idct_xvid_mmxext_put;
  60. c->idct_add = ff_idct_xvid_mmxext_add;
  61. c->idct = ff_idct_xvid_mmxext;
  62. }
  63. #endif /* HAVE_MMXEXT_INLINE */
  64. }
  65. static av_cold void dsputil_init_sse2(DSPContext *c, AVCodecContext *avctx,
  66. int cpu_flags, unsigned high_bit_depth)
  67. {
  68. #if HAVE_SSE2_INLINE
  69. if (!high_bit_depth && avctx->idct_algo == FF_IDCT_XVIDMMX) {
  70. c->idct_put = ff_idct_xvid_sse2_put;
  71. c->idct_add = ff_idct_xvid_sse2_add;
  72. c->idct = ff_idct_xvid_sse2;
  73. c->idct_permutation_type = FF_SSE2_IDCT_PERM;
  74. }
  75. #endif /* HAVE_SSE2_INLINE */
  76. }
  77. av_cold void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx,
  78. unsigned high_bit_depth)
  79. {
  80. int cpu_flags = av_get_cpu_flags();
  81. if (X86_MMX(cpu_flags))
  82. dsputil_init_mmx(c, avctx, cpu_flags, high_bit_depth);
  83. if (X86_MMXEXT(cpu_flags))
  84. dsputil_init_mmxext(c, avctx, cpu_flags, high_bit_depth);
  85. if (X86_SSE2(cpu_flags))
  86. dsputil_init_sse2(c, avctx, cpu_flags, high_bit_depth);
  87. if (CONFIG_ENCODERS)
  88. ff_dsputilenc_init_mmx(c, avctx, high_bit_depth);
  89. }