diff options
author | David Schleef <ds@schleef.org> | 2005-02-11 22:01:19 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2005-02-11 22:01:19 +0000 |
commit | a970a323047d9241a4ee96f4126c9739fc9780cf (patch) | |
tree | 0cc2c90fba41e659ddfa701c08f9bc0b95545427 /gst/librfb/rfbcontext.h | |
parent | 909da9fb0489c3744547e6386531461c072da5fc (diff) | |
download | gst-plugins-bad-a970a323047d9241a4ee96f4126c9739fc9780cf.tar.gz gst-plugins-bad-a970a323047d9241a4ee96f4126c9739fc9780cf.tar.bz2 gst-plugins-bad-a970a323047d9241a4ee96f4126c9739fc9780cf.zip |
configure.ac: Pull in librfb from my CVS tree, because it is too small and annoying to be separate. Move rfbsrc plug...
Original commit message from CVS:
* configure.ac: Pull in librfb from my CVS tree, because it is
too small and annoying to be separate. Move rfbsrc plugin
to gst/.
* ext/Makefile.am:
* ext/librfb/Makefile.am:
* ext/librfb/gstrfbsrc.c:
* gst/librfb/Makefile.am:
* gst/librfb/gstrfbsrc.c:
* gst/librfb/rfb.c:
* gst/librfb/rfb.h:
* gst/librfb/rfbbuffer.c:
* gst/librfb/rfbbuffer.h:
* gst/librfb/rfbbytestream.c:
* gst/librfb/rfbbytestream.h:
* gst/librfb/rfbcontext.h:
* gst/librfb/rfbdecoder.c:
* gst/librfb/rfbdecoder.h:
* gst/librfb/rfbutil.h:
Diffstat (limited to 'gst/librfb/rfbcontext.h')
-rw-r--r-- | gst/librfb/rfbcontext.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gst/librfb/rfbcontext.h b/gst/librfb/rfbcontext.h new file mode 100644 index 00000000..df9ec1df --- /dev/null +++ b/gst/librfb/rfbcontext.h @@ -0,0 +1,41 @@ + +#ifndef _LIBRFB_RFBCONTEXT_H_ +#define _LIBRFB_RFBCONTEXT_H_ + +G_BEGIN_DECLS + +#include <glib.h> + +typedef struct _RfbContext +{ + RfbConnection *connection; + + guint8 *buffer1; + void *buffer1_alloc; + unsigned int buffer1_len; + + guint8 *buffer2; + void *buffer2_alloc; + unsigned int buffer2_len; + + char *name; +} RfbContext; + +typedef struct _RfbRect +{ + RfbContext *context; + + unsigned int x_pos; + unsigned int y_pos; + unsigned int width; + unsigned int height; + unsigned int encoding_type; + + char *data; +} RfbRect; + + + +G_END_DECLS + +#endif |