]> git.sesse.net Git - ffmpeg/blob - tests/checkasm/vf_hflip.c
tests: fix warning ISO C90 forbids mixed declarations and code
[ffmpeg] / tests / checkasm / vf_hflip.c
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
19 #include <string.h>
20 #include "checkasm.h"
21 #include "libavfilter/hflip.h"
22 #include "libavutil/intreadwrite.h"
23
24 #define WIDTH 256
25 #define WIDTH_PADDED 256 + 32
26
27 #define randomize_buffers(buf, size)      \
28     do {                                  \
29         int j;                            \
30         uint8_t *tmp_buf = (uint8_t *)buf;\
31         for (j = 0; j < size; j++)        \
32             tmp_buf[j] = rnd() & 0xFF;    \
33     } while (0)
34
35 static void check_hflip(int step, const char * report_name){
36     LOCAL_ALIGNED_32(uint8_t, src,     [WIDTH_PADDED]);
37     LOCAL_ALIGNED_32(uint8_t, dst_ref, [WIDTH_PADDED]);
38     LOCAL_ALIGNED_32(uint8_t, dst_new, [WIDTH_PADDED]);
39     int w = WIDTH;
40     int i;
41     int step_array[4] = {1, 1, 1, 1};
42     FlipContext s;
43
44     declare_func(void, const uint8_t *src, uint8_t *dst, int w);
45
46     s.bayer_plus1 = 1;
47     memset(src,     0, WIDTH_PADDED);
48     memset(dst_ref, 0, WIDTH_PADDED);
49     memset(dst_new, 0, WIDTH_PADDED);
50     randomize_buffers(src, WIDTH_PADDED);
51
52     if (step == 2) {
53         w /= 2;
54         for (i = 0; i < 4; i++)
55             step_array[i] = step;
56     }
57
58     ff_hflip_init(&s, step_array, 4);
59
60     if (check_func(s.flip_line[0], "hflip_%s", report_name)) {
61         for (i = 1; i < w; i++) {
62             call_ref(src + (w - 1) * step, dst_ref, i);
63             call_new(src + (w - 1) * step, dst_new, i);
64             if (memcmp(dst_ref, dst_new, i * step))
65                 fail();
66         }
67         bench_new(src + (w - 1) * step, dst_new, w);
68     }
69 }
70 void checkasm_check_vf_hflip(void)
71 {
72     check_hflip(1, "byte");
73     report("hflip_byte");
74
75     check_hflip(2, "short");
76     report("hflip_short");
77 }