4e6a2c7353eeb0c8935f60c8cebf6d75c6262425
[platform/upstream/gstreamer.git] / libs / gst / base / gstbaseparse.h
1 /* GStreamer
2  * Copyright (C) 2008 Nokia Corporation. All rights reserved.
3  *
4  * Contact: Stefan Kost <stefan.kost@nokia.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
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  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #ifndef __GST_BASE_PARSE_H__
23 #define __GST_BASE_PARSE_H__
24
25 #include <gst/gst.h>
26
27 G_BEGIN_DECLS
28
29 #define GST_TYPE_BASE_PARSE            (gst_base_parse_get_type())
30 #define GST_BASE_PARSE(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BASE_PARSE,GstBaseParse))
31 #define GST_BASE_PARSE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_BASE_PARSE,GstBaseParseClass))
32 #define GST_BASE_PARSE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_BASE_PARSE,GstBaseParseClass))
33 #define GST_IS_BASE_PARSE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_BASE_PARSE))
34 #define GST_IS_BASE_PARSE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_BASE_PARSE))
35 #define GST_BASE_PARSE_CAST(obj)       ((GstBaseParse *)(obj))
36
37 /**
38  * GST_BASE_PARSE_SRC_PAD:
39  * @obj: base parse instance
40  *
41  * Gives the pointer to the source #GstPad object of the element.
42  */
43 #define GST_BASE_PARSE_SRC_PAD(obj)    (GST_BASE_PARSE_CAST (obj)->srcpad)
44
45 /**
46  * GST_BASE_PARSE_SINK_PAD:
47  * @obj: base parse instance
48  *
49  * Gives the pointer to the sink #GstPad object of the element.
50  */
51 #define GST_BASE_PARSE_SINK_PAD(obj)    (GST_BASE_PARSE_CAST (obj)->sinkpad)
52
53 /**
54  * GST_BASE_PARSE_FLOW_DROPPED:
55  *
56  * A #GstFlowReturn that can be returned from parse_frame to
57  * indicate that no output buffer was generated, or from pre_push_frame to
58  * to forego pushing buffer.
59  */
60 #define GST_BASE_PARSE_FLOW_DROPPED     GST_FLOW_CUSTOM_SUCCESS
61
62 /* not public API, use accessor macros below */
63 #define GST_BASE_PARSE_FLAG_LOST_SYNC (1 << 0)
64 #define GST_BASE_PARSE_FLAG_DRAINING  (1 << 1)
65
66 /**
67  * GST_BASE_PARSE_LOST_SYNC:
68  * @parse: base parse instance
69  *
70  * Obtains current sync status.
71  */
72 #define GST_BASE_PARSE_LOST_SYNC(parse) (!!(GST_BASE_PARSE_CAST(parse)->flags & GST_BASE_PARSE_FLAG_LOST_SYNC))
73
74 /**
75  * GST_BASE_PARSE_DRAINING:
76  * @parse: base parse instance
77  *
78  * Obtains current drain status (ie. whether EOS has been received and
79  * the parser is now processing the frames at the end of the stream)
80  */
81 #define GST_BASE_PARSE_DRAINING(parse)  (!!(GST_BASE_PARSE_CAST(parse)->flags & GST_BASE_PARSE_FLAG_DRAINING))
82
83 /**
84  * GstBaseParseFrameFlags:
85  * @GST_BASE_PARSE_FRAME_FLAG_NONE: no flag
86  * @GST_BASE_PARSE_FRAME_FLAG_NEW_FRAME: set by baseclass if current frame
87  *   is passed for processing to the subclass for the first time
88  *   (and not set on subsequent calls with same data).
89  * @GST_BASE_PARSE_FRAME_FLAG_NO_FRAME: set to indicate this buffer should not be
90  *   counted as frame, e.g. if this frame is dependent on a previous one.
91  *   As it is not counted as a frame, bitrate increases but frame to time
92  *   conversions are maintained.
93  * @GST_BASE_PARSE_FRAME_FLAG_CLIP: @pre_push_frame can set this to indicate
94  *    that regular segment clipping can still be performed (as opposed to
95  *    any custom one having been done).
96  * @GST_BASE_PARSE_FRAME_FLAG_DROP: indicates to @finish_frame that the
97  *    the frame should be dropped (and might be handled internall by subclass)
98  * @GST_BASE_PARSE_FRAME_FLAG_QUEUE: indicates to @finish_frame that the
99  *    the frame should be queued for now and processed fully later
100  *    when the first non-queued frame is finished
101  *
102  * Flags to be used in a #GstBaseParseFrame.
103  */
104 typedef enum {
105   GST_BASE_PARSE_FRAME_FLAG_NONE         = 0,
106   GST_BASE_PARSE_FRAME_FLAG_NEW_FRAME    = (1 << 0),
107   GST_BASE_PARSE_FRAME_FLAG_NO_FRAME     = (1 << 1),
108   GST_BASE_PARSE_FRAME_FLAG_CLIP         = (1 << 2),
109   GST_BASE_PARSE_FRAME_FLAG_DROP         = (1 << 3),
110   GST_BASE_PARSE_FRAME_FLAG_QUEUE        = (1 << 4)
111 } GstBaseParseFrameFlags;
112
113 /**
114  * GstBaseParseFrame:
115  * @buffer: input data to be parsed for frames.
116  * @out_buffer: (optional) (replacement) output data.
117  * @offset: media specific offset of input frame
118  *   Note that a converter may have a different one on the frame's buffer.
119  * @overhead: subclass can set this to indicates the metadata overhead
120  *   for the given frame, which is then used to enable more accurate bitrate
121  *   computations. If this is -1, it is assumed that this frame should be
122  *   skipped in bitrate calculation.
123  * @flags: a combination of input and output #GstBaseParseFrameFlags that
124  *  convey additional context to subclass or allow subclass to tune
125  *  subsequent #GstBaseParse actions.
126  *
127  * Frame (context) data passed to each frame parsing virtual methods.  In
128  * addition to providing the data to be checked for a valid frame or an already
129  * identified frame, it conveys additional metadata or control information
130  * from and to the subclass w.r.t. the particular frame in question (rather
131  * than global parameters).  Some of these may apply to each parsing stage, others
132  * only to some a particular one.  These parameters are effectively zeroed at start
133  * of each frame's processing, i.e. parsing virtual method invocation sequence.
134  */
135 typedef struct {
136   GstBuffer * buffer;
137   GstBuffer * out_buffer;
138   guint       flags;
139   guint64     offset;
140   gint        overhead;
141   /*< private >*/
142   gint        size;
143   guint       _gst_reserved_i[2];
144   gpointer    _gst_reserved_p[2];
145   guint       _private_flags;
146 } GstBaseParseFrame;
147
148 typedef struct _GstBaseParse GstBaseParse;
149 typedef struct _GstBaseParseClass GstBaseParseClass;
150 typedef struct _GstBaseParsePrivate GstBaseParsePrivate;
151
152 /**
153  * GstBaseParse:
154  * @element: the parent element.
155  *
156  * The opaque #GstBaseParse data structure.
157  */
158 struct _GstBaseParse {
159   GstElement     element;
160
161   /*< protected >*/
162   /* source and sink pads */
163   GstPad         *sinkpad;
164   GstPad         *srcpad;
165
166   guint           flags;
167
168   /* MT-protected (with STREAM_LOCK) */
169   GstSegment      segment;
170
171   /*< private >*/
172   gpointer       _gst_reserved[GST_PADDING_LARGE];
173   GstBaseParsePrivate *priv;
174 };
175
176 /**
177  * GstBaseParseClass:
178  * @parent_class: the parent class
179  * @start:          Optional.
180  *                  Called when the element starts processing.
181  *                  Allows opening external resources.
182  * @stop:           Optional.
183  *                  Called when the element stops processing.
184  *                  Allows closing external resources.
185  * @set_sink_caps:  allows the subclass to be notified of the actual caps set.
186  * @get_sink_caps:  allows the subclass to do its own sink get caps if needed.
187  * @handle_frame:   Parses the input data into valid frames as defined by subclass
188  *                  which should be passed to gst_base_parse_finish_frame().
189  *                  The frame's input buffer is guaranteed writable,
190  *                  whereas the input frame ownership is held by caller
191  *                  (so subclass should make a copy if it needs to hang on).
192  *                  Input buffer (data) is provided by baseclass with as much
193  *                  metadata set as possible by baseclass according to upstream
194  *                  information and/or subclass settings,
195  *                  though subclass may still set buffer timestamp and duration
196  *                  if desired.
197  * @convert:        Optional.
198  *                  Convert between formats.
199  * @sink_event:     Optional.
200  *                  Event handler on the sink pad. This function should chain
201  *                  up to the parent implementation to let the default handler
202  *                  run.
203  * @src_event:      Optional.
204  *                  Event handler on the source pad. Should chain up to the
205  *                  parent to let the default handler run.
206  * @pre_push_frame: Optional.
207  *                   Called just prior to pushing a frame (after any pending
208  *                   events have been sent) to give subclass a chance to perform
209  *                   additional actions at this time (e.g. tag sending) or to
210  *                   decide whether this buffer should be dropped or not
211  *                   (e.g. custom segment clipping).
212  * @detect:         Optional.
213  *                   Called until it doesn't return GST_FLOW_OK anymore for
214  *                   the first buffers. Can be used by the subclass to detect
215  *                   the stream format.
216  * @sink_query:     Optional.
217  *                   Query handler on the sink pad. This function should chain
218  *                   up to the parent implementation to let the default handler
219  *                   run (Since 1.2)
220  * @src_query:      Optional.
221  *                   Query handler on the source pad. Should chain up to the
222  *                   parent to let the default handler run (Since 1.2)
223  *
224  * Subclasses can override any of the available virtual methods or not, as
225  * needed. At minimum @check_valid_frame and @parse_frame needs to be
226  * overridden.
227  */
228 struct _GstBaseParseClass {
229   GstElementClass parent_class;
230
231   /*< public >*/
232   /* virtual methods for subclasses */
233
234   gboolean      (*start)              (GstBaseParse * parse);
235
236   gboolean      (*stop)               (GstBaseParse * parse);
237
238   gboolean      (*set_sink_caps)      (GstBaseParse * parse,
239                                        GstCaps      * caps);
240
241   GstFlowReturn (*handle_frame)       (GstBaseParse      * parse,
242                                        GstBaseParseFrame * frame,
243                                        gint              * skipsize);
244
245   GstFlowReturn (*pre_push_frame)     (GstBaseParse      * parse,
246                                        GstBaseParseFrame * frame);
247
248   gboolean      (*convert)            (GstBaseParse * parse,
249                                        GstFormat      src_format,
250                                        gint64         src_value,
251                                        GstFormat      dest_format,
252                                        gint64       * dest_value);
253
254   gboolean      (*sink_event)         (GstBaseParse * parse,
255                                        GstEvent     * event);
256
257   gboolean      (*src_event)          (GstBaseParse * parse,
258                                        GstEvent     * event);
259
260   GstCaps *     (*get_sink_caps)      (GstBaseParse * parse,
261                                        GstCaps      * filter);
262
263   GstFlowReturn (*detect)             (GstBaseParse * parse,
264                                        GstBuffer    * buffer);
265
266   gboolean      (*sink_query)         (GstBaseParse * parse,
267                                        GstQuery     * query);
268
269   gboolean      (*src_query)          (GstBaseParse * parse,
270                                        GstQuery     * query);
271
272   /*< private >*/
273   gpointer       _gst_reserved[GST_PADDING_LARGE - 2];
274 };
275
276 GType           gst_base_parse_get_type (void);
277
278 GType           gst_base_parse_frame_get_type (void);
279
280 GstBaseParseFrame * gst_base_parse_frame_new  (GstBuffer              * buffer,
281                                                GstBaseParseFrameFlags   flags,
282                                                gint                     overhead);
283
284 void            gst_base_parse_frame_init      (GstBaseParseFrame * frame);
285
286 void            gst_base_parse_frame_free      (GstBaseParseFrame * frame);
287
288 GstFlowReturn   gst_base_parse_push_frame      (GstBaseParse      * parse,
289                                                 GstBaseParseFrame * frame);
290
291 GstFlowReturn   gst_base_parse_finish_frame    (GstBaseParse * parse,
292                                                 GstBaseParseFrame * frame,
293                                                 gint size);
294
295 void            gst_base_parse_set_duration    (GstBaseParse      * parse,
296                                                 GstFormat           fmt,
297                                                 gint64              duration,
298                                                 gint                interval);
299
300 void            gst_base_parse_set_average_bitrate (GstBaseParse   * parse,
301                                                     guint            bitrate);
302
303 void            gst_base_parse_set_min_frame_size (GstBaseParse    * parse,
304                                                    guint             min_size);
305
306 void            gst_base_parse_set_has_timing_info (GstBaseParse   * parse,
307                                                     gboolean         has_timing);
308
309 void            gst_base_parse_set_syncable    (GstBaseParse * parse,
310                                                 gboolean       syncable);
311
312 void            gst_base_parse_set_passthrough (GstBaseParse * parse,
313                                                 gboolean       passthrough);
314
315 void            gst_base_parse_set_pts_interpolation (GstBaseParse * parse,
316                                                       gboolean pts_interpolate);
317
318 void            gst_base_parse_set_frame_rate  (GstBaseParse * parse,
319                                                 guint          fps_num,
320                                                 guint          fps_den,
321                                                 guint          lead_in,
322                                                 guint          lead_out);
323
324 void            gst_base_parse_set_latency     (GstBaseParse * parse,
325                                                 GstClockTime min_latency,
326                                                 GstClockTime max_latency);
327
328 gboolean        gst_base_parse_convert_default (GstBaseParse * parse,
329                                                 GstFormat      src_format,
330                                                 gint64         src_value,
331                                                 GstFormat      dest_format,
332                                                 gint64       * dest_value);
333
334 gboolean        gst_base_parse_add_index_entry (GstBaseParse * parse,
335                                                 guint64        offset,
336                                                 GstClockTime   ts,
337                                                 gboolean       key,
338                                                 gboolean       force);
339
340 void            gst_base_parse_set_ts_at_offset (GstBaseParse *parse,
341                                                  gsize offset);
342
343 G_END_DECLS
344
345 #endif /* __GST_BASE_PARSE_H__ */