plugins: store the first downstream allocator if available
[platform/upstream/gstreamer.git] / gst / vaapi / gstvaapipluginbase.h
1 /*
2  *  gstvaapipluginbase.h - Base GStreamer VA-API Plugin element
3  *
4  *  Copyright (C) 2010-2011 Splitted-Desktop Systems
5  *    Author: Gwenole Beauchesne <gwenole.beauchesne@splitted-desktop.com>
6  *  Copyright (C) 2011-2013 Intel Corporation
7  *    Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
8  *
9  *  This library is free software; you can redistribute it and/or
10  *  modify it under the terms of the GNU Lesser General Public License
11  *  as published by the Free Software Foundation; either version 2.1
12  *  of the License, or (at your option) any later version.
13  *
14  *  This library is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  *  Lesser General Public License for more details.
18  *
19  *  You should have received a copy of the GNU Lesser General Public
20  *  License along with this library; if not, write to the Free
21  *  Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22  *  Boston, MA 02110-1301 USA
23  */
24
25 #ifndef GST_VAAPI_PLUGIN_BASE_H
26 #define GST_VAAPI_PLUGIN_BASE_H
27
28 #include <gst/base/gstbasetransform.h>
29 #include <gst/video/gstvideodecoder.h>
30 #include <gst/video/gstvideoencoder.h>
31 #include <gst/video/gstvideosink.h>
32 #include <gst/vaapi/gstvaapidisplay.h>
33
34 G_BEGIN_DECLS
35
36 typedef struct _GstVaapiPluginBase GstVaapiPluginBase;
37 typedef struct _GstVaapiPluginBaseClass GstVaapiPluginBaseClass;
38
39 #define GST_VAAPI_PLUGIN_BASE(plugin) \
40   ((GstVaapiPluginBase *)(plugin))
41 #define GST_VAAPI_PLUGIN_BASE_CLASS(plugin) \
42   ((GstVaapiPluginBaseClass *)(plugin))
43 #define GST_VAAPI_PLUGIN_BASE_GET_CLASS(plugin) \
44   GST_VAAPI_PLUGIN_BASE_CLASS(GST_ELEMENT_GET_CLASS( \
45       GST_VAAPI_PLUGIN_BASE_ELEMENT(plugin)))
46 #define GST_VAAPI_PLUGIN_BASE_PARENT(plugin) \
47   (&GST_VAAPI_PLUGIN_BASE(plugin)->parent_instance)
48 #define GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin) \
49   (&GST_VAAPI_PLUGIN_BASE_CLASS(plugin)->parent_class)
50 #define GST_VAAPI_PLUGIN_BASE_ELEMENT(plugin) \
51   (&GST_VAAPI_PLUGIN_BASE_PARENT(plugin)->element)
52 #define GST_VAAPI_PLUGIN_BASE_ELEMENT_CLASS(plugin) \
53   (&GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin)->element)
54 #define GST_VAAPI_PLUGIN_BASE_DECODER(plugin) \
55   (&GST_VAAPI_PLUGIN_BASE_PARENT(plugin)->decoder)
56 #define GST_VAAPI_PLUGIN_BASE_DECODER_CLASS(plugin) \
57   (&GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin)->decoder)
58 #define GST_VAAPI_PLUGIN_BASE_ENCODER(plugin) \
59   (&GST_VAAPI_PLUGIN_BASE_PARENT(plugin)->encoder)
60 #define GST_VAAPI_PLUGIN_BASE_ENCODER_CLASS(plugin) \
61   (&GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin)->encoder)
62 #define GST_VAAPI_PLUGIN_BASE_TRANSFORM(plugin) \
63   (&GST_VAAPI_PLUGIN_BASE_PARENT(plugin)->transform)
64 #define GST_VAAPI_PLUGIN_BASE_TRANSFORM_CLASS(plugin) \
65   (&GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin)->transform)
66 #define GST_VAAPI_PLUGIN_BASE_SINK(plugin) \
67   (&GST_VAAPI_PLUGIN_BASE_PARENT(plugin)->sink)
68 #define GST_VAAPI_PLUGIN_BASE_SINK_CLASS(plugin) \
69   (&GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin)->sink)
70
71 #define GST_VAAPI_PLUGIN_BASE_INIT_INTERFACES \
72   gst_vaapi_plugin_base_init_interfaces(g_define_type_id);
73
74 #define GST_VAAPI_PLUGIN_BASE_SINK_PAD(plugin) \
75   (GST_VAAPI_PLUGIN_BASE(plugin)->sinkpad)
76 #define GST_VAAPI_PLUGIN_BASE_SINK_PAD_CAPS(plugin) \
77   (GST_VAAPI_PLUGIN_BASE(plugin)->sinkpad_caps)
78 #define GST_VAAPI_PLUGIN_BASE_SINK_PAD_INFO(plugin) \
79   (&GST_VAAPI_PLUGIN_BASE(plugin)->sinkpad_info)
80 #define GST_VAAPI_PLUGIN_BASE_SRC_PAD(plugin) \
81   (GST_VAAPI_PLUGIN_BASE(plugin)->srcpad)
82 #define GST_VAAPI_PLUGIN_BASE_SRC_PAD_CAPS(plugin) \
83   (GST_VAAPI_PLUGIN_BASE(plugin)->srcpad_caps)
84 #define GST_VAAPI_PLUGIN_BASE_SRC_PAD_INFO(plugin) \
85   (&GST_VAAPI_PLUGIN_BASE(plugin)->srcpad_info)
86 #define GST_VAAPI_PLUGIN_BASE_SRC_PAD_CAN_DMABUF(plugin) \
87   (GST_VAAPI_PLUGIN_BASE(plugin)->srcpad_can_dmabuf)
88
89 #define GST_VAAPI_PLUGIN_BASE_DISPLAY(plugin) \
90   (GST_VAAPI_PLUGIN_BASE(plugin)->display)
91 #define GST_VAAPI_PLUGIN_BASE_DISPLAY_TYPE(plugin) \
92   (GST_VAAPI_PLUGIN_BASE(plugin)->display_type)
93 #define GST_VAAPI_PLUGIN_BASE_DISPLAY_NAME(plugin) \
94   (GST_VAAPI_PLUGIN_BASE(plugin)->display_name)
95 #define GST_VAAPI_PLUGIN_BASE_DISPLAY_REPLACE(plugin, new_display) \
96   (gst_vaapi_display_replace(&GST_VAAPI_PLUGIN_BASE_DISPLAY(plugin), \
97        (new_display)))
98
99 #define GST_VAAPI_PLUGIN_BASE_DEFINE_SET_CONTEXT(parent_class) \
100   static void \
101   gst_vaapi_base_set_context (GstElement * element, GstContext * context) \
102   { \
103     GstVaapiPluginBase *const plugin = GST_VAAPI_PLUGIN_BASE (element); \
104     \
105     gst_vaapi_plugin_base_set_context (plugin, context); \
106     GST_ELEMENT_CLASS (parent_class)->set_context (element, context); \
107   }
108
109 struct _GstVaapiPluginBase
110 {
111   /*< private >*/
112   union
113   {
114     GstElement element;
115     GstVideoDecoder decoder;
116     GstVideoEncoder encoder;
117     GstBaseTransform transform;
118     GstVideoSink sink;
119   } parent_instance;
120
121   GstDebugCategory *debug_category;
122
123   GstPad *sinkpad;
124   GstCaps *sinkpad_caps;
125   gboolean sinkpad_caps_is_raw;
126   GstVideoInfo sinkpad_info;
127   GstBufferPool *sinkpad_buffer_pool;
128   guint sinkpad_buffer_size;
129
130   GstPad *srcpad;
131   GstCaps *srcpad_caps;
132   GstVideoInfo srcpad_info;
133   GstBufferPool *srcpad_buffer_pool;
134
135   GstVaapiDisplay *display;
136   GstVaapiDisplayType display_type;
137   GstVaapiDisplayType display_type_req;
138   gchar *display_name;
139
140   GstObject *gl_context;
141   GstObject *gl_display;
142   GstObject *gl_other_context;
143
144   GstCaps *allowed_raw_caps;
145   GstAllocator *sinkpad_allocator;
146   GstAllocator *srcpad_allocator;
147   gboolean srcpad_can_dmabuf;
148
149   gboolean enable_direct_rendering;
150   GstAllocator *other_srcpad_allocator;
151   GstAllocationParams other_allocator_params;
152 };
153
154 struct _GstVaapiPluginBaseClass
155 {
156   /*< private >*/
157   union
158   {
159     GstElementClass element;
160     GstVideoDecoderClass decoder;
161     GstVideoEncoderClass encoder;
162     GstBaseTransformClass transform;
163     GstVideoSinkClass sink;
164   } parent_class;
165
166   gboolean  (*has_interface) (GstVaapiPluginBase * plugin, GType type);
167   void (*display_changed) (GstVaapiPluginBase * plugin);
168 };
169
170 G_GNUC_INTERNAL
171 void
172 gst_vaapi_plugin_base_init_interfaces (GType type);
173
174 G_GNUC_INTERNAL
175 void
176 gst_vaapi_plugin_base_class_init (GstVaapiPluginBaseClass * klass);
177
178 G_GNUC_INTERNAL
179 void
180 gst_vaapi_plugin_base_init (GstVaapiPluginBase * plugin,
181     GstDebugCategory * debug_category);
182
183 G_GNUC_INTERNAL
184 void
185 gst_vaapi_plugin_base_finalize (GstVaapiPluginBase * plugin);
186
187 G_GNUC_INTERNAL
188 gboolean
189 gst_vaapi_plugin_base_open (GstVaapiPluginBase * plugin);
190
191 G_GNUC_INTERNAL
192 void
193 gst_vaapi_plugin_base_close (GstVaapiPluginBase * plugin);
194
195 G_GNUC_INTERNAL
196 gboolean
197 gst_vaapi_plugin_base_has_display_type (GstVaapiPluginBase * plugin,
198     GstVaapiDisplayType display_type_req);
199
200 G_GNUC_INTERNAL
201 void
202 gst_vaapi_plugin_base_set_display_type (GstVaapiPluginBase * plugin,
203     GstVaapiDisplayType display_type);
204
205 G_GNUC_INTERNAL
206 void
207 gst_vaapi_plugin_base_set_display_name (GstVaapiPluginBase * plugin,
208     const gchar * display_name);
209
210 G_GNUC_INTERNAL
211 gboolean
212 gst_vaapi_plugin_base_ensure_display (GstVaapiPluginBase * plugin);
213
214 G_GNUC_INTERNAL
215 gboolean
216 gst_vaapi_plugin_base_set_caps (GstVaapiPluginBase * plugin, GstCaps * incaps,
217     GstCaps * outcaps);
218
219 G_GNUC_INTERNAL
220 gboolean
221 gst_vaapi_plugin_base_propose_allocation (GstVaapiPluginBase * plugin,
222     GstQuery * query);
223
224 G_GNUC_INTERNAL
225 gboolean
226 gst_vaapi_plugin_base_decide_allocation (GstVaapiPluginBase * plugin,
227     GstQuery * query);
228
229 G_GNUC_INTERNAL
230 GstFlowReturn
231 gst_vaapi_plugin_base_get_input_buffer (GstVaapiPluginBase * plugin,
232     GstBuffer * inbuf, GstBuffer ** outbuf_ptr);
233
234 G_GNUC_INTERNAL
235 void
236 gst_vaapi_plugin_base_set_context (GstVaapiPluginBase * plugin,
237     GstContext * context);
238
239 G_GNUC_INTERNAL
240 void
241 gst_vaapi_plugin_base_set_gl_context (GstVaapiPluginBase * plugin,
242     GstObject * object);
243
244 G_GNUC_INTERNAL
245 GstObject *
246 gst_vaapi_plugin_base_create_gl_context (GstVaapiPluginBase * plugin);
247
248 G_GNUC_INTERNAL
249 GstCaps *
250 gst_vaapi_plugin_base_get_allowed_raw_caps (GstVaapiPluginBase * plugin);
251
252 G_GNUC_INTERNAL
253 void
254 gst_vaapi_plugin_base_set_srcpad_can_dmabuf (GstVaapiPluginBase * plugin,
255     GstObject * object);
256
257 G_END_DECLS
258
259 #endif /* GST_VAAPI_PLUGIN_BASE_H */