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.

53 lines
1.6KB

  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 "config.h"
  19. #include "avfft.h"
  20. int main(int argc, char **argv)
  21. {
  22. int i;
  23. #define LEN 1024
  24. FFTSample *ref = av_malloc_array(LEN, sizeof(*ref));
  25. FFTSample *data = av_malloc_array(LEN, sizeof(*data));
  26. RDFTContext *rdft_context = av_rdft_init(10, DFT_R2C);
  27. RDFTContext *irdft_context = av_rdft_init(10, IDFT_C2R);
  28. if (!ref || !data || !rdft_context || !irdft_context)
  29. return 2;
  30. for (i=0; i<LEN; i++) {
  31. ref[i] = data[i] = i*456 + 123 + i*i;
  32. }
  33. av_rdft_calc(rdft_context, data);
  34. av_rdft_calc(irdft_context, data);
  35. for (i=0; i<LEN; i++) {
  36. if (fabs(ref[i] - data[i]/LEN*2) > 1) {
  37. fprintf(stderr, "Failed at %d (%f %f)\n", i, ref[i], data[i]/LEN*2);
  38. return 1;
  39. }
  40. }
  41. av_rdft_end(rdft_context);
  42. av_rdft_end(irdft_context);
  43. av_free(data);
  44. av_free(ref);
  45. return 0;
  46. }