From 2655a3b98add4057127c5b39a72c0d2ce4a26714 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Wed, 23 Jul 2003 21:44:47 +0000 Subject: Fixed a typo. blue_mask is 0x00ff0000, not 0x00ff00 Original commit message from CVS: Fixed a typo. blue_mask is 0x00ff0000, not 0x00ff00 --- ext/dv/gstdvdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c index 569a9d13..d7500cc6 100644 --- a/ext/dv/gstdvdec.c +++ b/ext/dv/gstdvdec.c @@ -109,7 +109,7 @@ GST_PAD_TEMPLATE_FACTORY (video_src_temp, "endianness", GST_PROPS_INT (G_BIG_ENDIAN), "red_mask", GST_PROPS_INT(0x000000ff), "green_mask", GST_PROPS_INT(0x0000ff00), - "blue_mask", GST_PROPS_INT(0x00ff00), + "blue_mask", GST_PROPS_INT(0x00ff0000), "width", GST_PROPS_INT (720), "height", GST_PROPS_LIST ( GST_PROPS_INT (NTSC_HEIGHT), -- cgit