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.

100 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. #endif /* HAVE_MMX_INLINE */
  52. }
  53. static av_cold void dsputil_init_mmxext(DSPContext *c, AVCodecContext *avctx,
  54. int cpu_flags, unsigned high_bit_depth)
  55. {
  56. #if HAVE_MMXEXT_INLINE
  57. if (!high_bit_depth && avctx->idct_algo == FF_IDCT_XVIDMMX) {
  58. c->idct_put = ff_idct_xvid_mmxext_put;
  59. c->idct_add = ff_idct_xvid_mmxext_add;
  60. c->idct = ff_idct_xvid_mmxext;
  61. }
  62. #endif /* HAVE_MMXEXT_INLINE */
  63. }
  64. static av_cold void dsputil_init_sse2(DSPContext *c, AVCodecContext *avctx,
  65. int cpu_flags, unsigned high_bit_depth)
  66. {
  67. #if HAVE_SSE2_INLINE
  68. if (!high_bit_depth && avctx->idct_algo == FF_IDCT_XVIDMMX) {
  69. c->idct_put = ff_idct_xvid_sse2_put;
  70. c->idct_add = ff_idct_xvid_sse2_add;
  71. c->idct = ff_idct_xvid_sse2;
  72. c->idct_permutation_type = FF_SSE2_IDCT_PERM;
  73. }
  74. #endif /* HAVE_SSE2_INLINE */
  75. }
  76. av_cold void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx,
  77. unsigned high_bit_depth)
  78. {
  79. int cpu_flags = av_get_cpu_flags();
  80. if (X86_MMX(cpu_flags))
  81. dsputil_init_mmx(c, avctx, cpu_flags, high_bit_depth);
  82. if (X86_MMXEXT(cpu_flags))
  83. dsputil_init_mmxext(c, avctx, cpu_flags, high_bit_depth);
  84. if (X86_SSE2(cpu_flags))
  85. dsputil_init_sse2(c, avctx, cpu_flags, high_bit_depth);
  86. if (CONFIG_ENCODERS)
  87. ff_dsputilenc_init_mmx(c, avctx, high_bit_depth);
  88. }