summaryrefslogtreecommitdiff
path: root/tests/checkasm/llviddsp.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-11-08 14:53:27 -0300
committerJames Almer <jamrial@gmail.com>2017-11-08 14:54:15 -0300
commit4cfb46f94f1d1dd0bb599cf2ddc3e7920bb4bf82 (patch)
tree4e79bcfa6b9ef2f95047de3838cda5015ef7a7b5 /tests/checkasm/llviddsp.c
parentd49ca877d0e4cd953a28be41f3df8724f0179918 (diff)
checkasm/llviddsp: fix warnings about mixed declaration and code
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/checkasm/llviddsp.c')
-rw-r--r--tests/checkasm/llviddsp.c30
1 files changed, 20 insertions, 10 deletions
diff --git a/tests/checkasm/llviddsp.c b/tests/checkasm/llviddsp.c
index 9b35e2cadc..4c763ecf1b 100644
--- a/tests/checkasm/llviddsp.c
+++ b/tests/checkasm/llviddsp.c
@@ -37,8 +37,6 @@
} while (0)
#define init_buffer(a0, a1, type, width)\
- type *a0 = av_mallocz_array(width, sizeof(type));\
- type *a1 = av_mallocz_array(width, sizeof(type));\
if (!a0 || !a1)\
fail();\
randomize_buffers(a0, width * sizeof(type));\
@@ -48,12 +46,15 @@ static void check_add_bytes(LLVidDSPContext c, int width)
{
uint8_t *dst0 = av_mallocz(width);
uint8_t *dst1 = av_mallocz(width);
+ uint8_t *src0 = av_mallocz_array(width, sizeof(uint8_t));
+ uint8_t *src1 = av_mallocz_array(width, sizeof(uint8_t));
+ declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, uint8_t *src, ptrdiff_t w);
+
init_buffer(src0, src1, uint8_t, width);
if (!dst0 || !dst1)
fail();
- declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, uint8_t *src, ptrdiff_t w);
if (check_func(c.add_bytes, "add_bytes")) {
call_ref(dst0, src0, width);
@@ -73,6 +74,14 @@ static void check_add_median_pred(LLVidDSPContext c, int width) {
int A0, A1, B0, B1;
uint8_t *dst0 = av_mallocz(width);
uint8_t *dst1 = av_mallocz(width);
+ uint8_t *src0 = av_mallocz_array(width, sizeof(uint8_t));
+ uint8_t *src1 = av_mallocz_array(width, sizeof(uint8_t));
+ uint8_t *diff0 = av_mallocz_array(width, sizeof(uint8_t));
+ uint8_t *diff1 = av_mallocz_array(width, sizeof(uint8_t));
+ declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, const uint8_t *src1,
+ const uint8_t *diff, ptrdiff_t w,
+ int *left, int *left_top);
+
init_buffer(src0, src1, uint8_t, width);
init_buffer(diff0, diff1, uint8_t, width);
@@ -81,9 +90,6 @@ static void check_add_median_pred(LLVidDSPContext c, int width) {
A1 = A0;
B1 = B0;
- declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, const uint8_t *src1,
- const uint8_t *diff, ptrdiff_t w,
- int *left, int *left_top);
if (check_func(c.add_median_pred, "add_median_pred")) {
call_ref(dst0, src0, diff0, width, &A0, &B0);
@@ -105,13 +111,15 @@ static void check_add_left_pred(LLVidDSPContext c, int width, int acc, const cha
{
uint8_t *dst0 = av_mallocz(width);
uint8_t *dst1 = av_mallocz(width);
+ uint8_t *src0 = av_mallocz_array(width, sizeof(uint8_t));
+ uint8_t *src1 = av_mallocz_array(width, sizeof(uint8_t));
+ declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, uint8_t *src, ptrdiff_t w, int acc);
+
init_buffer(src0, src1, uint8_t, width);
if (!dst0 || !dst1)
fail();
- declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, uint8_t *src, ptrdiff_t w, int acc);
-
if (check_func(c.add_left_pred, "%s", report)) {
call_ref(dst0, src0, width, acc);
call_new(dst1, src1, width, acc);
@@ -130,13 +138,15 @@ static void check_add_left_pred_16(LLVidDSPContext c, unsigned mask, int width,
{
uint16_t *dst0 = av_mallocz_array(width, sizeof(uint16_t));
uint16_t *dst1 = av_mallocz_array(width, sizeof(uint16_t));
+ uint16_t *src0 = av_mallocz_array(width, sizeof(uint16_t));
+ uint16_t *src1 = av_mallocz_array(width, sizeof(uint16_t));
+ declare_func_emms(AV_CPU_FLAG_MMX, void, uint16_t *dst, uint16_t *src, unsigned mask, ptrdiff_t w, unsigned acc);
+
init_buffer(src0, src1, uint16_t, width);
if (!dst0 || !dst1)
fail();
- declare_func_emms(AV_CPU_FLAG_MMX, void, uint16_t *dst, uint16_t *src, unsigned mask, ptrdiff_t w, unsigned acc);
-
if (check_func(c.add_left_pred_int16, "%s", report)) {
call_ref(dst0, src0, mask, width, acc);
call_new(dst1, src1, mask, width, acc);