yadif.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Copyright (C) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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/mem.h"
  23. #include "libavutil/x86/asm.h"
  24. #include "libavcodec/x86/dsputil_mmx.h"
  25. #include "libavfilter/yadif.h"
  26. #if HAVE_INLINE_ASM
  27. DECLARE_ASM_CONST(16, const xmm_reg, pb_1) = {0x0101010101010101ULL, 0x0101010101010101ULL};
  28. DECLARE_ASM_CONST(16, const xmm_reg, pw_1) = {0x0001000100010001ULL, 0x0001000100010001ULL};
  29. #if HAVE_SSSE3_INLINE
  30. #define COMPILE_TEMPLATE_SSE2 1
  31. #define COMPILE_TEMPLATE_SSSE3 1
  32. #undef RENAME
  33. #define RENAME(a) a ## _ssse3
  34. #include "yadif_template.c"
  35. #undef COMPILE_TEMPLATE_SSSE3
  36. #endif
  37. #if HAVE_SSE2_INLINE
  38. #undef RENAME
  39. #define RENAME(a) a ## _sse2
  40. #include "yadif_template.c"
  41. #undef COMPILE_TEMPLATE_SSE2
  42. #endif
  43. #if HAVE_MMXEXT_INLINE
  44. #undef RENAME
  45. #define RENAME(a) a ## _mmx2
  46. #include "yadif_template.c"
  47. #endif
  48. #endif /* HAVE_INLINE_ASM */
  49. av_cold void ff_yadif_init_x86(YADIFContext *yadif)
  50. {
  51. int cpu_flags = av_get_cpu_flags();
  52. #if HAVE_MMXEXT_INLINE
  53. if (cpu_flags & AV_CPU_FLAG_MMXEXT)
  54. yadif->filter_line = yadif_filter_line_mmx2;
  55. #endif
  56. #if HAVE_SSE2_INLINE
  57. if (cpu_flags & AV_CPU_FLAG_SSE2)
  58. yadif->filter_line = yadif_filter_line_sse2;
  59. #endif
  60. #if HAVE_SSSE3_INLINE
  61. if (cpu_flags & AV_CPU_FLAG_SSSE3)
  62. yadif->filter_line = yadif_filter_line_ssse3;
  63. #endif
  64. }