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.

69 lines
1.9KB

  1. /*
  2. * Copyright (C) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with Libav; if not, write to the Free Software Foundation, Inc.,
  18. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  19. */
  20. #include "libavutil/attributes.h"
  21. #include "libavutil/cpu.h"
  22. #include "libavutil/x86_cpu.h"
  23. #include "libavcodec/x86/dsputil_mmx.h"
  24. #include "libavfilter/yadif.h"
  25. DECLARE_ASM_CONST(16, const xmm_reg, pb_1) = {0x0101010101010101ULL, 0x0101010101010101ULL};
  26. DECLARE_ASM_CONST(16, const xmm_reg, pw_1) = {0x0001000100010001ULL, 0x0001000100010001ULL};
  27. #if HAVE_SSSE3
  28. #define COMPILE_TEMPLATE_SSE 1
  29. #define COMPILE_TEMPLATE_SSSE3 1
  30. #undef RENAME
  31. #define RENAME(a) a ## _ssse3
  32. #include "yadif_template.c"
  33. #undef COMPILE_TEMPLATE_SSSE3
  34. #endif
  35. #if HAVE_SSE
  36. #undef RENAME
  37. #define RENAME(a) a ## _sse2
  38. #include "yadif_template.c"
  39. #undef COMPILE_TEMPLATE_SSE
  40. #endif
  41. #if HAVE_MMX
  42. #undef RENAME
  43. #define RENAME(a) a ## _mmx
  44. #include "yadif_template.c"
  45. #endif
  46. av_cold void ff_yadif_init_x86(YADIFContext *yadif)
  47. {
  48. int cpu_flags = av_get_cpu_flags();
  49. #if HAVE_MMX
  50. if (cpu_flags & AV_CPU_FLAG_MMX)
  51. yadif->filter_line = yadif_filter_line_mmx;
  52. #endif
  53. #if HAVE_SSE
  54. if (cpu_flags & AV_CPU_FLAG_SSE2)
  55. yadif->filter_line = yadif_filter_line_sse2;
  56. #endif
  57. #if HAVE_SSSE3
  58. if (cpu_flags & AV_CPU_FLAG_SSSE3)
  59. yadif->filter_line = yadif_filter_line_ssse3;
  60. #endif
  61. }