summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2013-06-14 22:57:30 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2013-08-05 14:21:45 +0200
commit1ef179d09c465248db47f62f00e718f4911e0e34 (patch)
tree8f1cf04d319fe7b5501237bb45056ad7af9703f0
parenta4f2f1b9d1c0b6b7f740951525a14b3d328f0acf (diff)
downloaddrm-1ef179d09c465248db47f62f00e718f4911e0e34.tar.gz
modetest: Fix line stride in SMPTE YUV packet pattern generator
The line stride passed to the function is expressed in bytes, there's no need to multiply it by 2. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r--tests/modetest/buffers.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/modetest/buffers.c b/tests/modetest/buffers.c
index 1ca3be5f..1575bf67 100644
--- a/tests/modetest/buffers.c
+++ b/tests/modetest/buffers.c
@@ -337,13 +337,13 @@ fill_smpte_yuv_packed(const struct yuv_info *yuv, unsigned char *mem,
for (y = 0; y < height * 6 / 9; ++y) {
for (x = 0; x < width; ++x)
y_mem[2*x] = colors_top[x * 7 / width].y;
- y_mem += stride * 2;
+ y_mem += stride;
}
for (; y < height * 7 / 9; ++y) {
for (x = 0; x < width; ++x)
y_mem[2*x] = colors_middle[x * 7 / width].y;
- y_mem += stride * 2;
+ y_mem += stride;
}
for (; y < height; ++y) {
@@ -354,7 +354,7 @@ fill_smpte_yuv_packed(const struct yuv_info *yuv, unsigned char *mem,
/ (width / 7) + 4].y;
for (; x < width; ++x)
y_mem[2*x] = colors_bottom[7].y;
- y_mem += stride * 2;
+ y_mem += stride;
}
/* Chroma */
@@ -363,7 +363,7 @@ fill_smpte_yuv_packed(const struct yuv_info *yuv, unsigned char *mem,
c_mem[2*x+u] = colors_top[x * 7 / width].u;
c_mem[2*x+v] = colors_top[x * 7 / width].v;
}
- c_mem += stride * 2;
+ c_mem += stride;
}
for (; y < height * 7 / 9; ++y) {
@@ -371,7 +371,7 @@ fill_smpte_yuv_packed(const struct yuv_info *yuv, unsigned char *mem,
c_mem[2*x+u] = colors_middle[x * 7 / width].u;
c_mem[2*x+v] = colors_middle[x * 7 / width].v;
}
- c_mem += stride * 2;
+ c_mem += stride;
}
for (; y < height; ++y) {
@@ -389,7 +389,7 @@ fill_smpte_yuv_packed(const struct yuv_info *yuv, unsigned char *mem,
c_mem[2*x+u] = colors_bottom[7].u;
c_mem[2*x+v] = colors_bottom[7].v;
}
- c_mem += stride * 2;
+ c_mem += stride;
}
}