configure.ac, changelog, TODO
[cpumem-applet] / gst / gstximagesrc.h
1 /* screenshotsrc: Screenshot plugin for GStreamer
2  * 
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Library General Public
5  * License as published by the Free Software Foundation; either
6  * version 2 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Library General Public License for more details.
12  *
13  * You should have received a copy of the GNU Library General Public
14  * License along with this library; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 02111-1307, USA.
17  */
18
19 #ifndef __GST_XIMAGE_SRC_H__
20 #define __GST_XIMAGE_SRC_H__
21
22 #include <gst/gst.h>
23 #include <gst/base/gstpushsrc.h>
24 #include "ximageutil.h"
25
26 #ifdef HAVE_XFIXES
27 #include <X11/extensions/Xfixes.h>
28 #endif
29 #ifdef HAVE_XDAMAGE
30 #include <X11/extensions/Xdamage.h>
31 #endif
32
33 G_BEGIN_DECLS
34
35 #define GST_TYPE_XIMAGE_SRC (gst_ximage_src_get_type())
36 #define GST_XIMAGE_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_XIMAGE_SRC,GstXImageSrc))
37 #define GST_XIMAGE_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_XIMAGE_SRC,GstXImageSrc))
38 #define GST_IS_XIMAGE_SRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_XIMAGE_SRC))
39 #define GST_IS_XIMAGE_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_XIMAGE_SRC))
40
41 typedef struct _GstXImageSrc GstXImageSrc;
42 typedef struct _GstXImageSrcClass GstXImageSrcClass;
43
44 GType gst_ximage_src_get_type (void) G_GNUC_CONST;
45
46 struct _GstXImageSrc
47 {
48   GstPushSrc parent;
49
50   /* Information on display */
51   GstXContext *xcontext;
52   gint width;
53   gint height;
54
55   Window xwindow;
56   gchar *display_name;
57   guint screen_num;
58
59   /* Desired output framerate */
60   gint fps_n;
61   gint fps_d;
62
63   /* for framerate sync */
64   GstClockID clock_id;
65   gint64 last_frame_no;
66
67   /* Protect X Windows calls */
68   GMutex *x_lock;
69
70   /* Gathered pool of emitted buffers */
71   GMutex *pool_lock;
72   GSList *buffer_pool;
73
74   /* XFixes and XDamage support */
75   gboolean have_xfixes;
76   gboolean have_xdamage;
77   gboolean show_pointer;
78   gboolean use_damage;
79
80   /* co-ordinates for start and end */
81   guint startx;
82   guint starty;
83   guint endx;
84   guint endy;
85
86 #ifdef HAVE_XFIXES
87   int fixes_event_base;
88   XFixesCursorImage *cursor_image;
89 #endif
90 #ifdef HAVE_XDAMAGE
91   Damage damage;
92   int damage_event_base;
93   XserverRegion damage_region;
94   GC damage_copy_gc;
95   GstXImageSrcBuffer *last_ximage;
96 #endif
97 };
98
99 struct _GstXImageSrcClass
100 {
101   GstPushSrcClass parent_class;
102 };
103
104 G_END_DECLS
105
106 #endif /* __GST_XIMAGE_SRC_H__ */