g722dsp.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 <string.h>
  19. #include "checkasm.h"
  20. #include "libavcodec/g722.h"
  21. #include "libavcodec/g722dsp.h"
  22. #include "libavcodec/mathops.h"
  23. #define randomize_buffers() \
  24. do { \
  25. int i; \
  26. for (i = 0; i < PREV_SAMPLES_BUF_SIZE; i++) { \
  27. src0[i] = src1[i] = sign_extend(rnd(), 16); \
  28. } \
  29. } while (0)
  30. static void check_qmf(void) {
  31. int16_t src0[PREV_SAMPLES_BUF_SIZE];
  32. int16_t src1[PREV_SAMPLES_BUF_SIZE];
  33. const int16_t *tmp0 = src0;
  34. const int16_t *tmp1 = src1;
  35. int dst0[2], dst1[2];
  36. int i;
  37. declare_func(void, const int16_t *prev_samples, int xout[2]);
  38. randomize_buffers();
  39. for (i = 0; i < PREV_SAMPLES_BUF_SIZE - 24; i++) {
  40. call_ref(tmp0++, dst0);
  41. call_new(tmp1++, dst1);
  42. if (memcmp(dst0, dst1, sizeof(dst0)))
  43. fail();
  44. }
  45. bench_new(src1, dst1);
  46. }
  47. void checkasm_check_g722dsp(void)
  48. {
  49. G722DSPContext h;
  50. ff_g722dsp_init(&h);
  51. if (check_func(h.apply_qmf, "g722_apply_qmf"))
  52. check_qmf();
  53. report("apply_qmf");
  54. }