diff options
author | Henrik Gramner <henrik@gramner.com> | 2015-08-20 17:06:21 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-08-20 19:22:34 +0200 |
commit | 515b69f8f8e9a24cfaee95d8c1f63f265d8582fe (patch) | |
tree | 1557dcac028fa877745a1ad9c045df339047cf05 /tests/checkasm/h264qpel.c | |
parent | e13da244f41610ee073b2f72bcf62b60fa402bb5 (diff) | |
download | ffmpeg-515b69f8f8e9a24cfaee95d8c1f63f265d8582fe.tar.gz |
checkasm: Explicitly declare function prototypes
Now we no longer have to rely on function pointers intentionally
declared without specified argument types.
This makes it easier to support functions with floating point parameters
or return values as well as functions returning 64-bit values on 32-bit
architectures. It also avoids having to explicitly cast strides to
ptrdiff_t for example.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'tests/checkasm/h264qpel.c')
-rw-r--r-- | tests/checkasm/h264qpel.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/checkasm/h264qpel.c b/tests/checkasm/h264qpel.c index f734945729..27bcc97cfc 100644 --- a/tests/checkasm/h264qpel.c +++ b/tests/checkasm/h264qpel.c @@ -55,6 +55,7 @@ void checkasm_check_h264qpel(void) LOCAL_ALIGNED_16(uint8_t, dst1, [BUF_SIZE]); H264QpelContext h; int op, bit_depth, i, j; + declare_func(void, uint8_t *dst, const uint8_t *src, ptrdiff_t stride); for (op = 0; op < 2; op++) { qpel_mc_func (*tab)[16] = op ? h.avg_h264_qpel_pixels_tab : h.put_h264_qpel_pixels_tab; @@ -67,11 +68,11 @@ void checkasm_check_h264qpel(void) for (j = 0; j < 16; j++) if (check_func(tab[i][j], "%s_h264_qpel_%d_mc%d%d_%d", op_name, size, j & 3, j >> 2, bit_depth)) { randomize_buffers(); - call_ref(dst0, src0, (ptrdiff_t)size * SIZEOF_PIXEL); - call_new(dst1, src1, (ptrdiff_t)size * SIZEOF_PIXEL); + call_ref(dst0, src0, size * SIZEOF_PIXEL); + call_new(dst1, src1, size * SIZEOF_PIXEL); if (memcmp(buf0, buf1, BUF_SIZE) || memcmp(dst0, dst1, BUF_SIZE)) fail(); - bench_new(dst1, src1, (ptrdiff_t)size * SIZEOF_PIXEL); + bench_new(dst1, src1, size * SIZEOF_PIXEL); } } } |