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