pixelutils_init.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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 "pixelutils.h"
  20. #include "cpu.h"
  21. int ff_pixelutils_sad_8x8_mmx(const uint8_t *src1, ptrdiff_t stride1,
  22. const uint8_t *src2, ptrdiff_t stride2);
  23. int ff_pixelutils_sad_8x8_mmxext(const uint8_t *src1, ptrdiff_t stride1,
  24. const uint8_t *src2, ptrdiff_t stride2);
  25. int ff_pixelutils_sad_16x16_mmxext(const uint8_t *src1, ptrdiff_t stride1,
  26. const uint8_t *src2, ptrdiff_t stride2);
  27. int ff_pixelutils_sad_16x16_sse2(const uint8_t *src1, ptrdiff_t stride1,
  28. const uint8_t *src2, ptrdiff_t stride2);
  29. int ff_pixelutils_sad_a_16x16_sse2(const uint8_t *src1, ptrdiff_t stride1,
  30. const uint8_t *src2, ptrdiff_t stride2);
  31. int ff_pixelutils_sad_u_16x16_sse2(const uint8_t *src1, ptrdiff_t stride1,
  32. const uint8_t *src2, ptrdiff_t stride2);
  33. void ff_pixelutils_sad_init_x86(av_pixelutils_sad_fn *sad, int aligned)
  34. {
  35. int cpu_flags = av_get_cpu_flags();
  36. if (EXTERNAL_MMX(cpu_flags)) {
  37. sad[2] = ff_pixelutils_sad_8x8_mmx;
  38. }
  39. if (EXTERNAL_MMXEXT(cpu_flags)) {
  40. sad[2] = ff_pixelutils_sad_8x8_mmxext;
  41. sad[3] = ff_pixelutils_sad_16x16_mmxext;
  42. }
  43. if (EXTERNAL_SSE2(cpu_flags)) {
  44. switch (aligned) {
  45. case 0: sad[3] = ff_pixelutils_sad_16x16_sse2; break; // src1 unaligned, src2 unaligned
  46. case 1: sad[3] = ff_pixelutils_sad_u_16x16_sse2; break; // src1 aligned, src2 unaligned
  47. case 2: sad[3] = ff_pixelutils_sad_a_16x16_sse2; break; // src1 aligned, src2 aligned
  48. }
  49. }
  50. }