Tizen 2.1 base
[framework/multimedia/gstreamer-vaapi.git] / gst-libs / gst / vaapi / gstvaapisurfaceproxy.h
1 /*
2  *  gstvaapisurfaceproxy.h - VA surface proxy
3  *
4  *  Copyright (C) 2010-2011 Splitted-Desktop Systems
5  *  Copyright (C) 2011-2012 Intel Corporation
6  *
7  *  This library is free software; you can redistribute it and/or
8  *  modify it under the terms of the GNU Lesser General Public License
9  *  as published by the Free Software Foundation; either version 2.1
10  *  of the License, or (at your option) any later version.
11  *
12  *  This library is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *  Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public
18  *  License along with this library; if not, write to the Free
19  *  Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  *  Boston, MA 02110-1301 USA
21  */
22
23 #ifndef GST_VAAPI_SURFACE_PROXY_H
24 #define GST_VAAPI_SURFACE_PROXY_H
25
26 #include <glib-object.h>
27 #include <gst/vaapi/gstvaapicontext.h>
28 #include <gst/vaapi/gstvaapisurface.h>
29
30 G_BEGIN_DECLS
31
32 #define GST_VAAPI_TYPE_SURFACE_PROXY \
33     (gst_vaapi_surface_proxy_get_type())
34
35 #define GST_VAAPI_SURFACE_PROXY(obj)                            \
36     (G_TYPE_CHECK_INSTANCE_CAST((obj),                          \
37                                 GST_VAAPI_TYPE_SURFACE_PROXY,   \
38                                 GstVaapiSurfaceProxy))
39
40 #define GST_VAAPI_SURFACE_PROXY_CLASS(klass)                    \
41     (G_TYPE_CHECK_CLASS_CAST((klass),                           \
42                              GST_VAAPI_TYPE_SURFACE_PROXY,      \
43                              GstVaapiSurfaceProxyClass))
44
45 #define GST_VAAPI_IS_SURFACE_PROXY(obj) \
46     (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_VAAPI_TYPE_SURFACE_PROXY))
47
48 #define GST_VAAPI_IS_SURFACE_PROXY_CLASS(klass) \
49     (G_TYPE_CHECK_CLASS_TYPE((klass), GST_VAAPI_TYPE_SURFACE_PROXY))
50
51 #define GST_VAAPI_SURFACE_PROXY_GET_CLASS(obj)                  \
52     (G_TYPE_INSTANCE_GET_CLASS((obj),                           \
53                                GST_VAAPI_TYPE_SURFACE_PROXY,    \
54                                GstVaapiSurfaceProxyClass))
55
56 /**
57  * GST_VAAPI_SURFACE_PROXY_SURFACE:
58  * @surface: a #GstVaapiSurfaceProxy
59  *
60  * Macro that evaluates to the #GstVaapiSurface of @surface.
61  */
62 #define GST_VAAPI_SURFACE_PROXY_SURFACE(surface) \
63     gst_vaapi_surface_proxy_get_surface(surface)
64
65 /**
66  * GST_VAAPI_SURFACE_PROXY_TIMESTAMP:
67  * @surface: a #GstVaapiSurfaceProxy
68  *
69  * Macro that evaluates to the @surface timestamp, or
70  * %GST_CLOCK_TIME_NONE if none was set.
71  */
72 #define GST_VAAPI_SURFACE_PROXY_TIMESTAMP(surface) \
73     gst_vaapi_surface_proxy_get_timestamp(surface)
74
75 /**
76  * GST_VAAPI_SURFACE_PROXY_INTERLACED:
77  * @surface: a #GstVaapiSurfaceProxy
78  *
79  * Macro that evaluates to %TRUE if the @surface is interlaced.
80  */
81 #define GST_VAAPI_SURFACE_PROXY_INTERLACED(surface) \
82     gst_vaapi_surface_proxy_get_interlaced(surface)
83
84 /**
85  * GST_VAAPI_SURFACE_PROXY_TFF:
86  * @surface: a #GstVaapiSurfaceProxy
87  *
88  * Macro that evaluates to the tff flag of the @surface
89  */
90 #define GST_VAAPI_SURFACE_PROXY_TFF(surface) \
91     gst_vaapi_surface_proxy_get_tff(surface)
92
93 typedef struct _GstVaapiSurfaceProxy            GstVaapiSurfaceProxy;
94 typedef struct _GstVaapiSurfaceProxyPrivate     GstVaapiSurfaceProxyPrivate;
95 typedef struct _GstVaapiSurfaceProxyClass       GstVaapiSurfaceProxyClass;
96
97 /**
98  * GstVaapiSurfaceProxy:
99  *
100  * A wrapper around a VA surface and context.
101  */
102 struct _GstVaapiSurfaceProxy {
103     /*< private >*/
104     GObject parent_instance;
105
106     GstVaapiSurfaceProxyPrivate *priv;
107 };
108
109 /**
110  * GstVaapiSurfaceProxyClass:
111  *
112  * A wrapper around a VA surface and context.
113  */
114 struct _GstVaapiSurfaceProxyClass {
115     /*< private >*/
116     GObjectClass parent_class;
117 };
118
119 GType
120 gst_vaapi_surface_proxy_get_type(void) G_GNUC_CONST;
121
122 GstVaapiSurfaceProxy *
123 gst_vaapi_surface_proxy_new(GstVaapiContext *context, GstVaapiSurface *surface);
124
125 GstVaapiContext *
126 gst_vaapi_surface_proxy_get_context(GstVaapiSurfaceProxy *proxy);
127
128 void
129 gst_vaapi_surface_proxy_set_context(
130     GstVaapiSurfaceProxy *proxy,
131     GstVaapiContext      *context
132 );
133
134 GstVaapiSurface *
135 gst_vaapi_surface_proxy_get_surface(GstVaapiSurfaceProxy *proxy);
136
137 GstVaapiID
138 gst_vaapi_surface_proxy_get_surface_id(GstVaapiSurfaceProxy *proxy);
139
140 void
141 gst_vaapi_surface_proxy_set_surface(
142     GstVaapiSurfaceProxy *proxy,
143     GstVaapiSurface      *surface
144 );
145
146 GstClockTime
147 gst_vaapi_surface_proxy_get_timestamp(GstVaapiSurfaceProxy *proxy);
148
149 void
150 gst_vaapi_surface_proxy_set_timestamp(
151     GstVaapiSurfaceProxy *proxy,
152     GstClockTime          timestamp
153 );
154
155 gboolean
156 gst_vaapi_surface_proxy_get_interlaced(GstVaapiSurfaceProxy *proxy);
157
158 void
159 gst_vaapi_surface_proxy_set_interlaced(GstVaapiSurfaceProxy *proxy, gboolean b);
160
161 gboolean
162 gst_vaapi_surface_proxy_get_tff(GstVaapiSurfaceProxy *proxy);
163
164 void
165 gst_vaapi_surface_proxy_set_tff(GstVaapiSurfaceProxy *proxy, gboolean tff);
166
167 G_END_DECLS
168
169 #endif /* GST_VAAPI_SURFACE_PROXY_H */