video-format: fix GBR unpack
authorWim Taymans <wtaymans@redhat.com>
Mon, 26 Jan 2015 11:52:40 +0000 (12:52 +0100)
committerWim Taymans <wtaymans@redhat.com>
Tue, 27 Jan 2015 09:52:29 +0000 (10:52 +0100)
gst-libs/gst/video/video-format.c

index a1578daff66079703820e7c65a9b6be181129a37..1fa8129d78302e4ee9658baacfccb963351f6478 100644 (file)
@@ -776,9 +776,9 @@ unpack_GBR (const GstVideoFormatInfo * info, GstVideoPackFlags flags,
   const guint8 *restrict sg = GET_G_LINE (y);
   const guint8 *restrict sb = GET_B_LINE (y);
 
-  sr += x * 4;
-  sg += x * 4;
-  sb += x * 4;
+  sr += x;
+  sg += x;
+  sb += x;
 
   video_orc_unpack_Y444 (dest, sr, sg, sb, width);
 }