vf_blend.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * Copyright (c) 2016 Tiancheng "Timothy" Gu
  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 <string.h>
  21. #include "checkasm.h"
  22. #include "libavfilter/blend.h"
  23. #include "libavutil/common.h"
  24. #include "libavutil/internal.h"
  25. #include "libavutil/intreadwrite.h"
  26. #define WIDTH 256
  27. #define HEIGHT 256
  28. #define BUF_UNITS 3
  29. #define SIZE_PER_UNIT (WIDTH * HEIGHT)
  30. #define BUF_SIZE (BUF_UNITS * SIZE_PER_UNIT)
  31. #define randomize_buffers() \
  32. do { \
  33. int i, j; \
  34. for (i = 0; i < HEIGHT; i++) { \
  35. for (j = 0; j < WIDTH; j++) { \
  36. top1[i * WIDTH + j] = \
  37. top2[i * WIDTH + j] = i; \
  38. bot1[i * WIDTH + j] = \
  39. bot2[i * WIDTH + j] = j; \
  40. } \
  41. } \
  42. for (i = 0; i < SIZE_PER_UNIT; i += 4) { \
  43. uint32_t r = rnd(); \
  44. AV_WN32A(dst1 + i, r); \
  45. AV_WN32A(dst2 + i, r); \
  46. } \
  47. for (; i < BUF_SIZE; i += 4) { \
  48. uint32_t r = rnd(); \
  49. AV_WN32A(top1 + i, r); \
  50. AV_WN32A(top2 + i, r); \
  51. r = rnd(); \
  52. AV_WN32A(bot1 + i, r); \
  53. AV_WN32A(bot2 + i, r); \
  54. r = rnd(); \
  55. AV_WN32A(dst1 + i, r); \
  56. AV_WN32A(dst2 + i, r); \
  57. } \
  58. } while (0)
  59. #define check_blend_func() \
  60. do { \
  61. int i; \
  62. declare_func(void, const uint8_t *top, ptrdiff_t top_linesize, \
  63. const uint8_t *bottom, ptrdiff_t bottom_linesize, \
  64. uint8_t *dst, ptrdiff_t dst_linesize, \
  65. ptrdiff_t width, ptrdiff_t height, \
  66. struct FilterParams *param, double *values); \
  67. \
  68. for (i = 0; i < BUF_UNITS - 1; i++) { \
  69. int src_offset = i * SIZE_PER_UNIT + i; /* Test various alignments */ \
  70. int dst_offset = i * SIZE_PER_UNIT; /* dst must be aligned */ \
  71. randomize_buffers(); \
  72. call_ref(top1 + src_offset, WIDTH, bot1 + src_offset, WIDTH, \
  73. dst1 + dst_offset, WIDTH, WIDTH, HEIGHT, &param, NULL); \
  74. call_new(top2 + src_offset, WIDTH, bot2 + src_offset, WIDTH, \
  75. dst2 + dst_offset, WIDTH, WIDTH, HEIGHT, &param, NULL); \
  76. if (memcmp(top1, top2, BUF_SIZE) || memcmp(bot1, bot2, BUF_SIZE) || memcmp(dst1, dst2, BUF_SIZE)) \
  77. fail(); \
  78. bench_new(top2 + src_offset, WIDTH, bot2 + src_offset, WIDTH, \
  79. dst2, WIDTH, WIDTH, HEIGHT, &param, NULL); \
  80. } \
  81. } while (0)
  82. void checkasm_check_blend(void)
  83. {
  84. uint8_t *top1 = av_malloc(BUF_SIZE);
  85. uint8_t *top2 = av_malloc(BUF_SIZE);
  86. uint8_t *bot1 = av_malloc(BUF_SIZE);
  87. uint8_t *bot2 = av_malloc(BUF_SIZE);
  88. uint8_t *dst1 = av_malloc(BUF_SIZE);
  89. uint8_t *dst2 = av_malloc(BUF_SIZE);
  90. FilterParams param = {
  91. .opacity = 1.0,
  92. };
  93. #define check_and_report(name, val) \
  94. param.mode = val; \
  95. ff_blend_init(&param, 0); \
  96. if (check_func(param.blend, #name)) \
  97. check_blend_func();
  98. check_and_report(addition, BLEND_ADDITION)
  99. check_and_report(addition128, BLEND_ADDITION128)
  100. check_and_report(and, BLEND_AND)
  101. check_and_report(average, BLEND_AVERAGE)
  102. check_and_report(darken, BLEND_DARKEN)
  103. check_and_report(difference128, BLEND_DIFFERENCE128)
  104. check_and_report(hardmix, BLEND_HARDMIX)
  105. check_and_report(lighten, BLEND_LIGHTEN)
  106. check_and_report(multiply, BLEND_MULTIPLY)
  107. check_and_report(or, BLEND_OR)
  108. check_and_report(phoenix, BLEND_PHOENIX)
  109. check_and_report(screen, BLEND_SCREEN)
  110. check_and_report(subtract, BLEND_SUBTRACT)
  111. check_and_report(xor, BLEND_XOR)
  112. check_and_report(difference, BLEND_DIFFERENCE)
  113. check_and_report(negation, BLEND_NEGATION)
  114. report("8bit");
  115. av_freep(&top1);
  116. av_freep(&top2);
  117. av_freep(&bot1);
  118. av_freep(&bot2);
  119. av_freep(&dst1);
  120. av_freep(&dst2);
  121. }