svq1enc.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Copyright (c) 2023 Institue of Software Chinese Academy of Sciences (ISCAS).
  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 "libavutil/mem_internal.h"
  21. #include "libavcodec/svq1encdsp.h"
  22. #include "checkasm.h"
  23. #define BUF_SIZE 1024
  24. #define MIN_VAL (-255 - 5 * 127)
  25. #define MAX_VAL ( 255 + 5 * 128)
  26. #define randomize(buf, len) \
  27. do { \
  28. for (int i = 0; i < len; i++) \
  29. buf[i] = ((rnd() % (MAX_VAL - MIN_VAL + 1)) + MIN_VAL); \
  30. } while (0)
  31. static void test_ssd_int8_vs_int16(SVQ1EncDSPContext *s) {
  32. declare_func(int, const int8_t *pix1, const int16_t *pix2, intptr_t size);
  33. int r1, r2;
  34. if (check_func(s->ssd_int8_vs_int16, "ssd_int8_vs_int16")) {
  35. LOCAL_ALIGNED_4(int8_t, p1, [BUF_SIZE]);
  36. LOCAL_ALIGNED_16(int16_t, p2, [BUF_SIZE]);
  37. randomize(p1, BUF_SIZE);
  38. randomize(p2, BUF_SIZE);
  39. r1 = call_ref(p1, p2, BUF_SIZE);
  40. r2 = call_new(p1, p2, BUF_SIZE);
  41. if (r1 != r2) {
  42. fail();
  43. }
  44. bench_new(p1, p2, BUF_SIZE);
  45. }
  46. report("ssd_int8_vs_int16");
  47. }
  48. void checkasm_check_svq1enc(void)
  49. {
  50. SVQ1EncDSPContext s = { 0 };
  51. ff_svq1enc_init(&s);
  52. test_ssd_int8_vs_int16(&s);
  53. }