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
3.0KB

  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 "libavfilter/vf_nlmeans.c"
  19. static void display_integral(const uint32_t *ii, int w, int h, int lz_32)
  20. {
  21. int x, y;
  22. for (y = 0; y < h; y++) {
  23. for (x = 0; x < w; x++)
  24. printf(" %7x", ii[y*lz_32 + x]);
  25. printf("\n");
  26. }
  27. printf("---------------\n");
  28. }
  29. int main(void)
  30. {
  31. int ret = 0, xoff, yoff;
  32. // arbitrary test source of size 6x4 and linesize=8
  33. const int w = 6, h = 5, lz = 8;
  34. static const uint8_t src[] = {
  35. 0xb0, 0x71, 0xfb, 0xd8, 0x01, 0xd9, /***/ 0x01, 0x02,
  36. 0x51, 0x8e, 0x41, 0x0f, 0x84, 0x58, /***/ 0x03, 0x04,
  37. 0xc7, 0x8d, 0x07, 0x70, 0x5c, 0x47, /***/ 0x05, 0x06,
  38. 0x09, 0x4e, 0xfc, 0x74, 0x8f, 0x9a, /***/ 0x07, 0x08,
  39. 0x60, 0x8e, 0x20, 0xaa, 0x95, 0x7d, /***/ 0x09, 0x0a,
  40. };
  41. const int e = 3;
  42. const int ii_w = w+e*2, ii_h = h+e*2;
  43. // align to 4 the linesize, "+1" is for the space of the left 0-column
  44. const int ii_lz_32 = ((ii_w + 1) + 3) & ~3;
  45. // "+1" is for the space of the top 0-line
  46. uint32_t *ii = av_mallocz_array(ii_h + 1, ii_lz_32 * sizeof(*ii));
  47. uint32_t *ii2 = av_mallocz_array(ii_h + 1, ii_lz_32 * sizeof(*ii2));
  48. uint32_t *ii_start = ii + ii_lz_32 + 1; // skip top 0-line and left 0-column
  49. uint32_t *ii_start2 = ii2 + ii_lz_32 + 1; // skip top 0-line and left 0-column
  50. if (!ii || !ii2)
  51. return -1;
  52. for (yoff = -e; yoff <= e; yoff++) {
  53. for (xoff = -e; xoff <= e; xoff++) {
  54. printf("xoff=%d yoff=%d\n", xoff, yoff);
  55. compute_ssd_integral_image(ii_start, ii_lz_32,
  56. src, lz, xoff, yoff, e, w, h);
  57. display_integral(ii_start, ii_w, ii_h, ii_lz_32);
  58. compute_unsafe_ssd_integral_image(ii_start2, ii_lz_32,
  59. 0, 0,
  60. src, lz,
  61. xoff, yoff, e, w, h,
  62. ii_w, ii_h);
  63. display_integral(ii_start2, ii_w, ii_h, ii_lz_32);
  64. if (memcmp(ii, ii2, (ii_h+1) * ii_lz_32 * sizeof(*ii))) {
  65. printf("Integral mismatch\n");
  66. ret = 1;
  67. goto end;
  68. }
  69. }
  70. }
  71. end:
  72. av_freep(&ii);
  73. av_freep(&ii2);
  74. return ret;
  75. }