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.

91 lines
2.8KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (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
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along
  15. * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  17. */
  18. #include <float.h>
  19. #include <string.h>
  20. #include "checkasm.h"
  21. #include "libavfilter/gblur.h"
  22. #define WIDTH 256
  23. #define HEIGHT 256
  24. #define PIXELS (WIDTH * HEIGHT)
  25. #define BUF_SIZE (PIXELS * 4)
  26. #define randomize_buffers(buf, size) \
  27. do { \
  28. int j; \
  29. float *tmp_buf = (float *)buf; \
  30. for (j = 0; j < size; j++) \
  31. tmp_buf[j] = (float)(rnd() & 0xFF); \
  32. } while (0)
  33. static void check_horiz_slice(float *dst_ref, float *dst_new)
  34. {
  35. int steps = 2;
  36. float nu = 0.101f;
  37. float bscale = 1.112f;
  38. declare_func(void, float *dst, int w, int h, int steps, float nu, float bscale);
  39. call_ref(dst_ref, WIDTH, HEIGHT, steps, nu, bscale);
  40. call_new(dst_new, WIDTH, HEIGHT, steps, nu, bscale);
  41. if (!float_near_abs_eps_array(dst_ref, dst_new, 0.01f, PIXELS)) {
  42. fail();
  43. }
  44. bench_new(dst_new, WIDTH, HEIGHT, 1, nu, bscale);
  45. }
  46. static void check_postscale_slice(float *dst_ref, float *dst_new)
  47. {
  48. float postscale = 0.0603f;
  49. declare_func(void, float *dst, int len, float postscale, float min, float max);
  50. call_ref(dst_ref, PIXELS, postscale, -FLT_MAX, FLT_MAX);
  51. call_new(dst_new, PIXELS, postscale, -FLT_MAX, FLT_MAX);
  52. if (!float_near_abs_eps_array(dst_ref, dst_new, FLT_EPSILON, PIXELS)) {
  53. fail();
  54. }
  55. bench_new(dst_new, PIXELS, postscale, -FLT_MAX, FLT_MAX);
  56. }
  57. void checkasm_check_vf_gblur(void)
  58. {
  59. float *dst_ref = av_malloc(BUF_SIZE);
  60. float *dst_new = av_malloc(BUF_SIZE);
  61. GBlurContext s;
  62. randomize_buffers(dst_ref, PIXELS);
  63. memcpy(dst_new, dst_ref, BUF_SIZE);
  64. ff_gblur_init(&s);
  65. if (check_func(s.horiz_slice, "horiz_slice")) {
  66. check_horiz_slice(dst_ref, dst_new);
  67. }
  68. report("horiz_slice");
  69. randomize_buffers(dst_ref, PIXELS);
  70. memcpy(dst_new, dst_ref, BUF_SIZE);
  71. if (check_func(s.postscale_slice, "postscale_slice")) {
  72. check_postscale_slice(dst_ref, dst_new);
  73. }
  74. report("postscale_slice");
  75. av_freep(&dst_ref);
  76. av_freep(&dst_new);
  77. }