yadif.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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/cpu.h"
  21. #include "libavutil/x86_cpu.h"
  22. #include "libavfilter/yadif.h"
  23. #if HAVE_SSSE3
  24. #define COMPILE_TEMPLATE_SSE 1
  25. #define COMPILE_TEMPLATE_SSSE3 1
  26. #undef RENAME
  27. #define RENAME(a) a ## _ssse3
  28. #include "yadif_template.c"
  29. #undef COMPILE_TEMPLATE_SSSE3
  30. #endif
  31. #if HAVE_SSE
  32. #undef RENAME
  33. #define RENAME(a) a ## _sse2
  34. #include "yadif_template.c"
  35. #undef COMPILE_TEMPLATE_SSE
  36. #endif
  37. #if HAVE_MMX
  38. #undef RENAME
  39. #define RENAME(a) a ## _mmx
  40. #include "yadif_template.c"
  41. #endif