plugins: fix detection of raw video caps.
[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 #include "gstvaapiuploader.h"
34
35 G_BEGIN_DECLS
36
37 typedef struct _GstVaapiPluginBase GstVaapiPluginBase;
38 typedef struct _GstVaapiPluginBaseClass GstVaapiPluginBaseClass;
39
40 #define GST_VAAPI_PLUGIN_BASE(plugin) \
41   ((GstVaapiPluginBase *)(plugin))
42 #define GST_VAAPI_PLUGIN_BASE_CLASS(plugin) \
43   ((GstVaapiPluginBaseClass *)(plugin))
44 #define GST_VAAPI_PLUGIN_BASE_GET_CLASS(plugin) \
45   GST_VAAPI_PLUGIN_BASE_CLASS(GST_ELEMENT_GET_CLASS( \
46       GST_VAAPI_PLUGIN_BASE_ELEMENT(plugin)))
47 #define GST_VAAPI_PLUGIN_BASE_PARENT(plugin) \
48   (&GST_VAAPI_PLUGIN_BASE(plugin)->parent_instance)
49 #define GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin) \
50   (&GST_VAAPI_PLUGIN_BASE_CLASS(plugin)->parent_class)
51 #define GST_VAAPI_PLUGIN_BASE_ELEMENT(plugin) \
52   (&GST_VAAPI_PLUGIN_BASE_PARENT(plugin)->element)
53 #define GST_VAAPI_PLUGIN_BASE_ELEMENT_CLASS(plugin) \
54   (&GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin)->element)
55 #define GST_VAAPI_PLUGIN_BASE_DECODER(plugin) \
56   (&GST_VAAPI_PLUGIN_BASE_PARENT(plugin)->decoder)
57 #define GST_VAAPI_PLUGIN_BASE_DECODER_CLASS(plugin) \
58   (&GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin)->decoder)
59 #define GST_VAAPI_PLUGIN_BASE_ENCODER(plugin) \
60   (&GST_VAAPI_PLUGIN_BASE_PARENT(plugin)->encoder)
61 #define GST_VAAPI_PLUGIN_BASE_ENCODER_CLASS(plugin) \
62   (&GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin)->encoder)
63 #define GST_VAAPI_PLUGIN_BASE_TRANSFORM(plugin) \
64   (&GST_VAAPI_PLUGIN_BASE_PARENT(plugin)->transform)
65 #define GST_VAAPI_PLUGIN_BASE_TRANSFORM_CLASS(plugin) \
66   (&GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin)->transform)
67 #define GST_VAAPI_PLUGIN_BASE_SINK(plugin) \
68   (&GST_VAAPI_PLUGIN_BASE_PARENT(plugin)->sink)
69 #define GST_VAAPI_PLUGIN_BASE_SINK_CLASS(plugin) \
70   (&GST_VAAPI_PLUGIN_BASE_PARENT_CLASS(plugin)->sink)
71
72 #define GST_VAAPI_PLUGIN_BASE_INIT_INTERFACES \
73   gst_vaapi_plugin_base_init_interfaces(g_define_type_id);
74
75 #define GST_VAAPI_PLUGIN_BASE_SINK_PAD(plugin) \
76   (GST_VAAPI_PLUGIN_BASE(plugin)->sinkpad)
77 #define GST_VAAPI_PLUGIN_BASE_SINK_PAD_CAPS(plugin) \
78   (GST_VAAPI_PLUGIN_BASE(plugin)->sinkpad_caps)
79 #define GST_VAAPI_PLUGIN_BASE_SINK_PAD_INFO(plugin) \
80   (&GST_VAAPI_PLUGIN_BASE(plugin)->sinkpad_info)
81 #define GST_VAAPI_PLUGIN_BASE_SINK_PAD_QUERYFUNC(plugin) \
82   (GST_VAAPI_PLUGIN_BASE(plugin)->sinkpad_query)
83 #define GST_VAAPI_PLUGIN_BASE_SRC_PAD(plugin) \
84   (GST_VAAPI_PLUGIN_BASE(plugin)->srcpad)
85 #define GST_VAAPI_PLUGIN_BASE_SRC_PAD_CAPS(plugin) \
86   (GST_VAAPI_PLUGIN_BASE(plugin)->srcpad_caps)
87 #define GST_VAAPI_PLUGIN_BASE_SRC_PAD_INFO(plugin) \
88   (&GST_VAAPI_PLUGIN_BASE(plugin)->srcpad_info)
89 #define GST_VAAPI_PLUGIN_BASE_SRC_PAD_QUERYFYNC(plugin) \
90   (GST_VAAPI_PLUGIN_BASE(plugin)->srcpad_query)
91
92 #define GST_VAAPI_PLUGIN_BASE_DISPLAY(plugin) \
93   (GST_VAAPI_PLUGIN_BASE(plugin)->display)
94 #define GST_VAAPI_PLUGIN_BASE_DISPLAY_TYPE(plugin) \
95   (GST_VAAPI_PLUGIN_BASE(plugin)->display_type)
96 #define GST_VAAPI_PLUGIN_BASE_DISPLAY_NAME(plugin) \
97   (GST_VAAPI_PLUGIN_BASE(plugin)->display_name)
98 #define GST_VAAPI_PLUGIN_BASE_DISPLAY_REPLACE(plugin, new_display) \
99   (gst_vaapi_display_replace(&GST_VAAPI_PLUGIN_BASE_DISPLAY(plugin), \
100        (new_display)))
101
102 #define GST_VAAPI_PLUGIN_BASE_UPLOADER(plugin) \
103   (GST_VAAPI_PLUGIN_BASE(plugin)->uploader)
104 #define GST_VAAPI_PLUGIN_BASE_UPLOADER_CAPS(plugin) \
105   (gst_vaapi_uploader_get_caps(GST_VAAPI_PLUGIN_BASE_UPLOADER(plugin)))
106 #define GST_VAAPI_PLUGIN_BASE_UPLOADER_USED(plugin) \
107   (GST_VAAPI_PLUGIN_BASE(plugin)->uploader_used)
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_changed;
126   gboolean sinkpad_caps_is_raw;
127   GstVideoInfo sinkpad_info;
128   GstPadQueryFunction sinkpad_query;
129 #if GST_CHECK_VERSION(1,0,0)
130   GstBufferPool *sinkpad_buffer_pool;
131   guint sinkpad_buffer_size;
132 #endif
133
134   GstPad *srcpad;
135   GstCaps *srcpad_caps;
136   gboolean srcpad_caps_changed;
137   GstVideoInfo srcpad_info;
138   GstPadQueryFunction srcpad_query;
139
140   GstVaapiDisplay *display;
141   GstVaapiDisplayType display_type;
142   GstVaapiDisplayType display_type_req;
143   gchar *display_name;
144
145   GstVaapiUploader *uploader;
146   gboolean uploader_used;
147 };
148
149 struct _GstVaapiPluginBaseClass
150 {
151   /*< private >*/
152   union
153   {
154     GstElementClass element;
155     GstVideoDecoderClass decoder;
156     GstVideoEncoderClass encoder;
157     GstBaseTransformClass transform;
158     GstVideoSinkClass sink;
159   } parent_class;
160
161   gboolean  (*has_interface) (GstVaapiPluginBase * plugin, GType type);
162   void (*display_changed) (GstVaapiPluginBase * plugin);
163 };
164
165 G_GNUC_INTERNAL
166 void
167 gst_vaapi_plugin_base_init_interfaces (GType type);
168
169 G_GNUC_INTERNAL
170 void
171 gst_vaapi_plugin_base_class_init (GstVaapiPluginBaseClass * klass);
172
173 G_GNUC_INTERNAL
174 void
175 gst_vaapi_plugin_base_init (GstVaapiPluginBase * plugin,
176     GstDebugCategory * debug_category);
177
178 G_GNUC_INTERNAL
179 void
180 gst_vaapi_plugin_base_finalize (GstVaapiPluginBase * plugin);
181
182 G_GNUC_INTERNAL
183 gboolean
184 gst_vaapi_plugin_base_open (GstVaapiPluginBase * plugin);
185
186 G_GNUC_INTERNAL
187 void
188 gst_vaapi_plugin_base_close (GstVaapiPluginBase * plugin);
189
190 G_GNUC_INTERNAL
191 void
192 gst_vaapi_plugin_base_set_display_type (GstVaapiPluginBase * plugin,
193     GstVaapiDisplayType display_type);
194
195 G_GNUC_INTERNAL
196 void
197 gst_vaapi_plugin_base_set_display_name (GstVaapiPluginBase * plugin,
198     const gchar * display_name);
199
200 G_GNUC_INTERNAL
201 gboolean
202 gst_vaapi_plugin_base_ensure_display (GstVaapiPluginBase * plugin);
203
204 G_GNUC_INTERNAL
205 gboolean
206 gst_vaapi_plugin_base_ensure_uploader (GstVaapiPluginBase * plugin);
207
208 G_GNUC_INTERNAL
209 gboolean
210 gst_vaapi_plugin_base_set_caps (GstVaapiPluginBase * plugin, GstCaps * incaps,
211     GstCaps * outcaps);
212
213 G_GNUC_INTERNAL
214 gboolean
215 gst_vaapi_plugin_base_propose_allocation (GstVaapiPluginBase * plugin,
216     GstQuery * query);
217
218 G_GNUC_INTERNAL
219 GstFlowReturn
220 gst_vaapi_plugin_base_allocate_input_buffer (GstVaapiPluginBase * plugin,
221     GstCaps * caps, GstBuffer ** outbuf_ptr);
222
223 G_GNUC_INTERNAL
224 GstFlowReturn
225 gst_vaapi_plugin_base_get_input_buffer (GstVaapiPluginBase * plugin,
226     GstBuffer * inbuf, GstBuffer ** outbuf_ptr);
227
228 G_END_DECLS
229
230 #endif /* GST_VAAPI_PLUGIN_BASE_H */