diff options
author | Thijs Vermeir <thijsvermeir@gmail.com> | 2007-09-21 14:55:19 +0000 |
---|---|---|
committer | Thijs Vermeir <thijsvermeir@gmail.com> | 2007-09-21 14:55:19 +0000 |
commit | ada7510fd7cbea1ed43523e04121fa1046e81378 (patch) | |
tree | cb37e2c8c43ed542c020a679b9f4c788ad41d8ca /gst/librfb/rfbdecoder.h | |
parent | ab4038ce2e51ed2eddd3306b77a3e1b560aa5d03 (diff) | |
download | gstreamer-plugins-bad-ada7510fd7cbea1ed43523e04121fa1046e81378.tar.gz |
gst/librfb/: Added offset-x, offset-y, width and height property for selecting a region from the screen
Original commit message from CVS:
* gst/librfb/gstrfbsrc.c:
* gst/librfb/rfbdecoder.c:
* gst/librfb/rfbdecoder.h:
Added offset-x, offset-y, width and height property
for selecting a region from the screen
Diffstat (limited to 'gst/librfb/rfbdecoder.h')
-rw-r--r-- | gst/librfb/rfbdecoder.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gst/librfb/rfbdecoder.h b/gst/librfb/rfbdecoder.h index 9d1778f6c..d6fec5f66 100644 --- a/gst/librfb/rfbdecoder.h +++ b/gst/librfb/rfbdecoder.h @@ -63,6 +63,12 @@ struct _RfbDecoder gchar *name; + /* information if we don't want to update the whole screen */ + guint offset_x; + guint offset_y; + guint rect_width; + guint rect_height; + gint n_rects; }; |