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.

86 lines
2.6KB

  1. /*
  2. *
  3. * This file is part of FFmpeg.
  4. *
  5. * FFmpeg is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * FFmpeg is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18. */
  19. #include <string.h>
  20. #include "libavutil/common.h"
  21. #include "libavutil/intreadwrite.h"
  22. #include "libavutil/mem.h"
  23. #include "libswscale/rgb2rgb.h"
  24. #include "checkasm.h"
  25. #define randomize_buffers(buf, size) \
  26. do { \
  27. int j; \
  28. for (j = 0; j < size; j+=4) \
  29. AV_WN32(buf + j, rnd()); \
  30. } while (0)
  31. static const uint8_t width[] = {12, 16, 20, 32, 36, 128};
  32. #define MAX_STRIDE 128
  33. static void check_shuffle_bytes(void * func, const char * report)
  34. {
  35. int i;
  36. LOCAL_ALIGNED_32(uint8_t, src0, [MAX_STRIDE]);
  37. LOCAL_ALIGNED_32(uint8_t, src1, [MAX_STRIDE]);
  38. LOCAL_ALIGNED_32(uint8_t, dst0, [MAX_STRIDE]);
  39. LOCAL_ALIGNED_32(uint8_t, dst1, [MAX_STRIDE]);
  40. declare_func_emms(AV_CPU_FLAG_MMX, void, const uint8_t *src, uint8_t *dst, int src_size);
  41. memset(dst0, 0, MAX_STRIDE);
  42. memset(dst1, 0, MAX_STRIDE);
  43. randomize_buffers(src0, MAX_STRIDE);
  44. memcpy(src1, src0, MAX_STRIDE);
  45. if (check_func(func, "%s", report)) {
  46. for (i = 0; i < 6; i ++) {
  47. call_ref(src0, dst0, width[i]);
  48. call_new(src1, dst1, width[i]);
  49. if (memcmp(dst0, dst1, MAX_STRIDE))
  50. fail();
  51. }
  52. bench_new(src0, dst0, width[5]);
  53. }
  54. }
  55. void checkasm_check_sw_rgb(void)
  56. {
  57. ff_sws_rgb2rgb_init();
  58. check_shuffle_bytes(shuffle_bytes_2103, "shuffle_bytes_2103");
  59. report("shuffle_bytes_2103");
  60. check_shuffle_bytes(shuffle_bytes_0321, "shuffle_bytes_0321");
  61. report("shuffle_bytes_0321");
  62. check_shuffle_bytes(shuffle_bytes_1230, "shuffle_bytes_1230");
  63. report("shuffle_bytes_1230");
  64. check_shuffle_bytes(shuffle_bytes_3012, "shuffle_bytes_3012");
  65. report("shuffle_bytes_3012");
  66. check_shuffle_bytes(shuffle_bytes_3210, "shuffle_bytes_3210");
  67. report("shuffle_bytes_3210");
  68. }