mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
Fixed a typo. blue_mask is 0x00ff0000, not 0x00ff00
Original commit message from CVS: Fixed a typo. blue_mask is 0x00ff0000, not 0x00ff00
This commit is contained in:
parent
814c5bb72c
commit
2655a3b98a
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue