[FFmpeg-devel] [PATCH v2 1/3] checkasm: sw_rgb: Fix mixed declaration and code
Jun Zhao
mypopydev at gmail.com
Sun May 31 11:18:32 EEST 2020
From: Jun Zhao <barryjzhao at tencent.com>
Fix mixed declaration and code.
Signed-off-by: Jun Zhao <barryjzhao at tencent.com>
---
tests/checkasm/sw_rgb.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/tests/checkasm/sw_rgb.c b/tests/checkasm/sw_rgb.c
index 1e8ea15..e5aad20 100644
--- a/tests/checkasm/sw_rgb.c
+++ b/tests/checkasm/sw_rgb.c
@@ -137,12 +137,13 @@ static void check_interleave_bytes(void)
int w = i > 0 ? i : (1 + (rnd() % (MAX_STRIDE-2)));
int h = 1 + (rnd() % (MAX_HEIGHT-2));
- memset(dst0, 0, 2 * MAX_STRIDE * MAX_HEIGHT);
- memset(dst1, 0, 2 * MAX_STRIDE * MAX_HEIGHT);
-
int src0_offset = 0, src0_stride = MAX_STRIDE;
int src1_offset = 0, src1_stride = MAX_STRIDE;
int dst_offset = 0, dst_stride = 2 * MAX_STRIDE;
+
+ memset(dst0, 0, 2 * MAX_STRIDE * MAX_HEIGHT);
+ memset(dst1, 0, 2 * MAX_STRIDE * MAX_HEIGHT);
+
// Try different combinations of negative strides
if (i & 1) {
src0_offset = (h-1)*src0_stride;
--
2.7.4
More information about the ffmpeg-devel
mailing list