summaryrefslogtreecommitdiffstats
path: root/gst/games/gstvideoimage.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/games/gstvideoimage.c')
-rw-r--r--gst/games/gstvideoimage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/games/gstvideoimage.c b/gst/games/gstvideoimage.c
index 7e3436f0..c18843c8 100644
--- a/gst/games/gstvideoimage.c
+++ b/gst/games/gstvideoimage.c
@@ -493,7 +493,7 @@ copy_hline_YUY2 (GstVideoImage * dest, int xdest, int ydest,
GstVideoImage * src, int xsrc, int ysrc, int w)
{
int destoffset = ydest * dest->ystride;
- int srcoffset = ydest * src->ystride;
+ int srcoffset = ysrc * src->ystride;
memcpy (dest->yp + destoffset + xdest * 2, src->yp + srcoffset + xsrc * 2,
w * 2);