diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2003-07-23 21:44:47 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2003-07-23 21:44:47 +0000 |
commit | 2655a3b98add4057127c5b39a72c0d2ce4a26714 (patch) | |
tree | f1a9de931c21500b9d723c6ac1d13acff4ca73eb /ext | |
parent | 814c5bb72c6039201ecee0745a0a29bcfc186b61 (diff) |
Fixed a typo. blue_mask is 0x00ff0000, not 0x00ff00
Original commit message from CVS:
Fixed a typo. blue_mask is 0x00ff0000, not 0x00ff00
Diffstat (limited to 'ext')
-rw-r--r-- | ext/dv/gstdvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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), |