From 94ce75319aa6c68ce52099a72a5de8389e990ee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Stadler?= Date: Fri, 11 Nov 2011 19:55:41 +0100 Subject: [PATCH] videotestsrc: fix crash with ARGB64 This got broken when it was ported. --- gst/videotestsrc/videotestsrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/videotestsrc/videotestsrc.c b/gst/videotestsrc/videotestsrc.c index 184352aeaf..ddfd8eebc4 100644 --- a/gst/videotestsrc/videotestsrc.c +++ b/gst/videotestsrc/videotestsrc.c @@ -2268,7 +2268,7 @@ paint_setup_ARGB64 (paintinfo * p, GstVideoFrame * frame) p->ap = GST_VIDEO_FRAME_PLANE_DATA (frame, 0); p->yp = p->ap + 2; p->up = p->ap + 4; - p->yp = p->ap + 6; + p->vp = p->ap + 6; p->astride = GST_VIDEO_FRAME_PLANE_STRIDE (frame, 0); p->ystride = p->astride; p->ustride = p->astride;