2 * gstvaapidisplay_x11.h - VA/X11 display abstraction
4 * Copyright (C) 2010-2011 Splitted-Desktop Systems
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2.1
9 * of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free
18 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301 USA
22 #ifndef GST_VAAPI_DISPLAY_X11_H
23 #define GST_VAAPI_DISPLAY_X11_H
25 #include <va/va_x11.h>
26 #include <gst/vaapi/gstvaapidisplay.h>
30 #define GST_VAAPI_TYPE_DISPLAY_X11 \
31 (gst_vaapi_display_x11_get_type())
33 #define GST_VAAPI_DISPLAY_X11(obj) \
34 (G_TYPE_CHECK_INSTANCE_CAST((obj), \
35 GST_VAAPI_TYPE_DISPLAY_X11, \
38 #define GST_VAAPI_DISPLAY_X11_CLASS(klass) \
39 (G_TYPE_CHECK_CLASS_CAST((klass), \
40 GST_VAAPI_TYPE_DISPLAY_X11, \
41 GstVaapiDisplayX11Class))
43 #define GST_VAAPI_IS_DISPLAY_X11(obj) \
44 (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_VAAPI_TYPE_DISPLAY_X11))
46 #define GST_VAAPI_IS_DISPLAY_X11_CLASS(klass) \
47 (G_TYPE_CHECK_CLASS_TYPE((klass), GST_VAAPI_TYPE_DISPLAY_X11))
49 #define GST_VAAPI_DISPLAY_X11_GET_CLASS(obj) \
50 (G_TYPE_INSTANCE_GET_CLASS((obj), \
51 GST_VAAPI_TYPE_DISPLAY_X11, \
52 GstVaapiDisplayX11Class))
54 typedef struct _GstVaapiDisplayX11 GstVaapiDisplayX11;
55 typedef struct _GstVaapiDisplayX11Private GstVaapiDisplayX11Private;
56 typedef struct _GstVaapiDisplayX11Class GstVaapiDisplayX11Class;
61 * VA/X11 display wrapper.
63 struct _GstVaapiDisplayX11 {
65 GstVaapiDisplay parent_instance;
67 GstVaapiDisplayX11Private *priv;
72 * GstVaapiDisplayX11Class:
74 * VA/X11 display wrapper clas.
76 struct _GstVaapiDisplayX11Class {
78 GstVaapiDisplayClass parent_class;
82 gst_vaapi_display_x11_get_type(void) G_GNUC_CONST;
85 gst_vaapi_display_x11_new(const gchar *display_name);
88 gst_vaapi_display_x11_new_with_display(Display *x11_display);
91 gst_vaapi_display_x11_get_display(GstVaapiDisplayX11 *display);
94 gst_vaapi_display_x11_get_screen(GstVaapiDisplayX11 *display);
98 #endif /* GST_VAAPI_DISPLAY_X11_H */