summaryrefslogtreecommitdiffstats
path: root/gst/librfb
diff options
context:
space:
mode:
authorThijs Vermeir <thijsvermeir@gmail.com>2008-11-05 23:31:41 +0000
committerThijs Vermeir <thijsvermeir@gmail.com>2008-11-05 23:31:41 +0000
commitfd52cc22e7a3e3dd116aaf0bf9bc8dd7361000cc (patch)
tree6e560ae491f74f9f22d4356cdd993814c9ddf5d3 /gst/librfb
parent798aca639be11d2001a6c82b4d0eb5c6a453ce3c (diff)
downloadgst-plugins-bad-fd52cc22e7a3e3dd116aaf0bf9bc8dd7361000cc.tar.gz
gst-plugins-bad-fd52cc22e7a3e3dd116aaf0bf9bc8dd7361000cc.tar.bz2
gst-plugins-bad-fd52cc22e7a3e3dd116aaf0bf9bc8dd7361000cc.zip
gst/librfb/gstrfbsrc.c: Fix RGB mask in caps
Original commit message from CVS: * gst/librfb/gstrfbsrc.c: Fix RGB mask in caps
Diffstat (limited to 'gst/librfb')
-rw-r--r--gst/librfb/gstrfbsrc.c25
1 files changed, 18 insertions, 7 deletions
diff --git a/gst/librfb/gstrfbsrc.c b/gst/librfb/gstrfbsrc.c
index 0fd62c90..8c5e11eb 100644
--- a/gst/librfb/gstrfbsrc.c
+++ b/gst/librfb/gstrfbsrc.c
@@ -68,9 +68,9 @@ GST_STATIC_PAD_TEMPLATE ("src",
"bpp = (int) [1, 255], "
"depth = (int) [1, 255], "
"endianness = (int) [1234, 4321], "
- "red_mask = (int) 0x0000ff00, "
- "green_mask = (int) 0x00ff0000, "
- "blue_mask = (int) 0xff000000, "
+ "red_mask = (int) [min, max], "
+ "green_mask = (int) [min, max], "
+ "blue_mask = (int) [min, max], "
"width = (int) [ 16, 4096 ], "
"height = (int) [ 16, 4096 ], " "framerate = (fraction) 0/1")
);
@@ -338,6 +338,7 @@ gst_rfb_src_start (GstBaseSrc * bsrc)
GstRfbSrc *src = GST_RFB_SRC (bsrc);
RfbDecoder *decoder;
GstCaps *caps;
+ guint32 red_mask, green_mask, blue_mask;
decoder = src->decoder;
@@ -377,10 +378,20 @@ gst_rfb_src_start (GstBaseSrc * bsrc)
caps =
gst_caps_copy (gst_pad_get_pad_template_caps (GST_BASE_SRC_PAD (bsrc)));
- gst_caps_set_simple (caps, "width", G_TYPE_INT, decoder->rect_width, "height",
- G_TYPE_INT, decoder->rect_height, "bpp", G_TYPE_INT, decoder->bpp,
- "depth", G_TYPE_INT, decoder->depth, "endianness", G_TYPE_INT,
- (decoder->big_endian ? 1234 : 4321), NULL);
+
+ red_mask = decoder->red_max << decoder->red_shift;
+ green_mask = decoder->green_max << decoder->green_shift;
+ blue_mask = decoder->blue_max << decoder->blue_shift;
+
+ gst_caps_set_simple (caps, "width", G_TYPE_INT, decoder->rect_width,
+ "height", G_TYPE_INT, decoder->rect_height,
+ "bpp", G_TYPE_INT, decoder->bpp,
+ "depth", G_TYPE_INT, decoder->depth,
+ "endianness", G_TYPE_INT, G_BIG_ENDIAN,
+ "red_mask", G_TYPE_INT, GST_READ_UINT32_BE (&red_mask),
+ "green_mask", G_TYPE_INT, GST_READ_UINT32_BE (&green_mask),
+ "blue_mask", G_TYPE_INT, GST_READ_UINT32_BE (&blue_mask), NULL);
+
gst_pad_set_caps (GST_BASE_SRC_PAD (bsrc), caps);
gst_caps_unref (caps);