c9a57c5737cd82b35a5248d5858739db23693589
[platform/upstream/gstreamer.git] / libs / gst / base / gstbaseparse.c
1 /* GStreamer
2  * Copyright (C) 2008 Nokia Corporation. All rights reserved.
3  *   Contact: Stefan Kost <stefan.kost@nokia.com>
4  * Copyright (C) 2008 Sebastian Dröge <sebastian.droege@collabora.co.uk>.
5  * Copyright (C) 2011, Hewlett-Packard Development Company, L.P.
6  *   Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>, Collabora Ltd.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 /**
25  * SECTION:gstbaseparse
26  * @short_description: Base class for stream parsers
27  * @see_also: #GstBaseTransform
28  *
29  * This base class is for parser elements that process data and splits it
30  * into separate audio/video/whatever frames.
31  *
32  * It provides for:
33  * <itemizedlist>
34  *   <listitem><para>provides one sink pad and one source pad</para></listitem>
35  *   <listitem><para>handles state changes</para></listitem>
36  *   <listitem><para>can operate in pull mode or push mode</para></listitem>
37  *   <listitem><para>handles seeking in both modes</para></listitem>
38  *   <listitem><para>handles events (SEGMENT/EOS/FLUSH)</para></listitem>
39  *   <listitem><para>
40  *        handles queries (POSITION/DURATION/SEEKING/FORMAT/CONVERT)
41  *   </para></listitem>
42  *   <listitem><para>handles flushing</para></listitem>
43  * </itemizedlist>
44  *
45  * The purpose of this base class is to provide the basic functionality of
46  * a parser and share a lot of rather complex code.
47  *
48  * Description of the parsing mechanism:
49  * <orderedlist>
50  * <listitem>
51  *   <itemizedlist><title>Set-up phase</title>
52  *   <listitem><para>
53  *     #GstBaseParse calls @start to inform subclass that data processing is
54  *     about to start now.
55  *   </para></listitem>
56  *   <listitem><para>
57  *     #GstBaseParse class calls @set_sink_caps to inform the subclass about
58  *     incoming sinkpad caps. Subclass could already set the srcpad caps
59  *     accordingly, but this might be delayed until calling
60  *     gst_base_parse_finish_frame() with a non-queued frame.
61  *   </para></listitem>
62  *   <listitem><para>
63  *      At least at this point subclass needs to tell the #GstBaseParse class
64  *      how big data chunks it wants to receive (min_frame_size). It can do
65  *      this with gst_base_parse_set_min_frame_size().
66  *   </para></listitem>
67  *   <listitem><para>
68  *      #GstBaseParse class sets up appropriate data passing mode (pull/push)
69  *      and starts to process the data.
70  *   </para></listitem>
71  *   </itemizedlist>
72  * </listitem>
73  * <listitem>
74  *   <itemizedlist>
75  *   <title>Parsing phase</title>
76  *     <listitem><para>
77  *       #GstBaseParse gathers at least min_frame_size bytes of data either
78  *       by pulling it from upstream or collecting buffers in an internal
79  *       #GstAdapter.
80  *     </para></listitem>
81  *     <listitem><para>
82  *       A buffer of (at least) min_frame_size bytes is passed to subclass with
83  *       @handle_frame. Subclass checks the contents and can optionally
84  *       return GST_FLOW_OK along with an amount of data to be skipped to find
85  *       a valid frame (which will result in a subsequent DISCONT).
86  *       If, otherwise, the buffer does not hold a complete frame,
87  *       @handle_frame can merely return and will be called again when additional
88  *       data is available.  In push mode this amounts to an
89  *       additional input buffer (thus minimal additional latency), in pull mode
90  *       this amounts to some arbitrary reasonable buffer size increase.
91  *       Of course, gst_base_parse_set_min_frame_size() could also be used if a
92  *       very specific known amount of additional data is required.
93  *       If, however, the buffer holds a complete valid frame, it can pass
94  *       the size of this frame to gst_base_parse_finish_frame().
95  *       If acting as a converter, it can also merely indicate consumed input data
96  *       while simultaneously providing custom output data.
97  *       Note that baseclass performs some processing (such as tracking
98  *       overall consumed data rate versus duration) for each finished frame,
99  *       but other state is only updated upon each call to @handle_frame
100  *       (such as tracking upstream input timestamp).
101  *       </para><para>
102  *       Subclass is also responsible for setting the buffer metadata
103  *       (e.g. buffer timestamp and duration, or keyframe if applicable).
104  *       (although the latter can also be done by #GstBaseParse if it is
105  *       appropriately configured, see below).  Frame is provided with
106  *       timestamp derived from upstream (as much as generally possible),
107  *       duration obtained from configuration (see below), and offset
108  *       if meaningful (in pull mode).
109  *       </para><para>
110  *       Note that @check_valid_frame might receive any small
111  *       amount of input data when leftover data is being drained (e.g. at EOS).
112  *     </para></listitem>
113  *     <listitem><para>
114  *       As part of finish frame processing,
115  *       just prior to actually pushing the buffer in question,
116  *       it is passed to @pre_push_frame which gives subclass yet one
117  *       last chance to examine buffer metadata, or to send some custom (tag)
118  *       events, or to perform custom (segment) filtering.
119  *     </para></listitem>
120  *     <listitem><para>
121  *       During the parsing process #GstBaseParseClass will handle both srcpad
122  *       and sinkpad events. They will be passed to subclass if @event or
123  *       @src_event callbacks have been provided.
124  *     </para></listitem>
125  *   </itemizedlist>
126  * </listitem>
127  * <listitem>
128  *   <itemizedlist><title>Shutdown phase</title>
129  *   <listitem><para>
130  *     #GstBaseParse class calls @stop to inform the subclass that data
131  *     parsing will be stopped.
132  *   </para></listitem>
133  *   </itemizedlist>
134  * </listitem>
135  * </orderedlist>
136  *
137  * Subclass is responsible for providing pad template caps for
138  * source and sink pads. The pads need to be named "sink" and "src". It also
139  * needs to set the fixed caps on srcpad, when the format is ensured (e.g.
140  * when base class calls subclass' @set_sink_caps function).
141  *
142  * This base class uses %GST_FORMAT_DEFAULT as a meaning of frames. So,
143  * subclass conversion routine needs to know that conversion from
144  * %GST_FORMAT_TIME to %GST_FORMAT_DEFAULT must return the
145  * frame number that can be found from the given byte position.
146  *
147  * #GstBaseParse uses subclasses conversion methods also for seeking (or
148  * otherwise uses its own default one, see also below).
149  *
150  * Subclass @start and @stop functions will be called to inform the beginning
151  * and end of data processing.
152  *
153  * Things that subclass need to take care of:
154  * <itemizedlist>
155  *   <listitem><para>Provide pad templates</para></listitem>
156  *   <listitem><para>
157  *      Fixate the source pad caps when appropriate
158  *   </para></listitem>
159  *   <listitem><para>
160  *      Inform base class how big data chunks should be retrieved. This is
161  *      done with gst_base_parse_set_min_frame_size() function.
162  *   </para></listitem>
163  *   <listitem><para>
164  *      Examine data chunks passed to subclass with @handle_frame and pass
165  *      proper frame(s) to gst_base_parse_finish_frame(), and setting src pad
166  *      caps and timestamps on frame.
167  *   </para></listitem>
168  *   <listitem><para>Provide conversion functions</para></listitem>
169  *   <listitem><para>
170  *      Update the duration information with gst_base_parse_set_duration()
171  *   </para></listitem>
172  *   <listitem><para>
173  *      Optionally passthrough using gst_base_parse_set_passthrough()
174  *   </para></listitem>
175  *   <listitem><para>
176  *      Configure various baseparse parameters using
177  *      gst_base_parse_set_average_bitrate(), gst_base_parse_set_syncable()
178  *      and gst_base_parse_set_frame_rate().
179  *   </para></listitem>
180  *   <listitem><para>
181  *      In particular, if subclass is unable to determine a duration, but
182  *      parsing (or specs) yields a frames per seconds rate, then this can be
183  *      provided to #GstBaseParse to enable it to cater for
184  *      buffer time metadata (which will be taken from upstream as much as
185  *      possible). Internally keeping track of frame durations and respective
186  *      sizes that have been pushed provides #GstBaseParse with an estimated
187  *      bitrate. A default @convert (used if not overridden) will then use these
188  *      rates to perform obvious conversions.  These rates are also used to
189  *      update (estimated) duration at regular frame intervals.
190  *   </para></listitem>
191  * </itemizedlist>
192  *
193  */
194
195 /* TODO:
196  *  - In push mode provide a queue of adapter-"queued" buffers for upstream
197  *    buffer metadata
198  *  - Queue buffers/events until caps are set
199  */
200
201 #ifdef HAVE_CONFIG_H
202 #  include "config.h"
203 #endif
204
205 #include <stdlib.h>
206 #include <string.h>
207
208 #include <gst/base/gstadapter.h>
209
210 #include "gstbaseparse.h"
211
212 /* FIXME: get rid of old GstIndex code */
213 #include "gstindex.h"
214 #include "gstindex.c"
215 #include "gstmemindex.c"
216
217 #define GST_BASE_PARSE_FRAME_PRIVATE_FLAG_NOALLOC  (1 << 0)
218
219 #define MIN_FRAMES_TO_POST_BITRATE 10
220 #define TARGET_DIFFERENCE          (20 * GST_SECOND)
221 #define MAX_INDEX_ENTRIES          4096
222
223 GST_DEBUG_CATEGORY_STATIC (gst_base_parse_debug);
224 #define GST_CAT_DEFAULT gst_base_parse_debug
225
226 /* Supported formats */
227 static const GstFormat fmtlist[] = {
228   GST_FORMAT_DEFAULT,
229   GST_FORMAT_BYTES,
230   GST_FORMAT_TIME,
231   GST_FORMAT_UNDEFINED
232 };
233
234 #define GST_BASE_PARSE_GET_PRIVATE(obj)  \
235     (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_BASE_PARSE, GstBaseParsePrivate))
236
237 struct _GstBaseParsePrivate
238 {
239   GstPadMode pad_mode;
240
241   GstAdapter *adapter;
242
243   gint64 duration;
244   GstFormat duration_fmt;
245   gint64 estimated_duration;
246   gint64 estimated_drift;
247
248   guint min_frame_size;
249   gboolean disable_passthrough;
250   gboolean passthrough;
251   gboolean pts_interpolate;
252   gboolean infer_ts;
253   gboolean syncable;
254   gboolean has_timing_info;
255   guint fps_num, fps_den;
256   gint update_interval;
257   guint bitrate;
258   guint lead_in, lead_out;
259   GstClockTime lead_in_ts, lead_out_ts;
260   GstClockTime min_latency, max_latency;
261
262   gboolean discont;
263   gboolean flushing;
264   gboolean drain;
265   gboolean saw_gaps;
266
267   gint64 offset;
268   gint64 sync_offset;
269   GstClockTime next_pts;
270   GstClockTime next_dts;
271   GstClockTime prev_pts;
272   GstClockTime prev_dts;
273   GstClockTime frame_duration;
274   gboolean seen_keyframe;
275   gboolean is_video;
276   gint flushed;
277
278   guint64 framecount;
279   guint64 bytecount;
280   guint64 data_bytecount;
281   guint64 acc_duration;
282   GstClockTime first_frame_pts;
283   GstClockTime first_frame_dts;
284   gint64 first_frame_offset;
285
286   gboolean post_min_bitrate;
287   gboolean post_avg_bitrate;
288   gboolean post_max_bitrate;
289
290   guint min_bitrate;
291   guint avg_bitrate;
292   guint max_bitrate;
293   guint posted_avg_bitrate;
294
295   /* frames/buffers that are queued and ready to go on OK */
296   GQueue queued_frames;
297
298   GstBuffer *cache;
299
300   /* index entry storage, either ours or provided */
301   GstIndex *index;
302   gint index_id;
303   gboolean own_index;
304   GMutex index_lock;
305
306   /* seek table entries only maintained if upstream is BYTE seekable */
307   gboolean upstream_seekable;
308   gboolean upstream_has_duration;
309   gint64 upstream_size;
310   GstFormat upstream_format;
311   /* minimum distance between two index entries */
312   GstClockTimeDiff idx_interval;
313   guint64 idx_byte_interval;
314   /* ts and offset of last entry added */
315   GstClockTime index_last_ts;
316   gint64 index_last_offset;
317   gboolean index_last_valid;
318
319   /* timestamps currently produced are accurate, e.g. started from 0 onwards */
320   gboolean exact_position;
321   /* seek events are temporarily kept to match them with newsegments */
322   GSList *pending_seeks;
323
324   /* reverse playback */
325   GSList *buffers_pending;
326   GSList *buffers_head;
327   GSList *buffers_queued;
328   GSList *buffers_send;
329   GstClockTime last_pts;
330   GstClockTime last_dts;
331   gint64 last_offset;
332
333   /* Pending serialized events */
334   GList *pending_events;
335
336   /* If baseparse has checked the caps to identify if it is
337    * handling video or audio */
338   gboolean checked_media;
339
340   /* offset of last parsed frame/data */
341   gint64 prev_offset;
342   /* force a new frame, regardless of offset */
343   gboolean new_frame;
344   /* whether we are merely scanning for a frame */
345   gboolean scanning;
346   /* ... and resulting frame, if any */
347   GstBaseParseFrame *scanned_frame;
348
349   /* TRUE if we're still detecting the format, i.e.
350    * if ::detect() is still called for future buffers */
351   gboolean detecting;
352   GList *detect_buffers;
353   guint detect_buffers_size;
354
355   /* True when no buffers have been received yet */
356   gboolean first_buffer;
357
358   /* if TRUE, a STREAM_START event needs to be pushed */
359   gboolean push_stream_start;
360
361   /* When we need to skip more data than we have currently */
362   guint skip;
363
364   /* Tag handling (stream tags only, global tags are passed through as-is) */
365   GstTagList *upstream_tags;
366   GstTagList *parser_tags;
367   GstTagMergeMode parser_tags_merge_mode;
368   gboolean tags_changed;
369 };
370
371 typedef struct _GstBaseParseSeek
372 {
373   GstSegment segment;
374   gboolean accurate;
375   gint64 offset;
376   GstClockTime start_ts;
377 } GstBaseParseSeek;
378
379 #define DEFAULT_DISABLE_PASSTHROUGH        FALSE
380
381 enum
382 {
383   PROP_0,
384   PROP_DISABLE_PASSTHROUGH,
385   PROP_LAST
386 };
387
388 #define GST_BASE_PARSE_INDEX_LOCK(parse) \
389   g_mutex_lock (&parse->priv->index_lock);
390 #define GST_BASE_PARSE_INDEX_UNLOCK(parse) \
391   g_mutex_unlock (&parse->priv->index_lock);
392
393 static GstElementClass *parent_class = NULL;
394
395 static void gst_base_parse_class_init (GstBaseParseClass * klass);
396 static void gst_base_parse_init (GstBaseParse * parse,
397     GstBaseParseClass * klass);
398
399 GType
400 gst_base_parse_get_type (void)
401 {
402   static volatile gsize base_parse_type = 0;
403
404   if (g_once_init_enter (&base_parse_type)) {
405     static const GTypeInfo base_parse_info = {
406       sizeof (GstBaseParseClass),
407       (GBaseInitFunc) NULL,
408       (GBaseFinalizeFunc) NULL,
409       (GClassInitFunc) gst_base_parse_class_init,
410       NULL,
411       NULL,
412       sizeof (GstBaseParse),
413       0,
414       (GInstanceInitFunc) gst_base_parse_init,
415     };
416     GType _type;
417
418     _type = g_type_register_static (GST_TYPE_ELEMENT,
419         "GstBaseParse", &base_parse_info, G_TYPE_FLAG_ABSTRACT);
420     g_once_init_leave (&base_parse_type, _type);
421   }
422   return (GType) base_parse_type;
423 }
424
425 static void gst_base_parse_finalize (GObject * object);
426
427 static GstStateChangeReturn gst_base_parse_change_state (GstElement * element,
428     GstStateChange transition);
429 static void gst_base_parse_reset (GstBaseParse * parse);
430
431 #if 0
432 static void gst_base_parse_set_index (GstElement * element, GstIndex * index);
433 static GstIndex *gst_base_parse_get_index (GstElement * element);
434 #endif
435
436 static gboolean gst_base_parse_sink_activate (GstPad * sinkpad,
437     GstObject * parent);
438 static gboolean gst_base_parse_sink_activate_mode (GstPad * pad,
439     GstObject * parent, GstPadMode mode, gboolean active);
440 static gboolean gst_base_parse_handle_seek (GstBaseParse * parse,
441     GstEvent * event);
442 static void gst_base_parse_set_upstream_tags (GstBaseParse * parse,
443     GstTagList * taglist);
444
445 static void gst_base_parse_set_property (GObject * object, guint prop_id,
446     const GValue * value, GParamSpec * pspec);
447 static void gst_base_parse_get_property (GObject * object, guint prop_id,
448     GValue * value, GParamSpec * pspec);
449
450 static gboolean gst_base_parse_src_event (GstPad * pad, GstObject * parent,
451     GstEvent * event);
452 static gboolean gst_base_parse_src_query (GstPad * pad, GstObject * parent,
453     GstQuery * query);
454
455 static gboolean gst_base_parse_sink_event (GstPad * pad, GstObject * parent,
456     GstEvent * event);
457 static gboolean gst_base_parse_sink_query (GstPad * pad, GstObject * parent,
458     GstQuery * query);
459
460 static GstFlowReturn gst_base_parse_chain (GstPad * pad, GstObject * parent,
461     GstBuffer * buffer);
462 static void gst_base_parse_loop (GstPad * pad);
463
464 static GstFlowReturn gst_base_parse_parse_frame (GstBaseParse * parse,
465     GstBaseParseFrame * frame);
466
467 static gboolean gst_base_parse_sink_event_default (GstBaseParse * parse,
468     GstEvent * event);
469
470 static gboolean gst_base_parse_src_event_default (GstBaseParse * parse,
471     GstEvent * event);
472
473 static gboolean gst_base_parse_sink_query_default (GstBaseParse * parse,
474     GstQuery * query);
475 static gboolean gst_base_parse_src_query_default (GstBaseParse * parse,
476     GstQuery * query);
477
478 static void gst_base_parse_drain (GstBaseParse * parse);
479
480 static gint64 gst_base_parse_find_offset (GstBaseParse * parse,
481     GstClockTime time, gboolean before, GstClockTime * _ts);
482 static GstFlowReturn gst_base_parse_locate_time (GstBaseParse * parse,
483     GstClockTime * _time, gint64 * _offset);
484
485 static GstFlowReturn gst_base_parse_start_fragment (GstBaseParse * parse);
486 static GstFlowReturn gst_base_parse_finish_fragment (GstBaseParse * parse,
487     gboolean prev_head);
488 static GstFlowReturn gst_base_parse_send_buffers (GstBaseParse * parse);
489
490 static inline GstFlowReturn gst_base_parse_check_sync (GstBaseParse * parse);
491
492 static gboolean gst_base_parse_is_seekable (GstBaseParse * parse);
493
494 static void gst_base_parse_push_pending_events (GstBaseParse * parse);
495
496 static void
497 gst_base_parse_clear_queues (GstBaseParse * parse)
498 {
499   g_slist_foreach (parse->priv->buffers_queued, (GFunc) gst_buffer_unref, NULL);
500   g_slist_free (parse->priv->buffers_queued);
501   parse->priv->buffers_queued = NULL;
502   g_slist_foreach (parse->priv->buffers_pending, (GFunc) gst_buffer_unref,
503       NULL);
504   g_slist_free (parse->priv->buffers_pending);
505   parse->priv->buffers_pending = NULL;
506   g_slist_foreach (parse->priv->buffers_head, (GFunc) gst_buffer_unref, NULL);
507   g_slist_free (parse->priv->buffers_head);
508   parse->priv->buffers_head = NULL;
509   g_slist_foreach (parse->priv->buffers_send, (GFunc) gst_buffer_unref, NULL);
510   g_slist_free (parse->priv->buffers_send);
511   parse->priv->buffers_send = NULL;
512
513   g_list_foreach (parse->priv->detect_buffers, (GFunc) gst_buffer_unref, NULL);
514   g_list_free (parse->priv->detect_buffers);
515   parse->priv->detect_buffers = NULL;
516   parse->priv->detect_buffers_size = 0;
517
518   g_queue_foreach (&parse->priv->queued_frames,
519       (GFunc) gst_base_parse_frame_free, NULL);
520   g_queue_clear (&parse->priv->queued_frames);
521
522   gst_buffer_replace (&parse->priv->cache, NULL);
523
524   g_list_foreach (parse->priv->pending_events, (GFunc) gst_event_unref, NULL);
525   g_list_free (parse->priv->pending_events);
526   parse->priv->pending_events = NULL;
527
528   parse->priv->checked_media = FALSE;
529 }
530
531 static void
532 gst_base_parse_finalize (GObject * object)
533 {
534   GstBaseParse *parse = GST_BASE_PARSE (object);
535
536   g_object_unref (parse->priv->adapter);
537
538   if (parse->priv->index) {
539     gst_object_unref (parse->priv->index);
540     parse->priv->index = NULL;
541   }
542   g_mutex_clear (&parse->priv->index_lock);
543
544   gst_base_parse_clear_queues (parse);
545
546   G_OBJECT_CLASS (parent_class)->finalize (object);
547 }
548
549 static void
550 gst_base_parse_class_init (GstBaseParseClass * klass)
551 {
552   GObjectClass *gobject_class;
553   GstElementClass *gstelement_class;
554
555   gobject_class = G_OBJECT_CLASS (klass);
556   g_type_class_add_private (klass, sizeof (GstBaseParsePrivate));
557   parent_class = g_type_class_peek_parent (klass);
558
559   gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_base_parse_finalize);
560   gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_base_parse_set_property);
561   gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_base_parse_get_property);
562
563   /**
564    * GstBaseParse:disable-passthrough:
565    *
566    * If set to %TRUE, baseparse will unconditionally force parsing of the
567    * incoming data. This can be required in the rare cases where the incoming
568    * side-data (caps, pts, dts, ...) is not trusted by the user and wants to
569    * force validation and parsing of the incoming data.
570    * If set to %FALSE, decision of whether to parse the data or not is up to
571    * the implementation (standard behaviour).
572    */
573   g_object_class_install_property (gobject_class, PROP_DISABLE_PASSTHROUGH,
574       g_param_spec_boolean ("disable-passthrough", "Disable passthrough",
575           "Force processing (disables passthrough)",
576           DEFAULT_DISABLE_PASSTHROUGH,
577           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
578
579   gstelement_class = (GstElementClass *) klass;
580   gstelement_class->change_state =
581       GST_DEBUG_FUNCPTR (gst_base_parse_change_state);
582
583 #if 0
584   gstelement_class->set_index = GST_DEBUG_FUNCPTR (gst_base_parse_set_index);
585   gstelement_class->get_index = GST_DEBUG_FUNCPTR (gst_base_parse_get_index);
586 #endif
587
588   /* Default handlers */
589   klass->sink_event = gst_base_parse_sink_event_default;
590   klass->src_event = gst_base_parse_src_event_default;
591   klass->sink_query = gst_base_parse_sink_query_default;
592   klass->src_query = gst_base_parse_src_query_default;
593   klass->convert = gst_base_parse_convert_default;
594
595   GST_DEBUG_CATEGORY_INIT (gst_base_parse_debug, "baseparse", 0,
596       "baseparse element");
597 }
598
599 static void
600 gst_base_parse_init (GstBaseParse * parse, GstBaseParseClass * bclass)
601 {
602   GstPadTemplate *pad_template;
603
604   GST_DEBUG_OBJECT (parse, "gst_base_parse_init");
605
606   parse->priv = GST_BASE_PARSE_GET_PRIVATE (parse);
607
608   pad_template =
609       gst_element_class_get_pad_template (GST_ELEMENT_CLASS (bclass), "sink");
610   g_return_if_fail (pad_template != NULL);
611   parse->sinkpad = gst_pad_new_from_template (pad_template, "sink");
612   gst_pad_set_event_function (parse->sinkpad,
613       GST_DEBUG_FUNCPTR (gst_base_parse_sink_event));
614   gst_pad_set_query_function (parse->sinkpad,
615       GST_DEBUG_FUNCPTR (gst_base_parse_sink_query));
616   gst_pad_set_chain_function (parse->sinkpad,
617       GST_DEBUG_FUNCPTR (gst_base_parse_chain));
618   gst_pad_set_activate_function (parse->sinkpad,
619       GST_DEBUG_FUNCPTR (gst_base_parse_sink_activate));
620   gst_pad_set_activatemode_function (parse->sinkpad,
621       GST_DEBUG_FUNCPTR (gst_base_parse_sink_activate_mode));
622   GST_PAD_SET_PROXY_ALLOCATION (parse->sinkpad);
623   gst_element_add_pad (GST_ELEMENT (parse), parse->sinkpad);
624
625   GST_DEBUG_OBJECT (parse, "sinkpad created");
626
627   pad_template =
628       gst_element_class_get_pad_template (GST_ELEMENT_CLASS (bclass), "src");
629   g_return_if_fail (pad_template != NULL);
630   parse->srcpad = gst_pad_new_from_template (pad_template, "src");
631   gst_pad_set_event_function (parse->srcpad,
632       GST_DEBUG_FUNCPTR (gst_base_parse_src_event));
633   gst_pad_set_query_function (parse->srcpad,
634       GST_DEBUG_FUNCPTR (gst_base_parse_src_query));
635   gst_pad_use_fixed_caps (parse->srcpad);
636   gst_element_add_pad (GST_ELEMENT (parse), parse->srcpad);
637   GST_DEBUG_OBJECT (parse, "src created");
638
639   g_queue_init (&parse->priv->queued_frames);
640
641   parse->priv->adapter = gst_adapter_new ();
642
643   parse->priv->pad_mode = GST_PAD_MODE_NONE;
644
645   g_mutex_init (&parse->priv->index_lock);
646
647   /* init state */
648   gst_base_parse_reset (parse);
649   GST_DEBUG_OBJECT (parse, "init ok");
650
651   GST_OBJECT_FLAG_SET (parse, GST_ELEMENT_FLAG_INDEXABLE);
652
653   parse->priv->upstream_tags = NULL;
654   parse->priv->parser_tags = NULL;
655   parse->priv->parser_tags_merge_mode = GST_TAG_MERGE_APPEND;
656 }
657
658 static void
659 gst_base_parse_set_property (GObject * object, guint prop_id,
660     const GValue * value, GParamSpec * pspec)
661 {
662   GstBaseParse *parse = GST_BASE_PARSE (object);
663
664   switch (prop_id) {
665     case PROP_DISABLE_PASSTHROUGH:
666       parse->priv->disable_passthrough = g_value_get_boolean (value);
667       break;
668     default:
669       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
670       break;
671   }
672 }
673
674 static void
675 gst_base_parse_get_property (GObject * object, guint prop_id, GValue * value,
676     GParamSpec * pspec)
677 {
678   GstBaseParse *parse = GST_BASE_PARSE (object);
679
680   switch (prop_id) {
681     case PROP_DISABLE_PASSTHROUGH:
682       g_value_set_boolean (value, parse->priv->disable_passthrough);
683       break;
684     default:
685       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
686       break;
687   }
688 }
689
690 static GstBaseParseFrame *
691 gst_base_parse_frame_copy (GstBaseParseFrame * frame)
692 {
693   GstBaseParseFrame *copy;
694
695   copy = g_slice_dup (GstBaseParseFrame, frame);
696   copy->buffer = gst_buffer_ref (frame->buffer);
697   copy->_private_flags &= ~GST_BASE_PARSE_FRAME_PRIVATE_FLAG_NOALLOC;
698
699   GST_TRACE ("copied frame %p -> %p", frame, copy);
700
701   return copy;
702 }
703
704 void
705 gst_base_parse_frame_free (GstBaseParseFrame * frame)
706 {
707   GST_TRACE ("freeing frame %p", frame);
708
709   if (frame->buffer) {
710     gst_buffer_unref (frame->buffer);
711     frame->buffer = NULL;
712   }
713
714   if (!(frame->_private_flags & GST_BASE_PARSE_FRAME_PRIVATE_FLAG_NOALLOC)) {
715     g_slice_free (GstBaseParseFrame, frame);
716   } else {
717     memset (frame, 0, sizeof (*frame));
718   }
719 }
720
721 G_DEFINE_BOXED_TYPE (GstBaseParseFrame, gst_base_parse_frame,
722     (GBoxedCopyFunc) gst_base_parse_frame_copy,
723     (GBoxedFreeFunc) gst_base_parse_frame_free);
724
725 /**
726  * gst_base_parse_frame_init:
727  * @frame: #GstBaseParseFrame.
728  *
729  * Sets a #GstBaseParseFrame to initial state.  Currently this means
730  * all public fields are zero-ed and a private flag is set to make
731  * sure gst_base_parse_frame_free() only frees the contents but not
732  * the actual frame. Use this function to initialise a #GstBaseParseFrame
733  * allocated on the stack.
734  */
735 void
736 gst_base_parse_frame_init (GstBaseParseFrame * frame)
737 {
738   memset (frame, 0, sizeof (GstBaseParseFrame));
739   frame->_private_flags = GST_BASE_PARSE_FRAME_PRIVATE_FLAG_NOALLOC;
740   GST_TRACE ("inited frame %p", frame);
741 }
742
743 /**
744  * gst_base_parse_frame_new:
745  * @buffer: (transfer none): a #GstBuffer
746  * @flags: the flags
747  * @overhead: number of bytes in this frame which should be counted as
748  *     metadata overhead, ie. not used to calculate the average bitrate.
749  *     Set to -1 to mark the entire frame as metadata. If in doubt, set to 0.
750  *
751  * Allocates a new #GstBaseParseFrame. This function is mainly for bindings,
752  * elements written in C should usually allocate the frame on the stack and
753  * then use gst_base_parse_frame_init() to initialise it.
754  *
755  * Returns: a newly-allocated #GstBaseParseFrame. Free with
756  *     gst_base_parse_frame_free() when no longer needed.
757  */
758 GstBaseParseFrame *
759 gst_base_parse_frame_new (GstBuffer * buffer, GstBaseParseFrameFlags flags,
760     gint overhead)
761 {
762   GstBaseParseFrame *frame;
763
764   frame = g_slice_new0 (GstBaseParseFrame);
765   frame->buffer = gst_buffer_ref (buffer);
766
767   GST_TRACE ("created frame %p", frame);
768   return frame;
769 }
770
771 static inline void
772 gst_base_parse_update_flags (GstBaseParse * parse)
773 {
774   parse->flags = 0;
775
776   /* set flags one by one for clarity */
777   if (G_UNLIKELY (parse->priv->drain))
778     parse->flags |= GST_BASE_PARSE_FLAG_DRAINING;
779
780   /* losing sync is pretty much a discont (and vice versa), no ? */
781   if (G_UNLIKELY (parse->priv->discont))
782     parse->flags |= GST_BASE_PARSE_FLAG_LOST_SYNC;
783 }
784
785 static inline void
786 gst_base_parse_update_frame (GstBaseParse * parse, GstBaseParseFrame * frame)
787 {
788   if (G_UNLIKELY (parse->priv->discont)) {
789     GST_DEBUG_OBJECT (parse, "marking DISCONT");
790     GST_BUFFER_FLAG_SET (frame->buffer, GST_BUFFER_FLAG_DISCONT);
791   }
792
793   if (parse->priv->prev_offset != parse->priv->offset || parse->priv->new_frame) {
794     GST_LOG_OBJECT (parse, "marking as new frame");
795     frame->flags |= GST_BASE_PARSE_FRAME_FLAG_NEW_FRAME;
796   }
797
798   frame->offset = parse->priv->prev_offset = parse->priv->offset;
799 }
800
801 static void
802 gst_base_parse_reset (GstBaseParse * parse)
803 {
804   GST_OBJECT_LOCK (parse);
805   gst_segment_init (&parse->segment, GST_FORMAT_TIME);
806   parse->priv->duration = -1;
807   parse->priv->min_frame_size = 1;
808   parse->priv->discont = TRUE;
809   parse->priv->flushing = FALSE;
810   parse->priv->saw_gaps = FALSE;
811   parse->priv->offset = 0;
812   parse->priv->sync_offset = 0;
813   parse->priv->update_interval = -1;
814   parse->priv->fps_num = parse->priv->fps_den = 0;
815   parse->priv->frame_duration = GST_CLOCK_TIME_NONE;
816   parse->priv->lead_in = parse->priv->lead_out = 0;
817   parse->priv->lead_in_ts = parse->priv->lead_out_ts = 0;
818   parse->priv->bitrate = 0;
819   parse->priv->framecount = 0;
820   parse->priv->bytecount = 0;
821   parse->priv->acc_duration = 0;
822   parse->priv->first_frame_pts = GST_CLOCK_TIME_NONE;
823   parse->priv->first_frame_dts = GST_CLOCK_TIME_NONE;
824   parse->priv->first_frame_offset = -1;
825   parse->priv->estimated_duration = -1;
826   parse->priv->estimated_drift = 0;
827   parse->priv->next_pts = GST_CLOCK_TIME_NONE;
828   parse->priv->next_dts = 0;
829   parse->priv->syncable = TRUE;
830   parse->priv->disable_passthrough = DEFAULT_DISABLE_PASSTHROUGH;
831   parse->priv->passthrough = FALSE;
832   parse->priv->pts_interpolate = TRUE;
833   parse->priv->infer_ts = TRUE;
834   parse->priv->has_timing_info = FALSE;
835   parse->priv->min_bitrate = G_MAXUINT;
836   parse->priv->max_bitrate = 0;
837   parse->priv->avg_bitrate = 0;
838   parse->priv->posted_avg_bitrate = 0;
839
840   parse->priv->index_last_ts = GST_CLOCK_TIME_NONE;
841   parse->priv->index_last_offset = -1;
842   parse->priv->index_last_valid = TRUE;
843   parse->priv->upstream_seekable = FALSE;
844   parse->priv->upstream_size = 0;
845   parse->priv->upstream_has_duration = FALSE;
846   parse->priv->upstream_format = GST_FORMAT_UNDEFINED;
847   parse->priv->idx_interval = 0;
848   parse->priv->idx_byte_interval = 0;
849   parse->priv->exact_position = TRUE;
850   parse->priv->seen_keyframe = FALSE;
851   parse->priv->checked_media = FALSE;
852
853   parse->priv->last_dts = GST_CLOCK_TIME_NONE;
854   parse->priv->last_pts = GST_CLOCK_TIME_NONE;
855   parse->priv->last_offset = 0;
856
857   parse->priv->skip = 0;
858
859   g_list_foreach (parse->priv->pending_events, (GFunc) gst_mini_object_unref,
860       NULL);
861   g_list_free (parse->priv->pending_events);
862   parse->priv->pending_events = NULL;
863
864   if (parse->priv->cache) {
865     gst_buffer_unref (parse->priv->cache);
866     parse->priv->cache = NULL;
867   }
868
869   g_slist_foreach (parse->priv->pending_seeks, (GFunc) g_free, NULL);
870   g_slist_free (parse->priv->pending_seeks);
871   parse->priv->pending_seeks = NULL;
872
873   if (parse->priv->adapter)
874     gst_adapter_clear (parse->priv->adapter);
875
876   gst_base_parse_set_upstream_tags (parse, NULL);
877
878   if (parse->priv->parser_tags) {
879     gst_tag_list_unref (parse->priv->parser_tags);
880     parse->priv->parser_tags = NULL;
881   }
882   parse->priv->parser_tags_merge_mode = GST_TAG_MERGE_APPEND;
883
884   parse->priv->new_frame = TRUE;
885
886   parse->priv->first_buffer = TRUE;
887
888   g_list_foreach (parse->priv->detect_buffers, (GFunc) gst_buffer_unref, NULL);
889   g_list_free (parse->priv->detect_buffers);
890   parse->priv->detect_buffers = NULL;
891   parse->priv->detect_buffers_size = 0;
892   GST_OBJECT_UNLOCK (parse);
893 }
894
895 static gboolean
896 gst_base_parse_check_bitrate_tag (GstBaseParse * parse, const gchar * tag)
897 {
898   gboolean got_tag = FALSE;
899   guint n = 0;
900
901   if (parse->priv->upstream_tags != NULL)
902     got_tag = gst_tag_list_get_uint (parse->priv->upstream_tags, tag, &n);
903
904   if (!got_tag && parse->priv->parser_tags != NULL)
905     got_tag = gst_tag_list_get_uint (parse->priv->parser_tags, tag, &n);
906
907   return got_tag;
908 }
909
910 /* check if upstream or subclass tags contain bitrates already */
911 static void
912 gst_base_parse_check_bitrate_tags (GstBaseParse * parse)
913 {
914   parse->priv->post_min_bitrate =
915       !gst_base_parse_check_bitrate_tag (parse, GST_TAG_MINIMUM_BITRATE);
916   parse->priv->post_avg_bitrate =
917       !gst_base_parse_check_bitrate_tag (parse, GST_TAG_BITRATE);
918   parse->priv->post_max_bitrate =
919       !gst_base_parse_check_bitrate_tag (parse, GST_TAG_MAXIMUM_BITRATE);
920 }
921
922 /* Queues new tag event with the current combined state of the stream tags
923  * (i.e. upstream tags merged with subclass tags and current baseparse tags) */
924 static void
925 gst_base_parse_queue_tag_event_update (GstBaseParse * parse)
926 {
927   GstTagList *merged_tags;
928
929   GST_LOG_OBJECT (parse, "upstream : %" GST_PTR_FORMAT,
930       parse->priv->upstream_tags);
931   GST_LOG_OBJECT (parse, "parser   : %" GST_PTR_FORMAT,
932       parse->priv->parser_tags);
933   GST_LOG_OBJECT (parse, "mode     : %d", parse->priv->parser_tags_merge_mode);
934
935   merged_tags =
936       gst_tag_list_merge (parse->priv->upstream_tags, parse->priv->parser_tags,
937       parse->priv->parser_tags_merge_mode);
938
939   GST_DEBUG_OBJECT (parse, "merged   : %" GST_PTR_FORMAT, merged_tags);
940
941   if (merged_tags == NULL)
942     return;
943
944   if (gst_tag_list_is_empty (merged_tags)) {
945     gst_tag_list_unref (merged_tags);
946     return;
947   }
948
949   /* only add bitrate tags to non-empty taglists for now, and only if neither
950    * upstream tags nor the subclass sets the bitrate tag in question already */
951   if (parse->priv->min_bitrate != G_MAXUINT && parse->priv->post_min_bitrate) {
952     GST_LOG_OBJECT (parse, "adding min bitrate %u", parse->priv->min_bitrate);
953     gst_tag_list_add (merged_tags, GST_TAG_MERGE_KEEP, GST_TAG_MINIMUM_BITRATE,
954         parse->priv->min_bitrate, NULL);
955   }
956   if (parse->priv->max_bitrate != 0 && parse->priv->post_max_bitrate) {
957     GST_LOG_OBJECT (parse, "adding max bitrate %u", parse->priv->max_bitrate);
958     gst_tag_list_add (merged_tags, GST_TAG_MERGE_KEEP, GST_TAG_MAXIMUM_BITRATE,
959         parse->priv->max_bitrate, NULL);
960   }
961   if (parse->priv->avg_bitrate != 0 && parse->priv->post_avg_bitrate) {
962     parse->priv->posted_avg_bitrate = parse->priv->avg_bitrate;
963     GST_LOG_OBJECT (parse, "adding avg bitrate %u", parse->priv->avg_bitrate);
964     gst_tag_list_add (merged_tags, GST_TAG_MERGE_KEEP, GST_TAG_BITRATE,
965         parse->priv->avg_bitrate, NULL);
966   }
967
968   parse->priv->pending_events =
969       g_list_prepend (parse->priv->pending_events,
970       gst_event_new_tag (merged_tags));
971 }
972
973 /* gst_base_parse_parse_frame:
974  * @parse: #GstBaseParse.
975  * @buffer: #GstBuffer.
976  *
977  * Default callback for parse_frame.
978  */
979 static GstFlowReturn
980 gst_base_parse_parse_frame (GstBaseParse * parse, GstBaseParseFrame * frame)
981 {
982   GstBuffer *buffer = frame->buffer;
983
984   if (!GST_BUFFER_PTS_IS_VALID (buffer) &&
985       GST_CLOCK_TIME_IS_VALID (parse->priv->next_pts)) {
986     GST_BUFFER_PTS (buffer) = parse->priv->next_pts;
987   }
988   if (!GST_BUFFER_DTS_IS_VALID (buffer) &&
989       GST_CLOCK_TIME_IS_VALID (parse->priv->next_dts)) {
990     GST_BUFFER_DTS (buffer) = parse->priv->next_dts;
991   }
992   if (!GST_BUFFER_DURATION_IS_VALID (buffer) &&
993       GST_CLOCK_TIME_IS_VALID (parse->priv->frame_duration)) {
994     GST_BUFFER_DURATION (buffer) = parse->priv->frame_duration;
995   }
996   return GST_FLOW_OK;
997 }
998
999 /* gst_base_parse_convert:
1000  * @parse: #GstBaseParse.
1001  * @src_format: #GstFormat describing the source format.
1002  * @src_value: Source value to be converted.
1003  * @dest_format: #GstFormat defining the converted format.
1004  * @dest_value: Pointer where the conversion result will be put.
1005  *
1006  * Converts using configured "convert" vmethod in #GstBaseParse class.
1007  *
1008  * Returns: %TRUE if conversion was successful.
1009  */
1010 static gboolean
1011 gst_base_parse_convert (GstBaseParse * parse,
1012     GstFormat src_format,
1013     gint64 src_value, GstFormat dest_format, gint64 * dest_value)
1014 {
1015   GstBaseParseClass *klass = GST_BASE_PARSE_GET_CLASS (parse);
1016   gboolean ret;
1017
1018   g_return_val_if_fail (dest_value != NULL, FALSE);
1019
1020   if (!klass->convert)
1021     return FALSE;
1022
1023   ret = klass->convert (parse, src_format, src_value, dest_format, dest_value);
1024
1025 #ifndef GST_DISABLE_GST_DEBUG
1026   {
1027     if (ret) {
1028       if (src_format == GST_FORMAT_TIME && dest_format == GST_FORMAT_BYTES) {
1029         GST_LOG_OBJECT (parse,
1030             "TIME -> BYTES: %" GST_TIME_FORMAT " -> %" G_GINT64_FORMAT,
1031             GST_TIME_ARGS (src_value), *dest_value);
1032       } else if (dest_format == GST_FORMAT_TIME &&
1033           src_format == GST_FORMAT_BYTES) {
1034         GST_LOG_OBJECT (parse,
1035             "BYTES -> TIME: %" G_GINT64_FORMAT " -> %" GST_TIME_FORMAT,
1036             src_value, GST_TIME_ARGS (*dest_value));
1037       } else {
1038         GST_LOG_OBJECT (parse,
1039             "%s -> %s: %" G_GINT64_FORMAT " -> %" G_GINT64_FORMAT,
1040             GST_STR_NULL (gst_format_get_name (src_format)),
1041             GST_STR_NULL (gst_format_get_name (dest_format)),
1042             src_value, *dest_value);
1043       }
1044     } else {
1045       GST_DEBUG_OBJECT (parse, "conversion failed");
1046     }
1047   }
1048 #endif
1049
1050   return ret;
1051 }
1052
1053 /* gst_base_parse_sink_event:
1054  * @pad: #GstPad that received the event.
1055  * @event: #GstEvent to be handled.
1056  *
1057  * Handler for sink pad events.
1058  *
1059  * Returns: %TRUE if the event was handled.
1060  */
1061 static gboolean
1062 gst_base_parse_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
1063 {
1064   GstBaseParse *parse = GST_BASE_PARSE (parent);
1065   GstBaseParseClass *bclass = GST_BASE_PARSE_GET_CLASS (parse);
1066   gboolean ret;
1067
1068   ret = bclass->sink_event (parse, event);
1069
1070   return ret;
1071 }
1072
1073
1074 /* gst_base_parse_sink_event_default:
1075  * @parse: #GstBaseParse.
1076  * @event: #GstEvent to be handled.
1077  *
1078  * Element-level event handler function.
1079  *
1080  * The event will be unreffed only if it has been handled and this
1081  * function returns %TRUE
1082  *
1083  * Returns: %TRUE if the event was handled and not need forwarding.
1084  */
1085 static gboolean
1086 gst_base_parse_sink_event_default (GstBaseParse * parse, GstEvent * event)
1087 {
1088   GstBaseParseClass *klass = GST_BASE_PARSE_GET_CLASS (parse);
1089   gboolean ret = FALSE;
1090   gboolean forward_immediate = FALSE;
1091
1092   GST_DEBUG_OBJECT (parse, "handling event %d, %s", GST_EVENT_TYPE (event),
1093       GST_EVENT_TYPE_NAME (event));
1094
1095   switch (GST_EVENT_TYPE (event)) {
1096     case GST_EVENT_CAPS:
1097     {
1098       GstCaps *caps;
1099
1100       gst_event_parse_caps (event, &caps);
1101       GST_DEBUG_OBJECT (parse, "caps: %" GST_PTR_FORMAT, caps);
1102
1103       if (klass->set_sink_caps)
1104         ret = klass->set_sink_caps (parse, caps);
1105       else
1106         ret = TRUE;
1107
1108       /* will send our own caps downstream */
1109       gst_event_unref (event);
1110       event = NULL;
1111       break;
1112     }
1113     case GST_EVENT_SEGMENT:
1114     {
1115       const GstSegment *in_segment;
1116       GstSegment out_segment;
1117       gint64 offset = 0, next_dts;
1118       guint32 seqnum = gst_event_get_seqnum (event);
1119
1120       gst_event_parse_segment (event, &in_segment);
1121       gst_segment_init (&out_segment, GST_FORMAT_TIME);
1122       out_segment.rate = in_segment->rate;
1123       out_segment.applied_rate = in_segment->applied_rate;
1124
1125       GST_DEBUG_OBJECT (parse, "segment %" GST_SEGMENT_FORMAT, in_segment);
1126
1127       parse->priv->upstream_format = in_segment->format;
1128       if (in_segment->format == GST_FORMAT_BYTES) {
1129         GstBaseParseSeek *seek = NULL;
1130         GSList *node;
1131
1132         /* stop time is allowed to be open-ended, but not start & pos */
1133         offset = in_segment->time;
1134
1135         GST_OBJECT_LOCK (parse);
1136         for (node = parse->priv->pending_seeks; node; node = node->next) {
1137           GstBaseParseSeek *tmp = node->data;
1138
1139           if (tmp->offset == offset) {
1140             seek = tmp;
1141             break;
1142           }
1143         }
1144         parse->priv->pending_seeks =
1145             g_slist_remove (parse->priv->pending_seeks, seek);
1146         GST_OBJECT_UNLOCK (parse);
1147
1148         if (seek) {
1149           GST_DEBUG_OBJECT (parse,
1150               "Matched newsegment to%s seek: %" GST_SEGMENT_FORMAT,
1151               seek->accurate ? " accurate" : "", &seek->segment);
1152
1153           out_segment.start = seek->segment.start;
1154           out_segment.stop = seek->segment.stop;
1155           out_segment.time = seek->segment.start;
1156
1157           next_dts = seek->start_ts;
1158           parse->priv->exact_position = seek->accurate;
1159           g_free (seek);
1160         } else {
1161           /* best attempt convert */
1162           /* as these are only estimates, stop is kept open-ended to avoid
1163            * premature cutting */
1164           gst_base_parse_convert (parse, GST_FORMAT_BYTES, in_segment->start,
1165               GST_FORMAT_TIME, (gint64 *) & next_dts);
1166
1167           out_segment.start = next_dts;
1168           out_segment.stop = GST_CLOCK_TIME_NONE;
1169           out_segment.time = next_dts;
1170
1171           parse->priv->exact_position = (in_segment->start == 0);
1172         }
1173
1174         gst_event_unref (event);
1175
1176         event = gst_event_new_segment (&out_segment);
1177         gst_event_set_seqnum (event, seqnum);
1178
1179         GST_DEBUG_OBJECT (parse, "Converted incoming segment to TIME. %"
1180             GST_SEGMENT_FORMAT, in_segment);
1181
1182       } else if (in_segment->format != GST_FORMAT_TIME) {
1183         /* Unknown incoming segment format. Output a default open-ended
1184          * TIME segment */
1185         gst_event_unref (event);
1186
1187         out_segment.start = 0;
1188         out_segment.stop = GST_CLOCK_TIME_NONE;
1189         out_segment.time = 0;
1190
1191         event = gst_event_new_segment (&out_segment);
1192         gst_event_set_seqnum (event, seqnum);
1193
1194         next_dts = 0;
1195       } else {
1196         /* not considered BYTE seekable if it is talking to us in TIME,
1197          * whatever else it might claim */
1198         parse->priv->upstream_seekable = FALSE;
1199         next_dts = in_segment->start;
1200         gst_event_copy_segment (event, &out_segment);
1201       }
1202
1203       memcpy (&parse->segment, &out_segment, sizeof (GstSegment));
1204
1205       /*
1206          gst_segment_set_newsegment (&parse->segment, update, rate,
1207          applied_rate, format, start, stop, start);
1208        */
1209
1210       ret = TRUE;
1211
1212       /* save the segment for later, right before we push a new buffer so that
1213        * the caps are fixed and the next linked element can receive
1214        * the segment but finish the current segment */
1215       GST_DEBUG_OBJECT (parse, "draining current segment");
1216       if (in_segment->rate > 0.0)
1217         gst_base_parse_drain (parse);
1218       else
1219         gst_base_parse_finish_fragment (parse, FALSE);
1220       gst_adapter_clear (parse->priv->adapter);
1221
1222       parse->priv->offset = offset;
1223       parse->priv->sync_offset = offset;
1224       parse->priv->next_dts = next_dts;
1225       parse->priv->next_pts = GST_CLOCK_TIME_NONE;
1226       parse->priv->last_pts = GST_CLOCK_TIME_NONE;
1227       parse->priv->last_dts = GST_CLOCK_TIME_NONE;
1228       parse->priv->prev_pts = GST_CLOCK_TIME_NONE;
1229       parse->priv->prev_dts = GST_CLOCK_TIME_NONE;
1230       parse->priv->discont = TRUE;
1231       parse->priv->seen_keyframe = FALSE;
1232       parse->priv->skip = 0;
1233       break;
1234     }
1235
1236     case GST_EVENT_SEGMENT_DONE:
1237       /* need to drain now, rather than upon a new segment,
1238        * since that would have SEGMENT_DONE come before potential
1239        * delayed last part of the current segment */
1240       GST_DEBUG_OBJECT (parse, "draining current segment");
1241       if (parse->segment.rate > 0.0)
1242         gst_base_parse_drain (parse);
1243       else
1244         gst_base_parse_finish_fragment (parse, FALSE);
1245       /* Also forward event immediately, there might be no new data
1246        * coming afterwards that would allow us to forward it later */
1247       forward_immediate = TRUE;
1248       break;
1249
1250     case GST_EVENT_FLUSH_START:
1251       GST_OBJECT_LOCK (parse);
1252       parse->priv->flushing = TRUE;
1253       GST_OBJECT_UNLOCK (parse);
1254       break;
1255
1256     case GST_EVENT_FLUSH_STOP:
1257       gst_adapter_clear (parse->priv->adapter);
1258       gst_base_parse_clear_queues (parse);
1259       parse->priv->flushing = FALSE;
1260       parse->priv->discont = TRUE;
1261       parse->priv->last_pts = GST_CLOCK_TIME_NONE;
1262       parse->priv->last_dts = GST_CLOCK_TIME_NONE;
1263       parse->priv->new_frame = TRUE;
1264       parse->priv->skip = 0;
1265
1266       forward_immediate = TRUE;
1267       break;
1268
1269     case GST_EVENT_EOS:
1270       if (parse->segment.rate > 0.0)
1271         gst_base_parse_drain (parse);
1272       else
1273         gst_base_parse_finish_fragment (parse, TRUE);
1274
1275       /* If we STILL have zero frames processed, fire an error */
1276       if (parse->priv->framecount == 0 && !parse->priv->saw_gaps &&
1277           !parse->priv->first_buffer) {
1278         GST_ELEMENT_ERROR (parse, STREAM, WRONG_TYPE,
1279             ("No valid frames found before end of stream"), (NULL));
1280       }
1281
1282       if (!parse->priv->saw_gaps
1283           && parse->priv->framecount < MIN_FRAMES_TO_POST_BITRATE) {
1284         /* We've not posted bitrate tags yet - do so now */
1285         gst_base_parse_queue_tag_event_update (parse);
1286       }
1287
1288       /* newsegment and other serialized events before eos */
1289       gst_base_parse_push_pending_events (parse);
1290
1291       forward_immediate = TRUE;
1292       break;
1293     case GST_EVENT_CUSTOM_DOWNSTREAM:{
1294       /* FIXME: Code duplicated from libgstvideo because core can't depend on -base */
1295 #ifndef GST_VIDEO_EVENT_STILL_STATE_NAME
1296 #define GST_VIDEO_EVENT_STILL_STATE_NAME "GstEventStillFrame"
1297 #endif
1298
1299       const GstStructure *s;
1300       gboolean ev_still_state;
1301
1302       s = gst_event_get_structure (event);
1303       if (s != NULL &&
1304           gst_structure_has_name (s, GST_VIDEO_EVENT_STILL_STATE_NAME) &&
1305           gst_structure_get_boolean (s, "still-state", &ev_still_state)) {
1306         if (ev_still_state) {
1307           GST_DEBUG_OBJECT (parse, "draining current data for still-frame");
1308           if (parse->segment.rate > 0.0)
1309             gst_base_parse_drain (parse);
1310           else
1311             gst_base_parse_finish_fragment (parse, TRUE);
1312         }
1313         forward_immediate = TRUE;
1314       }
1315       break;
1316     }
1317     case GST_EVENT_GAP:
1318     {
1319       GST_DEBUG_OBJECT (parse, "draining current data due to gap event");
1320
1321       gst_base_parse_push_pending_events (parse);
1322
1323       if (parse->segment.rate > 0.0)
1324         gst_base_parse_drain (parse);
1325       else
1326         gst_base_parse_finish_fragment (parse, TRUE);
1327       forward_immediate = TRUE;
1328       parse->priv->saw_gaps = TRUE;
1329       break;
1330     }
1331     case GST_EVENT_TAG:
1332     {
1333       GstTagList *tags = NULL;
1334
1335       gst_event_parse_tag (event, &tags);
1336
1337       /* We only care about stream tags here, global tags we just forward */
1338       if (gst_tag_list_get_scope (tags) != GST_TAG_SCOPE_STREAM)
1339         break;
1340
1341       gst_base_parse_set_upstream_tags (parse, tags);
1342       gst_base_parse_queue_tag_event_update (parse);
1343       parse->priv->tags_changed = FALSE;
1344       gst_event_unref (event);
1345       event = NULL;
1346       ret = TRUE;
1347       break;
1348     }
1349     case GST_EVENT_STREAM_START:
1350     {
1351       if (parse->priv->pad_mode != GST_PAD_MODE_PULL)
1352         forward_immediate = TRUE;
1353
1354       gst_base_parse_set_upstream_tags (parse, NULL);
1355       parse->priv->tags_changed = TRUE;
1356       break;
1357     }
1358     default:
1359       break;
1360   }
1361
1362   /* Forward non-serialized events and EOS/FLUSH_STOP immediately.
1363    * For EOS this is required because no buffer or serialized event
1364    * will come after EOS and nothing could trigger another
1365    * _finish_frame() call.   *
1366    * If the subclass handles sending of EOS manually it can return
1367    * _DROPPED from ::finish() and all other subclasses should have
1368    * decoded/flushed all remaining data before this
1369    *
1370    * For FLUSH_STOP this is required because it is expected
1371    * to be forwarded immediately and no buffers are queued anyway.
1372    */
1373   if (event) {
1374     if (!GST_EVENT_IS_SERIALIZED (event) || forward_immediate) {
1375       ret = gst_pad_push_event (parse->srcpad, event);
1376     } else {
1377       parse->priv->pending_events =
1378           g_list_prepend (parse->priv->pending_events, event);
1379       ret = TRUE;
1380     }
1381   }
1382
1383   GST_DEBUG_OBJECT (parse, "event handled");
1384
1385   return ret;
1386 }
1387
1388 static gboolean
1389 gst_base_parse_sink_query_default (GstBaseParse * parse, GstQuery * query)
1390 {
1391   GstPad *pad;
1392   gboolean res;
1393
1394   pad = GST_BASE_PARSE_SINK_PAD (parse);
1395
1396   switch (GST_QUERY_TYPE (query)) {
1397     case GST_QUERY_CAPS:
1398     {
1399       GstBaseParseClass *bclass;
1400
1401       bclass = GST_BASE_PARSE_GET_CLASS (parse);
1402
1403       if (bclass->get_sink_caps) {
1404         GstCaps *caps, *filter;
1405
1406         gst_query_parse_caps (query, &filter);
1407         caps = bclass->get_sink_caps (parse, filter);
1408         GST_LOG_OBJECT (parse, "sink getcaps returning caps %" GST_PTR_FORMAT,
1409             caps);
1410         gst_query_set_caps_result (query, caps);
1411         gst_caps_unref (caps);
1412
1413         res = TRUE;
1414       } else {
1415         GstCaps *caps, *template_caps, *filter;
1416
1417         gst_query_parse_caps (query, &filter);
1418         template_caps = gst_pad_get_pad_template_caps (pad);
1419         if (filter != NULL) {
1420           caps =
1421               gst_caps_intersect_full (filter, template_caps,
1422               GST_CAPS_INTERSECT_FIRST);
1423           gst_caps_unref (template_caps);
1424         } else {
1425           caps = template_caps;
1426         }
1427         gst_query_set_caps_result (query, caps);
1428         gst_caps_unref (caps);
1429
1430         res = TRUE;
1431       }
1432       break;
1433     }
1434     default:
1435     {
1436       res = gst_pad_query_default (pad, GST_OBJECT_CAST (parse), query);
1437       break;
1438     }
1439   }
1440
1441   return res;
1442 }
1443
1444 static gboolean
1445 gst_base_parse_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
1446 {
1447   GstBaseParseClass *bclass;
1448   GstBaseParse *parse;
1449   gboolean ret;
1450
1451   parse = GST_BASE_PARSE (parent);
1452   bclass = GST_BASE_PARSE_GET_CLASS (parse);
1453
1454   GST_DEBUG_OBJECT (parse, "%s query", GST_QUERY_TYPE_NAME (query));
1455
1456   if (bclass->sink_query)
1457     ret = bclass->sink_query (parse, query);
1458   else
1459     ret = FALSE;
1460
1461   GST_LOG_OBJECT (parse, "%s query result: %d %" GST_PTR_FORMAT,
1462       GST_QUERY_TYPE_NAME (query), ret, query);
1463
1464   return ret;
1465 }
1466
1467 static gboolean
1468 gst_base_parse_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
1469 {
1470   GstBaseParseClass *bclass;
1471   GstBaseParse *parse;
1472   gboolean ret;
1473
1474   parse = GST_BASE_PARSE (parent);
1475   bclass = GST_BASE_PARSE_GET_CLASS (parse);
1476
1477   GST_DEBUG_OBJECT (parse, "%s query: %" GST_PTR_FORMAT,
1478       GST_QUERY_TYPE_NAME (query), query);
1479
1480   if (bclass->src_query)
1481     ret = bclass->src_query (parse, query);
1482   else
1483     ret = FALSE;
1484
1485   GST_LOG_OBJECT (parse, "%s query result: %d %" GST_PTR_FORMAT,
1486       GST_QUERY_TYPE_NAME (query), ret, query);
1487
1488   return ret;
1489 }
1490
1491 /* gst_base_parse_src_event:
1492  * @pad: #GstPad that received the event.
1493  * @event: #GstEvent that was received.
1494  *
1495  * Handler for source pad events.
1496  *
1497  * Returns: %TRUE if the event was handled.
1498  */
1499 static gboolean
1500 gst_base_parse_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
1501 {
1502   GstBaseParse *parse;
1503   GstBaseParseClass *bclass;
1504   gboolean ret = TRUE;
1505
1506   parse = GST_BASE_PARSE (parent);
1507   bclass = GST_BASE_PARSE_GET_CLASS (parse);
1508
1509   GST_DEBUG_OBJECT (parse, "event %d, %s", GST_EVENT_TYPE (event),
1510       GST_EVENT_TYPE_NAME (event));
1511
1512   if (bclass->src_event)
1513     ret = bclass->src_event (parse, event);
1514   else
1515     gst_event_unref (event);
1516
1517   return ret;
1518 }
1519
1520 static gboolean
1521 gst_base_parse_is_seekable (GstBaseParse * parse)
1522 {
1523   /* FIXME: could do more here, e.g. check index or just send data from 0
1524    * in pull mode and let decoder/sink clip */
1525   return parse->priv->syncable;
1526 }
1527
1528 /* gst_base_parse_src_event_default:
1529  * @parse: #GstBaseParse.
1530  * @event: #GstEvent that was received.
1531  *
1532  * Default srcpad event handler.
1533  *
1534  * Returns: %TRUE if the event was handled and can be dropped.
1535  */
1536 static gboolean
1537 gst_base_parse_src_event_default (GstBaseParse * parse, GstEvent * event)
1538 {
1539   gboolean res = FALSE;
1540
1541   switch (GST_EVENT_TYPE (event)) {
1542     case GST_EVENT_SEEK:
1543       if (gst_base_parse_is_seekable (parse))
1544         res = gst_base_parse_handle_seek (parse, event);
1545       break;
1546     default:
1547       res = gst_pad_event_default (parse->srcpad, GST_OBJECT_CAST (parse),
1548           event);
1549       break;
1550   }
1551   return res;
1552 }
1553
1554
1555 /**
1556  * gst_base_parse_convert_default:
1557  * @parse: #GstBaseParse.
1558  * @src_format: #GstFormat describing the source format.
1559  * @src_value: Source value to be converted.
1560  * @dest_format: #GstFormat defining the converted format.
1561  * @dest_value: Pointer where the conversion result will be put.
1562  *
1563  * Default implementation of "convert" vmethod in #GstBaseParse class.
1564  *
1565  * Returns: %TRUE if conversion was successful.
1566  */
1567 gboolean
1568 gst_base_parse_convert_default (GstBaseParse * parse,
1569     GstFormat src_format,
1570     gint64 src_value, GstFormat dest_format, gint64 * dest_value)
1571 {
1572   gboolean ret = FALSE;
1573   guint64 bytes, duration;
1574
1575   if (G_UNLIKELY (src_format == dest_format)) {
1576     *dest_value = src_value;
1577     return TRUE;
1578   }
1579
1580   if (G_UNLIKELY (src_value == -1)) {
1581     *dest_value = -1;
1582     return TRUE;
1583   }
1584
1585   if (G_UNLIKELY (src_value == 0)) {
1586     *dest_value = 0;
1587     return TRUE;
1588   }
1589
1590   /* need at least some frames */
1591   if (!parse->priv->framecount)
1592     goto no_framecount;
1593
1594   duration = parse->priv->acc_duration / GST_MSECOND;
1595   bytes = parse->priv->bytecount;
1596
1597   if (G_UNLIKELY (!duration || !bytes))
1598     goto no_duration_bytes;
1599
1600   if (src_format == GST_FORMAT_BYTES) {
1601     if (dest_format == GST_FORMAT_TIME) {
1602       /* BYTES -> TIME conversion */
1603       GST_DEBUG_OBJECT (parse, "converting bytes -> time");
1604       *dest_value = gst_util_uint64_scale (src_value, duration, bytes);
1605       *dest_value *= GST_MSECOND;
1606       GST_DEBUG_OBJECT (parse, "conversion result: %" G_GINT64_FORMAT " ms",
1607           *dest_value / GST_MSECOND);
1608       ret = TRUE;
1609     } else {
1610       GST_DEBUG_OBJECT (parse, "converting bytes -> other not implemented");
1611     }
1612   } else if (src_format == GST_FORMAT_TIME) {
1613     if (dest_format == GST_FORMAT_BYTES) {
1614       GST_DEBUG_OBJECT (parse, "converting time -> bytes");
1615       *dest_value = gst_util_uint64_scale (src_value / GST_MSECOND, bytes,
1616           duration);
1617       GST_DEBUG_OBJECT (parse,
1618           "time %" G_GINT64_FORMAT " ms in bytes = %" G_GINT64_FORMAT,
1619           src_value / GST_MSECOND, *dest_value);
1620       ret = TRUE;
1621     } else {
1622       GST_DEBUG_OBJECT (parse, "converting time -> other not implemented");
1623     }
1624   } else if (src_format == GST_FORMAT_DEFAULT) {
1625     /* DEFAULT == frame-based */
1626     if (dest_format == GST_FORMAT_TIME) {
1627       GST_DEBUG_OBJECT (parse, "converting default -> time");
1628       if (parse->priv->fps_den) {
1629         *dest_value = gst_util_uint64_scale (src_value,
1630             GST_SECOND * parse->priv->fps_den, parse->priv->fps_num);
1631         ret = TRUE;
1632       }
1633     } else {
1634       GST_DEBUG_OBJECT (parse, "converting default -> other not implemented");
1635     }
1636   } else {
1637     GST_DEBUG_OBJECT (parse, "conversion not implemented");
1638   }
1639   return ret;
1640
1641   /* ERRORS */
1642 no_framecount:
1643   {
1644     GST_DEBUG_OBJECT (parse, "no framecount");
1645     return FALSE;
1646   }
1647 no_duration_bytes:
1648   {
1649     GST_DEBUG_OBJECT (parse, "no duration %" G_GUINT64_FORMAT ", bytes %"
1650         G_GUINT64_FORMAT, duration, bytes);
1651     return FALSE;
1652   }
1653
1654 }
1655
1656 static void
1657 gst_base_parse_update_duration (GstBaseParse * parse)
1658 {
1659   gint64 ptot, dest_value;
1660
1661   if (!gst_pad_peer_query_duration (parse->sinkpad, GST_FORMAT_BYTES, &ptot))
1662     return;
1663
1664   if (!gst_base_parse_convert (parse, GST_FORMAT_BYTES, ptot,
1665           GST_FORMAT_TIME, &dest_value))
1666     return;
1667
1668   /* inform if duration changed, but try to avoid spamming */
1669   parse->priv->estimated_drift += dest_value - parse->priv->estimated_duration;
1670
1671   parse->priv->estimated_duration = dest_value;
1672   GST_LOG_OBJECT (parse,
1673       "updated estimated duration to %" GST_TIME_FORMAT,
1674       GST_TIME_ARGS (dest_value));
1675
1676   if (parse->priv->estimated_drift > GST_SECOND ||
1677       parse->priv->estimated_drift < -GST_SECOND) {
1678     gst_element_post_message (GST_ELEMENT (parse),
1679         gst_message_new_duration_changed (GST_OBJECT (parse)));
1680     parse->priv->estimated_drift = 0;
1681   }
1682 }
1683
1684 /* gst_base_parse_update_bitrates:
1685  * @parse: #GstBaseParse.
1686  * @buffer: Current frame as a #GstBuffer
1687  *
1688  * Keeps track of the minimum and maximum bitrates, and also maintains a
1689  * running average bitrate of the stream so far.
1690  */
1691 static void
1692 gst_base_parse_update_bitrates (GstBaseParse * parse, GstBaseParseFrame * frame)
1693 {
1694   /* Only update the tag on a 10 kbps delta */
1695   static const gint update_threshold = 10000;
1696
1697   guint64 data_len, frame_dur;
1698   gint overhead, frame_bitrate, old_avg_bitrate;
1699   GstBuffer *buffer = frame->buffer;
1700
1701   overhead = frame->overhead;
1702   if (overhead == -1)
1703     return;
1704
1705   data_len = gst_buffer_get_size (buffer) - overhead;
1706   parse->priv->data_bytecount += data_len;
1707
1708   /* duration should be valid by now,
1709    * either set by subclass or maybe based on fps settings */
1710   if (GST_BUFFER_DURATION_IS_VALID (buffer) && parse->priv->acc_duration != 0) {
1711     /* Calculate duration of a frame from buffer properties */
1712     frame_dur = GST_BUFFER_DURATION (buffer);
1713     parse->priv->avg_bitrate = (8 * parse->priv->data_bytecount * GST_SECOND) /
1714         parse->priv->acc_duration;
1715
1716   } else {
1717     /* No way to figure out frame duration (is this even possible?) */
1718     return;
1719   }
1720
1721   /* override if subclass provided bitrate, e.g. metadata based */
1722   if (parse->priv->bitrate) {
1723     parse->priv->avg_bitrate = parse->priv->bitrate;
1724     /* spread this (confirmed) info ASAP */
1725     if (parse->priv->posted_avg_bitrate != parse->priv->avg_bitrate)
1726       parse->priv->tags_changed = TRUE;
1727   }
1728
1729   if (frame_dur)
1730     frame_bitrate = (8 * data_len * GST_SECOND) / frame_dur;
1731   else
1732     return;
1733
1734   GST_LOG_OBJECT (parse, "frame bitrate %u, avg bitrate %u", frame_bitrate,
1735       parse->priv->avg_bitrate);
1736
1737   if (parse->priv->framecount < MIN_FRAMES_TO_POST_BITRATE)
1738     return;
1739
1740   if (parse->priv->framecount == MIN_FRAMES_TO_POST_BITRATE &&
1741       (parse->priv->post_min_bitrate || parse->priv->post_avg_bitrate
1742           || parse->priv->post_max_bitrate))
1743     parse->priv->tags_changed = TRUE;
1744
1745   if (G_LIKELY (parse->priv->framecount >= MIN_FRAMES_TO_POST_BITRATE)) {
1746     if (frame_bitrate < parse->priv->min_bitrate) {
1747       parse->priv->min_bitrate = frame_bitrate;
1748       if (parse->priv->post_min_bitrate)
1749         parse->priv->tags_changed = TRUE;
1750     }
1751
1752     if (frame_bitrate > parse->priv->max_bitrate) {
1753       parse->priv->max_bitrate = frame_bitrate;
1754       if (parse->priv->post_max_bitrate)
1755         parse->priv->tags_changed = TRUE;
1756     }
1757
1758     old_avg_bitrate = parse->priv->posted_avg_bitrate;
1759     if (((gint) (old_avg_bitrate - parse->priv->avg_bitrate) > update_threshold
1760             || (gint) (parse->priv->avg_bitrate - old_avg_bitrate) >
1761             update_threshold) && parse->priv->post_avg_bitrate)
1762       parse->priv->tags_changed = TRUE;
1763   }
1764 }
1765
1766 /**
1767  * gst_base_parse_add_index_entry:
1768  * @parse: #GstBaseParse.
1769  * @offset: offset of entry
1770  * @ts: timestamp associated with offset
1771  * @key: whether entry refers to keyframe
1772  * @force: add entry disregarding sanity checks
1773  *
1774  * Adds an entry to the index associating @offset to @ts.  It is recommended
1775  * to only add keyframe entries.  @force allows to bypass checks, such as
1776  * whether the stream is (upstream) seekable, another entry is already "close"
1777  * to the new entry, etc.
1778  *
1779  * Returns: #gboolean indicating whether entry was added
1780  */
1781 gboolean
1782 gst_base_parse_add_index_entry (GstBaseParse * parse, guint64 offset,
1783     GstClockTime ts, gboolean key, gboolean force)
1784 {
1785   gboolean ret = FALSE;
1786   GstIndexAssociation associations[2];
1787
1788   GST_LOG_OBJECT (parse, "Adding key=%d index entry %" GST_TIME_FORMAT
1789       " @ offset 0x%08" G_GINT64_MODIFIER "x", key, GST_TIME_ARGS (ts), offset);
1790
1791   if (G_LIKELY (!force)) {
1792
1793     if (!parse->priv->upstream_seekable) {
1794       GST_DEBUG_OBJECT (parse, "upstream not seekable; discarding");
1795       goto exit;
1796     }
1797
1798     /* FIXME need better helper data structure that handles these issues
1799      * related to ongoing collecting of index entries */
1800     if (parse->priv->index_last_offset + parse->priv->idx_byte_interval >=
1801         (gint64) offset) {
1802       GST_LOG_OBJECT (parse,
1803           "already have entries up to offset 0x%08" G_GINT64_MODIFIER "x",
1804           parse->priv->index_last_offset + parse->priv->idx_byte_interval);
1805       goto exit;
1806     }
1807
1808     if (GST_CLOCK_TIME_IS_VALID (parse->priv->index_last_ts) &&
1809         GST_CLOCK_DIFF (parse->priv->index_last_ts, ts) <
1810         parse->priv->idx_interval) {
1811       GST_LOG_OBJECT (parse, "entry too close to last time %" GST_TIME_FORMAT,
1812           GST_TIME_ARGS (parse->priv->index_last_ts));
1813       goto exit;
1814     }
1815
1816     /* if last is not really the last one */
1817     if (!parse->priv->index_last_valid) {
1818       GstClockTime prev_ts;
1819
1820       gst_base_parse_find_offset (parse, ts, TRUE, &prev_ts);
1821       if (GST_CLOCK_DIFF (prev_ts, ts) < parse->priv->idx_interval) {
1822         GST_LOG_OBJECT (parse,
1823             "entry too close to existing entry %" GST_TIME_FORMAT,
1824             GST_TIME_ARGS (prev_ts));
1825         parse->priv->index_last_offset = offset;
1826         parse->priv->index_last_ts = ts;
1827         goto exit;
1828       }
1829     }
1830   }
1831
1832   associations[0].format = GST_FORMAT_TIME;
1833   associations[0].value = ts;
1834   associations[1].format = GST_FORMAT_BYTES;
1835   associations[1].value = offset;
1836
1837   /* index might change on-the-fly, although that would be nutty app ... */
1838   GST_BASE_PARSE_INDEX_LOCK (parse);
1839   gst_index_add_associationv (parse->priv->index, parse->priv->index_id,
1840       (key) ? GST_INDEX_ASSOCIATION_FLAG_KEY_UNIT :
1841       GST_INDEX_ASSOCIATION_FLAG_DELTA_UNIT, 2,
1842       (const GstIndexAssociation *) &associations);
1843   GST_BASE_PARSE_INDEX_UNLOCK (parse);
1844
1845   if (key) {
1846     parse->priv->index_last_offset = offset;
1847     parse->priv->index_last_ts = ts;
1848   }
1849
1850   ret = TRUE;
1851
1852 exit:
1853   return ret;
1854 }
1855
1856 /* check for seekable upstream, above and beyond a mere query */
1857 static void
1858 gst_base_parse_check_seekability (GstBaseParse * parse)
1859 {
1860   GstQuery *query;
1861   gboolean seekable = FALSE;
1862   gint64 start = -1, stop = -1;
1863   guint idx_interval = 0;
1864   guint64 idx_byte_interval = 0;
1865
1866   query = gst_query_new_seeking (GST_FORMAT_BYTES);
1867   if (!gst_pad_peer_query (parse->sinkpad, query)) {
1868     GST_DEBUG_OBJECT (parse, "seeking query failed");
1869     goto done;
1870   }
1871
1872   gst_query_parse_seeking (query, NULL, &seekable, &start, &stop);
1873
1874   /* try harder to query upstream size if we didn't get it the first time */
1875   if (seekable && stop == -1) {
1876     GST_DEBUG_OBJECT (parse, "doing duration query to fix up unset stop");
1877     gst_pad_peer_query_duration (parse->sinkpad, GST_FORMAT_BYTES, &stop);
1878   }
1879
1880   /* if upstream doesn't know the size, it's likely that it's not seekable in
1881    * practice even if it technically may be seekable */
1882   if (seekable && (start != 0 || stop <= start)) {
1883     GST_DEBUG_OBJECT (parse, "seekable but unknown start/stop -> disable");
1884     seekable = FALSE;
1885   }
1886
1887   /* let's not put every single frame into our index */
1888   if (seekable) {
1889     if (stop < 10 * 1024 * 1024)
1890       idx_interval = 100;
1891     else if (stop < 100 * 1024 * 1024)
1892       idx_interval = 500;
1893     else
1894       idx_interval = 1000;
1895
1896     /* ensure that even for large files (e.g. very long audio files), the index
1897      * stays reasonably-size, with some arbitrary limit to the total number of
1898      * index entries */
1899     idx_byte_interval = (stop - start) / MAX_INDEX_ENTRIES;
1900     GST_DEBUG_OBJECT (parse,
1901         "Limiting index entries to %d, indexing byte interval %"
1902         G_GUINT64_FORMAT " bytes", MAX_INDEX_ENTRIES, idx_byte_interval);
1903   }
1904
1905 done:
1906   gst_query_unref (query);
1907
1908   GST_DEBUG_OBJECT (parse, "seekable: %d (%" G_GUINT64_FORMAT " - %"
1909       G_GUINT64_FORMAT ")", seekable, start, stop);
1910   parse->priv->upstream_seekable = seekable;
1911   parse->priv->upstream_size = seekable ? stop : 0;
1912
1913   GST_DEBUG_OBJECT (parse, "idx_interval: %ums", idx_interval);
1914   parse->priv->idx_interval = idx_interval * GST_MSECOND;
1915   parse->priv->idx_byte_interval = idx_byte_interval;
1916 }
1917
1918 /* some misc checks on upstream */
1919 static void
1920 gst_base_parse_check_upstream (GstBaseParse * parse)
1921 {
1922   gint64 stop;
1923
1924   if (gst_pad_peer_query_duration (parse->sinkpad, GST_FORMAT_TIME, &stop))
1925     if (GST_CLOCK_TIME_IS_VALID (stop) && stop) {
1926       /* upstream has one, accept it also, and no further updates */
1927       gst_base_parse_set_duration (parse, GST_FORMAT_TIME, stop, 0);
1928       parse->priv->upstream_has_duration = TRUE;
1929     }
1930
1931   GST_DEBUG_OBJECT (parse, "upstream_has_duration: %d",
1932       parse->priv->upstream_has_duration);
1933 }
1934
1935 /* checks src caps to determine if dealing with audio or video */
1936 /* TODO maybe forego automagic stuff and let subclass configure it ? */
1937 static void
1938 gst_base_parse_check_media (GstBaseParse * parse)
1939 {
1940   GstCaps *caps;
1941   GstStructure *s;
1942
1943   caps = gst_pad_get_current_caps (parse->srcpad);
1944   if (G_LIKELY (caps) && (s = gst_caps_get_structure (caps, 0))) {
1945     parse->priv->is_video =
1946         g_str_has_prefix (gst_structure_get_name (s), "video");
1947   } else {
1948     /* historical default */
1949     parse->priv->is_video = FALSE;
1950   }
1951   if (caps)
1952     gst_caps_unref (caps);
1953
1954   parse->priv->checked_media = TRUE;
1955   GST_DEBUG_OBJECT (parse, "media is video: %d", parse->priv->is_video);
1956 }
1957
1958 /* takes ownership of frame */
1959 static void
1960 gst_base_parse_queue_frame (GstBaseParse * parse, GstBaseParseFrame * frame)
1961 {
1962   if (!(frame->_private_flags & GST_BASE_PARSE_FRAME_PRIVATE_FLAG_NOALLOC)) {
1963     /* frame allocated on the heap, we can just take ownership */
1964     g_queue_push_tail (&parse->priv->queued_frames, frame);
1965     GST_TRACE ("queued frame %p", frame);
1966   } else {
1967     GstBaseParseFrame *copy;
1968
1969     /* probably allocated on the stack, must make a proper copy */
1970     copy = gst_base_parse_frame_copy (frame);
1971     g_queue_push_tail (&parse->priv->queued_frames, copy);
1972     GST_TRACE ("queued frame %p (copy of %p)", copy, frame);
1973     gst_base_parse_frame_free (frame);
1974   }
1975 }
1976
1977 /* makes sure that @buf is properly prepared and decorated for passing
1978  * to baseclass, and an equally setup frame is returned setup with @buf.
1979  * Takes ownership of @buf. */
1980 static GstBaseParseFrame *
1981 gst_base_parse_prepare_frame (GstBaseParse * parse, GstBuffer * buffer)
1982 {
1983   GstBaseParseFrame *frame = NULL;
1984
1985   buffer = gst_buffer_make_writable (buffer);
1986
1987   GST_LOG_OBJECT (parse,
1988       "preparing frame at offset %" G_GUINT64_FORMAT
1989       " (%#" G_GINT64_MODIFIER "x) of size %" G_GSIZE_FORMAT,
1990       GST_BUFFER_OFFSET (buffer), GST_BUFFER_OFFSET (buffer),
1991       gst_buffer_get_size (buffer));
1992
1993   GST_BUFFER_OFFSET (buffer) = parse->priv->offset;
1994
1995   gst_base_parse_update_flags (parse);
1996
1997   frame = gst_base_parse_frame_new (buffer, 0, 0);
1998   gst_buffer_unref (buffer);
1999   gst_base_parse_update_frame (parse, frame);
2000
2001   /* clear flags for next frame */
2002   parse->priv->discont = FALSE;
2003   parse->priv->new_frame = FALSE;
2004
2005   /* use default handler to provide initial (upstream) metadata */
2006   gst_base_parse_parse_frame (parse, frame);
2007
2008   return frame;
2009 }
2010
2011 /* Wraps buffer in a frame and dispatches to subclass.
2012  * Also manages data skipping and offset handling (including adapter flushing).
2013  * Takes ownership of @buffer */
2014 static GstFlowReturn
2015 gst_base_parse_handle_buffer (GstBaseParse * parse, GstBuffer * buffer,
2016     gint * skip, gint * flushed)
2017 {
2018   GstBaseParseClass *klass = GST_BASE_PARSE_GET_CLASS (parse);
2019   GstBaseParseFrame *frame;
2020   GstFlowReturn ret;
2021
2022   g_return_val_if_fail (skip != NULL || flushed != NULL, GST_FLOW_ERROR);
2023
2024   GST_LOG_OBJECT (parse,
2025       "handling buffer of size %" G_GSIZE_FORMAT " with dts %" GST_TIME_FORMAT
2026       ", pts %" GST_TIME_FORMAT ", duration %" GST_TIME_FORMAT,
2027       gst_buffer_get_size (buffer), GST_TIME_ARGS (GST_BUFFER_DTS (buffer)),
2028       GST_TIME_ARGS (GST_BUFFER_PTS (buffer)),
2029       GST_TIME_ARGS (GST_BUFFER_DURATION (buffer)));
2030
2031   /* track what is being flushed during this single round of frame processing */
2032   parse->priv->flushed = 0;
2033   *skip = 0;
2034
2035   /* make it easy for _finish_frame to pick up input data */
2036   if (parse->priv->pad_mode == GST_PAD_MODE_PULL) {
2037     gst_buffer_ref (buffer);
2038     gst_adapter_push (parse->priv->adapter, buffer);
2039   }
2040
2041   frame = gst_base_parse_prepare_frame (parse, buffer);
2042   ret = klass->handle_frame (parse, frame, skip);
2043
2044   *flushed = parse->priv->flushed;
2045
2046   GST_LOG_OBJECT (parse, "handle_frame skipped %d, flushed %d",
2047       *skip, *flushed);
2048
2049   /* subclass can only do one of these, or semantics are too unclear */
2050   g_assert (*skip == 0 || *flushed == 0);
2051
2052   /* track skipping */
2053   if (*skip > 0) {
2054     GstClockTime pts, dts;
2055     GstBuffer *outbuf;
2056
2057     GST_LOG_OBJECT (parse, "finding sync, skipping %d bytes", *skip);
2058     if (parse->segment.rate < 0.0 && !parse->priv->buffers_queued) {
2059       /* reverse playback, and no frames found yet, so we are skipping
2060        * the leading part of a fragment, which may form the tail of
2061        * fragment coming later, hopefully subclass skips efficiently ... */
2062       pts = gst_adapter_prev_pts (parse->priv->adapter, NULL);
2063       dts = gst_adapter_prev_dts (parse->priv->adapter, NULL);
2064       outbuf = gst_adapter_take_buffer (parse->priv->adapter, *skip);
2065       outbuf = gst_buffer_make_writable (outbuf);
2066       GST_BUFFER_PTS (outbuf) = pts;
2067       GST_BUFFER_DTS (outbuf) = dts;
2068       parse->priv->buffers_head =
2069           g_slist_prepend (parse->priv->buffers_head, outbuf);
2070       outbuf = NULL;
2071     } else {
2072       /* If we're asked to skip more than is available in the adapter,
2073          we need to remember what we need to skip for next iteration */
2074       gsize av = gst_adapter_available (parse->priv->adapter);
2075       GST_DEBUG ("Asked to skip %u (%" G_GSIZE_FORMAT " available)", *skip, av);
2076       if (av >= *skip) {
2077         gst_adapter_flush (parse->priv->adapter, *skip);
2078       } else {
2079         GST_DEBUG
2080             ("This is more than available, flushing %" G_GSIZE_FORMAT
2081             ", storing %u to skip", av, (guint) (*skip - av));
2082         parse->priv->skip = *skip - av;
2083         gst_adapter_flush (parse->priv->adapter, av);
2084         *skip = av;
2085       }
2086     }
2087     if (!parse->priv->discont)
2088       parse->priv->sync_offset = parse->priv->offset;
2089     parse->priv->offset += *skip;
2090     parse->priv->discont = TRUE;
2091     /* check for indefinite skipping */
2092     if (ret == GST_FLOW_OK)
2093       ret = gst_base_parse_check_sync (parse);
2094   }
2095
2096   parse->priv->offset += *flushed;
2097
2098   if (parse->priv->pad_mode == GST_PAD_MODE_PULL) {
2099     gst_adapter_clear (parse->priv->adapter);
2100   }
2101
2102   gst_base_parse_frame_free (frame);
2103
2104   return ret;
2105 }
2106
2107 /* gst_base_parse_push_pending_events:
2108  * @parse: #GstBaseParse
2109  *
2110  * Pushes the pending events
2111  */
2112 static void
2113 gst_base_parse_push_pending_events (GstBaseParse * parse)
2114 {
2115   if (G_UNLIKELY (parse->priv->pending_events)) {
2116     GList *r = g_list_reverse (parse->priv->pending_events);
2117     GList *l;
2118
2119     parse->priv->pending_events = NULL;
2120     for (l = r; l != NULL; l = l->next) {
2121       gst_pad_push_event (parse->srcpad, GST_EVENT_CAST (l->data));
2122     }
2123     g_list_free (r);
2124   }
2125 }
2126
2127 /* gst_base_parse_handle_and_push_frame:
2128  * @parse: #GstBaseParse.
2129  * @klass: #GstBaseParseClass.
2130  * @frame: (transfer full): a #GstBaseParseFrame
2131  *
2132  * Parses the frame from given buffer and pushes it forward. Also performs
2133  * timestamp handling and checks the segment limits.
2134  *
2135  * This is called with srcpad STREAM_LOCK held.
2136  *
2137  * Returns: #GstFlowReturn
2138  */
2139 static GstFlowReturn
2140 gst_base_parse_handle_and_push_frame (GstBaseParse * parse,
2141     GstBaseParseFrame * frame)
2142 {
2143   gint64 offset;
2144   GstBuffer *buffer;
2145
2146   g_return_val_if_fail (frame != NULL, GST_FLOW_ERROR);
2147
2148   buffer = frame->buffer;
2149   offset = frame->offset;
2150
2151   /* check if subclass/format can provide ts.
2152    * If so, that allows and enables extra seek and duration determining options */
2153   if (G_UNLIKELY (parse->priv->first_frame_offset < 0)) {
2154     if (GST_BUFFER_PTS_IS_VALID (buffer) && parse->priv->has_timing_info
2155         && parse->priv->pad_mode == GST_PAD_MODE_PULL) {
2156       parse->priv->first_frame_offset = offset;
2157       parse->priv->first_frame_pts = GST_BUFFER_PTS (buffer);
2158       parse->priv->first_frame_dts = GST_BUFFER_DTS (buffer);
2159       GST_DEBUG_OBJECT (parse, "subclass provided dts %" GST_TIME_FORMAT
2160           ", pts %" GST_TIME_FORMAT " for first frame at offset %"
2161           G_GINT64_FORMAT, GST_TIME_ARGS (parse->priv->first_frame_dts),
2162           GST_TIME_ARGS (parse->priv->first_frame_pts),
2163           parse->priv->first_frame_offset);
2164       if (!GST_CLOCK_TIME_IS_VALID (parse->priv->duration)) {
2165         gint64 off;
2166         GstClockTime last_ts = G_MAXINT64;
2167
2168         GST_DEBUG_OBJECT (parse, "no duration; trying scan to determine");
2169         gst_base_parse_locate_time (parse, &last_ts, &off);
2170         if (GST_CLOCK_TIME_IS_VALID (last_ts))
2171           gst_base_parse_set_duration (parse, GST_FORMAT_TIME, last_ts, 0);
2172       }
2173     } else {
2174       /* disable further checks */
2175       parse->priv->first_frame_offset = 0;
2176     }
2177   }
2178
2179   /* track upstream time if provided, not subclass' internal notion of it */
2180   if (parse->priv->upstream_format == GST_FORMAT_TIME) {
2181     GST_BUFFER_PTS (frame->buffer) = GST_CLOCK_TIME_NONE;
2182     GST_BUFFER_DTS (frame->buffer) = GST_CLOCK_TIME_NONE;
2183   }
2184
2185   /* interpolating and no valid pts yet,
2186    * start with dts and carry on from there */
2187   if (parse->priv->infer_ts && parse->priv->pts_interpolate
2188       && !GST_CLOCK_TIME_IS_VALID (parse->priv->next_pts))
2189     parse->priv->next_pts = parse->priv->next_dts;
2190
2191   /* again use default handler to add missing metadata;
2192    * we may have new information on frame properties */
2193   gst_base_parse_parse_frame (parse, frame);
2194
2195   parse->priv->next_pts = GST_CLOCK_TIME_NONE;
2196   if (GST_BUFFER_DTS_IS_VALID (buffer) && GST_BUFFER_DURATION_IS_VALID (buffer)) {
2197     parse->priv->next_dts =
2198         GST_BUFFER_DTS (buffer) + GST_BUFFER_DURATION (buffer);
2199     if (parse->priv->pts_interpolate && GST_BUFFER_PTS_IS_VALID (buffer)) {
2200       GstClockTime next_pts =
2201           GST_BUFFER_PTS (buffer) + GST_BUFFER_DURATION (buffer);
2202       if (next_pts >= parse->priv->next_dts)
2203         parse->priv->next_pts = next_pts;
2204     }
2205   } else {
2206     /* we lost track, do not produce bogus time next time around
2207      * (probably means parser subclass has given up on parsing as well) */
2208     GST_DEBUG_OBJECT (parse, "no next fallback timestamp");
2209     parse->priv->next_dts = GST_CLOCK_TIME_NONE;
2210   }
2211
2212   if (parse->priv->upstream_seekable && parse->priv->exact_position &&
2213       GST_BUFFER_PTS_IS_VALID (buffer))
2214     gst_base_parse_add_index_entry (parse, offset,
2215         GST_BUFFER_PTS (buffer),
2216         !GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DELTA_UNIT), FALSE);
2217
2218   /* All OK, push queued frames if there are any */
2219   if (G_UNLIKELY (!g_queue_is_empty (&parse->priv->queued_frames))) {
2220     GstBaseParseFrame *queued_frame;
2221
2222     while ((queued_frame = g_queue_pop_head (&parse->priv->queued_frames))) {
2223       gst_base_parse_push_frame (parse, queued_frame);
2224       gst_base_parse_frame_free (queued_frame);
2225     }
2226   }
2227
2228   return gst_base_parse_push_frame (parse, frame);
2229 }
2230
2231 /**
2232  * gst_base_parse_push_frame:
2233  * @parse: #GstBaseParse.
2234  * @frame: (transfer none): a #GstBaseParseFrame
2235  *
2236  * Pushes the frame's buffer downstream, sends any pending events and
2237  * does some timestamp and segment handling. Takes ownership of
2238  * frame's buffer, though caller retains ownership of @frame.
2239  *
2240  * This must be called with sinkpad STREAM_LOCK held.
2241  *
2242  * Returns: #GstFlowReturn
2243  */
2244 GstFlowReturn
2245 gst_base_parse_push_frame (GstBaseParse * parse, GstBaseParseFrame * frame)
2246 {
2247   GstFlowReturn ret = GST_FLOW_OK;
2248   GstClockTime last_start = GST_CLOCK_TIME_NONE;
2249   GstClockTime last_stop = GST_CLOCK_TIME_NONE;
2250   GstBaseParseClass *klass = GST_BASE_PARSE_GET_CLASS (parse);
2251   GstBuffer *buffer;
2252   gsize size;
2253
2254   g_return_val_if_fail (frame != NULL, GST_FLOW_ERROR);
2255   g_return_val_if_fail (frame->buffer != NULL, GST_FLOW_ERROR);
2256
2257   GST_TRACE_OBJECT (parse, "pushing frame %p", frame);
2258
2259   buffer = frame->buffer;
2260
2261   GST_LOG_OBJECT (parse,
2262       "processing buffer of size %" G_GSIZE_FORMAT " with dts %" GST_TIME_FORMAT
2263       ", pts %" GST_TIME_FORMAT ", duration %" GST_TIME_FORMAT,
2264       gst_buffer_get_size (buffer),
2265       GST_TIME_ARGS (GST_BUFFER_DTS (buffer)),
2266       GST_TIME_ARGS (GST_BUFFER_PTS (buffer)),
2267       GST_TIME_ARGS (GST_BUFFER_DURATION (buffer)));
2268
2269   /* update stats */
2270   parse->priv->bytecount += frame->size;
2271   if (G_LIKELY (!(frame->flags & GST_BASE_PARSE_FRAME_FLAG_NO_FRAME))) {
2272     parse->priv->framecount++;
2273     if (GST_BUFFER_DURATION_IS_VALID (buffer)) {
2274       parse->priv->acc_duration += GST_BUFFER_DURATION (buffer);
2275     }
2276   }
2277   /* 0 means disabled */
2278   if (parse->priv->update_interval < 0)
2279     parse->priv->update_interval = 50;
2280   else if (parse->priv->update_interval > 0 &&
2281       (parse->priv->framecount % parse->priv->update_interval) == 0)
2282     gst_base_parse_update_duration (parse);
2283
2284   if (GST_BUFFER_PTS_IS_VALID (buffer))
2285     last_start = last_stop = GST_BUFFER_PTS (buffer);
2286   if (last_start != GST_CLOCK_TIME_NONE
2287       && GST_BUFFER_DURATION_IS_VALID (buffer))
2288     last_stop = last_start + GST_BUFFER_DURATION (buffer);
2289
2290   /* should have caps by now */
2291   if (!gst_pad_has_current_caps (parse->srcpad))
2292     goto no_caps;
2293
2294   if (G_UNLIKELY (!parse->priv->checked_media)) {
2295     /* have caps; check identity */
2296     gst_base_parse_check_media (parse);
2297   }
2298
2299   if (parse->priv->tags_changed) {
2300     gst_base_parse_queue_tag_event_update (parse);
2301     parse->priv->tags_changed = FALSE;
2302   }
2303
2304   /* Push pending events, including SEGMENT events */
2305   gst_base_parse_push_pending_events (parse);
2306
2307   /* segment adjustment magic; only if we are running the whole show */
2308   if (!parse->priv->passthrough && parse->segment.rate > 0.0 &&
2309       (parse->priv->pad_mode == GST_PAD_MODE_PULL ||
2310           parse->priv->upstream_seekable)) {
2311     /* handle gaps */
2312     if (GST_CLOCK_TIME_IS_VALID (parse->segment.position) &&
2313         GST_CLOCK_TIME_IS_VALID (last_start)) {
2314       GstClockTimeDiff diff;
2315
2316       /* only send newsegments with increasing start times,
2317        * otherwise if these go back and forth downstream (sinks) increase
2318        * accumulated time and running_time */
2319       diff = GST_CLOCK_DIFF (parse->segment.position, last_start);
2320       if (G_UNLIKELY (diff > 2 * GST_SECOND
2321               && last_start > parse->segment.start
2322               && (!GST_CLOCK_TIME_IS_VALID (parse->segment.stop)
2323                   || last_start < parse->segment.stop))) {
2324
2325         GST_DEBUG_OBJECT (parse,
2326             "Gap of %" G_GINT64_FORMAT " ns detected in stream " "(%"
2327             GST_TIME_FORMAT " -> %" GST_TIME_FORMAT "). "
2328             "Sending updated SEGMENT events", diff,
2329             GST_TIME_ARGS (parse->segment.position),
2330             GST_TIME_ARGS (last_start));
2331
2332         /* skip gap FIXME */
2333         gst_pad_push_event (parse->srcpad,
2334             gst_event_new_segment (&parse->segment));
2335
2336         parse->segment.position = last_start;
2337       }
2338     }
2339   }
2340
2341   /* update bitrates and optionally post corresponding tags
2342    * (following newsegment) */
2343   gst_base_parse_update_bitrates (parse, frame);
2344
2345   if (klass->pre_push_frame) {
2346     ret = klass->pre_push_frame (parse, frame);
2347   } else {
2348     frame->flags |= GST_BASE_PARSE_FRAME_FLAG_CLIP;
2349   }
2350
2351   /* take final ownership of frame buffer */
2352   if (frame->out_buffer) {
2353     buffer = frame->out_buffer;
2354     frame->out_buffer = NULL;
2355     gst_buffer_replace (&frame->buffer, NULL);
2356   } else {
2357     buffer = frame->buffer;
2358     frame->buffer = NULL;
2359   }
2360
2361   /* subclass must play nice */
2362   g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
2363
2364   size = gst_buffer_get_size (buffer);
2365
2366   parse->priv->seen_keyframe |= parse->priv->is_video &&
2367       !GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DELTA_UNIT);
2368
2369   if (frame->flags & GST_BASE_PARSE_FRAME_FLAG_CLIP) {
2370     if (GST_BUFFER_TIMESTAMP_IS_VALID (buffer) &&
2371         GST_CLOCK_TIME_IS_VALID (parse->segment.stop) &&
2372         GST_BUFFER_TIMESTAMP (buffer) >
2373         parse->segment.stop + parse->priv->lead_out_ts) {
2374       GST_LOG_OBJECT (parse, "Dropped frame, after segment");
2375       ret = GST_FLOW_EOS;
2376     } else if (GST_BUFFER_TIMESTAMP_IS_VALID (buffer) &&
2377         GST_BUFFER_DURATION_IS_VALID (buffer) &&
2378         GST_CLOCK_TIME_IS_VALID (parse->segment.start) &&
2379         GST_BUFFER_TIMESTAMP (buffer) + GST_BUFFER_DURATION (buffer) +
2380         parse->priv->lead_in_ts < parse->segment.start) {
2381       if (parse->priv->seen_keyframe) {
2382         GST_LOG_OBJECT (parse, "Frame before segment, after keyframe");
2383         ret = GST_FLOW_OK;
2384       } else {
2385         GST_LOG_OBJECT (parse, "Dropped frame, before segment");
2386         ret = GST_BASE_PARSE_FLOW_DROPPED;
2387       }
2388     } else {
2389       ret = GST_FLOW_OK;
2390     }
2391   }
2392
2393   if (ret == GST_BASE_PARSE_FLOW_DROPPED) {
2394     GST_LOG_OBJECT (parse, "frame (%" G_GSIZE_FORMAT " bytes) dropped", size);
2395     gst_buffer_unref (buffer);
2396     ret = GST_FLOW_OK;
2397   } else if (ret == GST_FLOW_OK) {
2398     if (parse->segment.rate > 0.0) {
2399       GST_LOG_OBJECT (parse, "pushing frame (%" G_GSIZE_FORMAT " bytes) now..",
2400           size);
2401       ret = gst_pad_push (parse->srcpad, buffer);
2402       GST_LOG_OBJECT (parse, "frame pushed, flow %s", gst_flow_get_name (ret));
2403     } else if (!parse->priv->disable_passthrough && parse->priv->passthrough) {
2404
2405       /* in backwards playback mode, if on passthrough we need to push buffers
2406        * directly without accumulating them into the buffers_queued as baseparse
2407        * will never check for a DISCONT while on passthrough and those buffers
2408        * will never be pushed.
2409        *
2410        * also, as we are on reverse playback, it might be possible that
2411        * passthrough might have just been enabled, so make sure to drain the
2412        * buffers_queued list */
2413       if (G_UNLIKELY (parse->priv->buffers_queued != NULL)) {
2414         gst_base_parse_finish_fragment (parse, TRUE);
2415         ret = gst_base_parse_send_buffers (parse);
2416       }
2417
2418       if (ret == GST_FLOW_OK) {
2419         GST_LOG_OBJECT (parse,
2420             "pushing frame (%" G_GSIZE_FORMAT " bytes) now..", size);
2421         ret = gst_pad_push (parse->srcpad, buffer);
2422         GST_LOG_OBJECT (parse, "frame pushed, flow %s",
2423             gst_flow_get_name (ret));
2424       } else {
2425         GST_LOG_OBJECT (parse,
2426             "frame (%" G_GSIZE_FORMAT " bytes) not pushed: %s", size,
2427             gst_flow_get_name (ret));
2428         gst_buffer_unref (buffer);
2429       }
2430
2431     } else {
2432       GST_LOG_OBJECT (parse, "frame (%" G_GSIZE_FORMAT " bytes) queued for now",
2433           size);
2434       parse->priv->buffers_queued =
2435           g_slist_prepend (parse->priv->buffers_queued, buffer);
2436       ret = GST_FLOW_OK;
2437     }
2438   } else {
2439     GST_LOG_OBJECT (parse, "frame (%" G_GSIZE_FORMAT " bytes) not pushed: %s",
2440         size, gst_flow_get_name (ret));
2441     gst_buffer_unref (buffer);
2442     /* if we are not sufficiently in control, let upstream decide on EOS */
2443     if (ret == GST_FLOW_EOS && !parse->priv->disable_passthrough &&
2444         (parse->priv->passthrough ||
2445             (parse->priv->pad_mode == GST_PAD_MODE_PUSH &&
2446                 !parse->priv->upstream_seekable)))
2447       ret = GST_FLOW_OK;
2448   }
2449
2450   /* Update current running segment position */
2451   if ((ret == GST_FLOW_OK || ret == GST_FLOW_NOT_LINKED)
2452       && last_stop != GST_CLOCK_TIME_NONE
2453       && parse->segment.position < last_stop)
2454     parse->segment.position = last_stop;
2455
2456   return ret;
2457
2458   /* ERRORS */
2459 no_caps:
2460   {
2461     if (GST_PAD_IS_FLUSHING (parse->srcpad))
2462       return GST_FLOW_FLUSHING;
2463
2464     GST_ELEMENT_ERROR (parse, STREAM, DECODE, ("No caps set"), (NULL));
2465     return GST_FLOW_ERROR;
2466   }
2467 }
2468
2469 /**
2470  * gst_base_parse_finish_frame:
2471  * @parse: a #GstBaseParse
2472  * @frame: a #GstBaseParseFrame
2473  * @size: consumed input data represented by frame
2474  *
2475  * Collects parsed data and pushes this downstream.
2476  * Source pad caps must be set when this is called.
2477  *
2478  * If @frame's out_buffer is set, that will be used as subsequent frame data.
2479  * Otherwise, @size samples will be taken from the input and used for output,
2480  * and the output's metadata (timestamps etc) will be taken as (optionally)
2481  * set by the subclass on @frame's (input) buffer (which is otherwise
2482  * ignored for any but the above purpose/information).
2483  *
2484  * Note that the latter buffer is invalidated by this call, whereas the
2485  * caller retains ownership of @frame.
2486  *
2487  * Returns: a #GstFlowReturn that should be escalated to caller (of caller)
2488  */
2489 GstFlowReturn
2490 gst_base_parse_finish_frame (GstBaseParse * parse, GstBaseParseFrame * frame,
2491     gint size)
2492 {
2493   GstFlowReturn ret = GST_FLOW_OK;
2494
2495   g_return_val_if_fail (frame != NULL, GST_FLOW_ERROR);
2496   g_return_val_if_fail (frame->buffer != NULL, GST_FLOW_ERROR);
2497   g_return_val_if_fail (size > 0 || frame->out_buffer, GST_FLOW_ERROR);
2498   g_return_val_if_fail (gst_adapter_available (parse->priv->adapter) >= size,
2499       GST_FLOW_ERROR);
2500
2501   GST_LOG_OBJECT (parse, "finished frame at offset %" G_GUINT64_FORMAT ", "
2502       "flushing size %d", frame->offset, size);
2503
2504   /* some one-time start-up */
2505   if (G_UNLIKELY (parse->priv->framecount == 0)) {
2506     gst_base_parse_check_seekability (parse);
2507     gst_base_parse_check_upstream (parse);
2508   }
2509
2510   parse->priv->flushed += size;
2511
2512   if (parse->priv->scanning && frame->buffer) {
2513     if (!parse->priv->scanned_frame) {
2514       parse->priv->scanned_frame = gst_base_parse_frame_copy (frame);
2515     }
2516     goto exit;
2517   }
2518
2519   /* either PUSH or PULL mode arranges for adapter data */
2520   /* ensure output buffer */
2521   if (!frame->out_buffer) {
2522     GstBuffer *src, *dest;
2523
2524     frame->out_buffer = gst_adapter_take_buffer (parse->priv->adapter, size);
2525     dest = frame->out_buffer;
2526     src = frame->buffer;
2527     GST_BUFFER_PTS (dest) = GST_BUFFER_PTS (src);
2528     GST_BUFFER_DTS (dest) = GST_BUFFER_DTS (src);
2529     GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET (src);
2530     GST_BUFFER_DURATION (dest) = GST_BUFFER_DURATION (src);
2531     GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_END (src);
2532     GST_MINI_OBJECT_FLAGS (dest) = GST_MINI_OBJECT_FLAGS (src);
2533   } else {
2534     gst_adapter_flush (parse->priv->adapter, size);
2535   }
2536
2537   /* use as input for subsequent processing */
2538   gst_buffer_replace (&frame->buffer, frame->out_buffer);
2539   gst_buffer_unref (frame->out_buffer);
2540   frame->out_buffer = NULL;
2541
2542   /* mark input size consumed */
2543   frame->size = size;
2544
2545   /* subclass might queue frames/data internally if it needs more
2546    * frames to decide on the format, or might request us to queue here. */
2547   if (frame->flags & GST_BASE_PARSE_FRAME_FLAG_DROP) {
2548     gst_buffer_replace (&frame->buffer, NULL);
2549     goto exit;
2550   } else if (frame->flags & GST_BASE_PARSE_FRAME_FLAG_QUEUE) {
2551     GstBaseParseFrame *copy;
2552
2553     copy = gst_base_parse_frame_copy (frame);
2554     copy->flags &= ~GST_BASE_PARSE_FRAME_FLAG_QUEUE;
2555     gst_base_parse_queue_frame (parse, copy);
2556     goto exit;
2557   }
2558
2559   ret = gst_base_parse_handle_and_push_frame (parse, frame);
2560
2561 exit:
2562   return ret;
2563 }
2564
2565 /* gst_base_parse_drain:
2566  *
2567  * Drains the adapter until it is empty. It decreases the min_frame_size to
2568  * match the current adapter size and calls chain method until the adapter
2569  * is emptied or chain returns with error.
2570  */
2571 static void
2572 gst_base_parse_drain (GstBaseParse * parse)
2573 {
2574   guint avail;
2575
2576   GST_DEBUG_OBJECT (parse, "draining");
2577   parse->priv->drain = TRUE;
2578
2579   for (;;) {
2580     avail = gst_adapter_available (parse->priv->adapter);
2581     if (!avail)
2582       break;
2583
2584     if (gst_base_parse_chain (parse->sinkpad, GST_OBJECT_CAST (parse),
2585             NULL) != GST_FLOW_OK) {
2586       break;
2587     }
2588
2589     /* nothing changed, maybe due to truncated frame; break infinite loop */
2590     if (avail == gst_adapter_available (parse->priv->adapter)) {
2591       GST_DEBUG_OBJECT (parse, "no change during draining; flushing");
2592       gst_adapter_clear (parse->priv->adapter);
2593     }
2594   }
2595
2596   parse->priv->drain = FALSE;
2597 }
2598
2599 /* gst_base_parse_send_buffers
2600  *
2601  * Sends buffers collected in send_buffers downstream, and ensures that list
2602  * is empty at the end (errors or not).
2603  */
2604 static GstFlowReturn
2605 gst_base_parse_send_buffers (GstBaseParse * parse)
2606 {
2607   GSList *send = NULL;
2608   GstBuffer *buf;
2609   GstFlowReturn ret = GST_FLOW_OK;
2610   gboolean first = TRUE;
2611
2612   send = parse->priv->buffers_send;
2613
2614   /* send buffers */
2615   while (send) {
2616     buf = GST_BUFFER_CAST (send->data);
2617     GST_LOG_OBJECT (parse, "pushing buffer %p, dts %"
2618         GST_TIME_FORMAT ", pts %" GST_TIME_FORMAT ", duration %" GST_TIME_FORMAT
2619         ", offset %" G_GINT64_FORMAT, buf,
2620         GST_TIME_ARGS (GST_BUFFER_DTS (buf)),
2621         GST_TIME_ARGS (GST_BUFFER_PTS (buf)),
2622         GST_TIME_ARGS (GST_BUFFER_DURATION (buf)), GST_BUFFER_OFFSET (buf));
2623
2624     /* Make sure the first buffer is always DISCONT. If we split
2625      * GOPs inside the parser this is otherwise not guaranteed */
2626     if (first) {
2627       GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
2628       first = FALSE;
2629     }
2630
2631     /* iterate output queue an push downstream */
2632     ret = gst_pad_push (parse->srcpad, buf);
2633     send = g_slist_delete_link (send, send);
2634
2635     /* clear any leftover if error */
2636     if (G_UNLIKELY (ret != GST_FLOW_OK)) {
2637       while (send) {
2638         buf = GST_BUFFER_CAST (send->data);
2639         gst_buffer_unref (buf);
2640         send = g_slist_delete_link (send, send);
2641       }
2642     }
2643   }
2644
2645   parse->priv->buffers_send = send;
2646
2647   return ret;
2648 }
2649
2650 /* gst_base_parse_start_fragment:
2651  *
2652  * Prepares for processing a reverse playback (forward) fragment
2653  * by (re)setting proper state variables.
2654  */
2655 static GstFlowReturn
2656 gst_base_parse_start_fragment (GstBaseParse * parse)
2657 {
2658   GST_LOG_OBJECT (parse, "starting fragment");
2659
2660   /* invalidate so no fall-back timestamping is performed;
2661    * ok if taken from subclass or upstream */
2662   parse->priv->next_pts = GST_CLOCK_TIME_NONE;
2663   parse->priv->prev_pts = GST_CLOCK_TIME_NONE;
2664   parse->priv->next_dts = GST_CLOCK_TIME_NONE;
2665   parse->priv->prev_dts = GST_CLOCK_TIME_NONE;
2666   /* prevent it hanging around stop all the time */
2667   parse->segment.position = GST_CLOCK_TIME_NONE;
2668   /* mark next run */
2669   parse->priv->discont = TRUE;
2670
2671   /* head of previous fragment is now pending tail of current fragment */
2672   parse->priv->buffers_pending = parse->priv->buffers_head;
2673   parse->priv->buffers_head = NULL;
2674
2675   return GST_FLOW_OK;
2676 }
2677
2678
2679 /* gst_base_parse_finish_fragment:
2680  *
2681  * Processes a reverse playback (forward) fragment:
2682  * - append head of last fragment that was skipped to current fragment data
2683  * - drain the resulting current fragment data (i.e. repeated chain)
2684  * - add time/duration (if needed) to frames queued by chain
2685  * - push queued data
2686  */
2687 static GstFlowReturn
2688 gst_base_parse_finish_fragment (GstBaseParse * parse, gboolean prev_head)
2689 {
2690   GstBuffer *buf;
2691   GstFlowReturn ret = GST_FLOW_OK;
2692   gboolean seen_key = FALSE, seen_delta = FALSE;
2693
2694   GST_LOG_OBJECT (parse, "finishing fragment");
2695
2696   /* restore order */
2697   parse->priv->buffers_pending = g_slist_reverse (parse->priv->buffers_pending);
2698   while (parse->priv->buffers_pending) {
2699     buf = GST_BUFFER_CAST (parse->priv->buffers_pending->data);
2700     if (prev_head) {
2701       GST_LOG_OBJECT (parse, "adding pending buffer (size %" G_GSIZE_FORMAT ")",
2702           gst_buffer_get_size (buf));
2703       gst_adapter_push (parse->priv->adapter, buf);
2704     } else {
2705       GST_LOG_OBJECT (parse, "discarding head buffer");
2706       gst_buffer_unref (buf);
2707     }
2708     parse->priv->buffers_pending =
2709         g_slist_delete_link (parse->priv->buffers_pending,
2710         parse->priv->buffers_pending);
2711   }
2712
2713   /* chain looks for frames and queues resulting ones (in stead of pushing) */
2714   /* initial skipped data is added to buffers_pending */
2715   gst_base_parse_drain (parse);
2716
2717   if (parse->priv->buffers_send) {
2718     buf = GST_BUFFER_CAST (parse->priv->buffers_send->data);
2719     seen_key |= !GST_BUFFER_FLAG_IS_SET (buf, GST_BUFFER_FLAG_DELTA_UNIT);
2720   }
2721
2722   /* add metadata (if needed to queued buffers */
2723   GST_LOG_OBJECT (parse, "last timestamp: %" GST_TIME_FORMAT,
2724       GST_TIME_ARGS (parse->priv->last_pts));
2725   while (parse->priv->buffers_queued) {
2726     buf = GST_BUFFER_CAST (parse->priv->buffers_queued->data);
2727
2728     /* no touching if upstream or parsing provided time */
2729     if (GST_BUFFER_PTS_IS_VALID (buf)) {
2730       GST_LOG_OBJECT (parse, "buffer has time %" GST_TIME_FORMAT,
2731           GST_TIME_ARGS (GST_BUFFER_PTS (buf)));
2732     } else if (GST_BUFFER_DURATION_IS_VALID (buf)) {
2733       if (GST_CLOCK_TIME_IS_VALID (parse->priv->last_pts)) {
2734         if (G_LIKELY (GST_BUFFER_DURATION (buf) <= parse->priv->last_pts))
2735           parse->priv->last_pts -= GST_BUFFER_DURATION (buf);
2736         else
2737           parse->priv->last_pts = 0;
2738         GST_BUFFER_PTS (buf) = parse->priv->last_pts;
2739         GST_LOG_OBJECT (parse, "applied time %" GST_TIME_FORMAT,
2740             GST_TIME_ARGS (GST_BUFFER_PTS (buf)));
2741       }
2742       if (GST_CLOCK_TIME_IS_VALID (parse->priv->last_dts)) {
2743         if (G_LIKELY (GST_BUFFER_DURATION (buf) <= parse->priv->last_dts))
2744           parse->priv->last_dts -= GST_BUFFER_DURATION (buf);
2745         else
2746           parse->priv->last_dts = 0;
2747         GST_BUFFER_DTS (buf) = parse->priv->last_dts;
2748         GST_LOG_OBJECT (parse, "applied dts %" GST_TIME_FORMAT,
2749             GST_TIME_ARGS (GST_BUFFER_DTS (buf)));
2750       }
2751     } else {
2752       /* no idea, very bad */
2753       GST_WARNING_OBJECT (parse, "could not determine time for buffer");
2754     }
2755
2756     parse->priv->last_pts = GST_BUFFER_PTS (buf);
2757     parse->priv->last_dts = GST_BUFFER_DTS (buf);
2758
2759     /* reverse order for ascending sending */
2760     /* send downstream at keyframe not preceded by a keyframe
2761      * (e.g. that should identify start of collection of IDR nals) */
2762     if (GST_BUFFER_FLAG_IS_SET (buf, GST_BUFFER_FLAG_DELTA_UNIT)) {
2763       if (seen_key) {
2764         ret = gst_base_parse_send_buffers (parse);
2765         /* if a problem, throw all to sending */
2766         if (ret != GST_FLOW_OK) {
2767           parse->priv->buffers_send =
2768               g_slist_reverse (parse->priv->buffers_queued);
2769           parse->priv->buffers_queued = NULL;
2770           break;
2771         }
2772         seen_key = FALSE;
2773       }
2774       seen_delta = TRUE;
2775     } else {
2776       seen_key = TRUE;
2777     }
2778
2779     parse->priv->buffers_send =
2780         g_slist_prepend (parse->priv->buffers_send, buf);
2781     parse->priv->buffers_queued =
2782         g_slist_delete_link (parse->priv->buffers_queued,
2783         parse->priv->buffers_queued);
2784   }
2785
2786   /* audio may have all marked as keyframe, so arrange to send here. Also
2787    * we might have ended the loop above on a keyframe, in which case we
2788    * should */
2789   if (!seen_delta || seen_key)
2790     ret = gst_base_parse_send_buffers (parse);
2791
2792   /* any trailing unused no longer usable (ideally none) */
2793   if (G_UNLIKELY (gst_adapter_available (parse->priv->adapter))) {
2794     GST_DEBUG_OBJECT (parse, "discarding %" G_GSIZE_FORMAT " trailing bytes",
2795         gst_adapter_available (parse->priv->adapter));
2796     gst_adapter_clear (parse->priv->adapter);
2797   }
2798
2799   return ret;
2800 }
2801
2802 /* small helper that checks whether we have been trying to resync too long */
2803 static inline GstFlowReturn
2804 gst_base_parse_check_sync (GstBaseParse * parse)
2805 {
2806   if (G_UNLIKELY (parse->priv->discont &&
2807           parse->priv->offset - parse->priv->sync_offset > 2 * 1024 * 1024)) {
2808     GST_ELEMENT_ERROR (parse, STREAM, DECODE,
2809         ("Failed to parse stream"), (NULL));
2810     return GST_FLOW_ERROR;
2811   }
2812
2813   return GST_FLOW_OK;
2814 }
2815
2816 static GstFlowReturn
2817 gst_base_parse_process_streamheader (GstBaseParse * parse)
2818 {
2819   GstCaps *caps;
2820   GstStructure *str;
2821   const GValue *value;
2822   GstFlowReturn ret = GST_FLOW_OK;
2823
2824   caps = gst_pad_get_current_caps (GST_BASE_PARSE_SINK_PAD (parse));
2825   if (caps == NULL)
2826     goto notfound;
2827
2828   str = gst_caps_get_structure (caps, 0);
2829   value = gst_structure_get_value (str, "streamheader");
2830   if (value == NULL)
2831     goto notfound;
2832
2833   GST_DEBUG_OBJECT (parse, "Found streamheader field on input caps");
2834
2835   if (GST_VALUE_HOLDS_ARRAY (value)) {
2836     gint i;
2837     gsize len = gst_value_array_get_size (value);
2838
2839     for (i = 0; i < len; i++) {
2840       GstBuffer *buffer =
2841           gst_value_get_buffer (gst_value_array_get_value (value, i));
2842       ret =
2843           gst_base_parse_chain (GST_BASE_PARSE_SINK_PAD (parse),
2844           GST_OBJECT_CAST (parse), gst_buffer_ref (buffer));
2845     }
2846
2847   } else if (GST_VALUE_HOLDS_BUFFER (value)) {
2848     GstBuffer *buffer = gst_value_get_buffer (value);
2849     ret =
2850         gst_base_parse_chain (GST_BASE_PARSE_SINK_PAD (parse),
2851         GST_OBJECT_CAST (parse), gst_buffer_ref (buffer));
2852   }
2853
2854   gst_caps_unref (caps);
2855
2856   return ret;
2857
2858 notfound:
2859   {
2860     if (caps) {
2861       gst_caps_unref (caps);
2862     }
2863
2864     GST_DEBUG_OBJECT (parse, "No streamheader on caps");
2865     return GST_FLOW_OK;
2866   }
2867 }
2868
2869 static GstFlowReturn
2870 gst_base_parse_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
2871 {
2872   GstBaseParseClass *bclass;
2873   GstBaseParse *parse;
2874   GstFlowReturn ret = GST_FLOW_OK;
2875   GstFlowReturn old_ret = GST_FLOW_OK;
2876   GstBuffer *tmpbuf = NULL;
2877   guint fsize = 1;
2878   gint skip = -1;
2879   guint min_size, av;
2880   GstClockTime pts, dts;
2881
2882   parse = GST_BASE_PARSE (parent);
2883   bclass = GST_BASE_PARSE_GET_CLASS (parse);
2884   GST_DEBUG_OBJECT (parent, "chain");
2885
2886   /* early out for speed, if we need to skip */
2887   if (buffer && GST_BUFFER_IS_DISCONT (buffer))
2888     parse->priv->skip = 0;
2889   if (parse->priv->skip > 0) {
2890     gsize bsize = gst_buffer_get_size (buffer);
2891     GST_DEBUG ("Got %" G_GSIZE_FORMAT " buffer, need to skip %u", bsize,
2892         parse->priv->skip);
2893     if (parse->priv->skip >= bsize) {
2894       parse->priv->skip -= bsize;
2895       GST_DEBUG ("All the buffer is skipped");
2896       parse->priv->offset += bsize;
2897       parse->priv->sync_offset = parse->priv->offset;
2898       return GST_FLOW_OK;
2899     }
2900     buffer = gst_buffer_make_writable (buffer);
2901     gst_buffer_resize (buffer, parse->priv->skip, bsize - parse->priv->skip);
2902     parse->priv->offset += parse->priv->skip;
2903     GST_DEBUG ("Done skipping, we have %u left on this buffer",
2904         (unsigned) (bsize - parse->priv->skip));
2905     parse->priv->skip = 0;
2906     parse->priv->discont = TRUE;
2907   }
2908
2909   if (G_UNLIKELY (parse->priv->first_buffer)) {
2910     parse->priv->first_buffer = FALSE;
2911     if (!GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_HEADER)) {
2912       /* this stream has no header buffers, check if we just prepend the
2913        * streamheader from caps to the stream */
2914       GST_DEBUG_OBJECT (parse, "Looking for streamheader field on caps to "
2915           "prepend to the stream");
2916       gst_base_parse_process_streamheader (parse);
2917     } else {
2918       GST_DEBUG_OBJECT (parse, "Stream has header buffers, not prepending "
2919           "streamheader from caps");
2920     }
2921   }
2922
2923   if (parse->priv->detecting) {
2924     GstBuffer *detect_buf;
2925
2926     if (parse->priv->detect_buffers_size == 0) {
2927       detect_buf = gst_buffer_ref (buffer);
2928     } else {
2929       GList *l;
2930       guint offset = 0;
2931
2932       detect_buf = gst_buffer_new ();
2933
2934       for (l = parse->priv->detect_buffers; l; l = l->next) {
2935         gsize tmpsize = gst_buffer_get_size (l->data);
2936
2937         gst_buffer_copy_into (detect_buf, GST_BUFFER_CAST (l->data),
2938             GST_BUFFER_COPY_MEMORY, offset, tmpsize);
2939         offset += tmpsize;
2940       }
2941       if (buffer)
2942         gst_buffer_copy_into (detect_buf, buffer, GST_BUFFER_COPY_MEMORY,
2943             offset, gst_buffer_get_size (buffer));
2944     }
2945
2946     ret = bclass->detect (parse, detect_buf);
2947     gst_buffer_unref (detect_buf);
2948
2949     if (ret == GST_FLOW_OK) {
2950       GList *l;
2951
2952       /* Detected something */
2953       parse->priv->detecting = FALSE;
2954
2955       for (l = parse->priv->detect_buffers; l; l = l->next) {
2956         if (ret == GST_FLOW_OK && !parse->priv->flushing)
2957           ret =
2958               gst_base_parse_chain (GST_BASE_PARSE_SINK_PAD (parse),
2959               parent, GST_BUFFER_CAST (l->data));
2960         else
2961           gst_buffer_unref (GST_BUFFER_CAST (l->data));
2962       }
2963       g_list_free (parse->priv->detect_buffers);
2964       parse->priv->detect_buffers = NULL;
2965       parse->priv->detect_buffers_size = 0;
2966
2967       if (ret != GST_FLOW_OK) {
2968         return ret;
2969       }
2970
2971       /* Handle the current buffer */
2972     } else if (ret == GST_FLOW_NOT_NEGOTIATED) {
2973       /* Still detecting, append buffer or error out if draining */
2974
2975       if (parse->priv->drain) {
2976         GST_DEBUG_OBJECT (parse, "Draining but did not detect format yet");
2977         return GST_FLOW_ERROR;
2978       } else if (parse->priv->flushing) {
2979         g_list_foreach (parse->priv->detect_buffers, (GFunc) gst_buffer_unref,
2980             NULL);
2981         g_list_free (parse->priv->detect_buffers);
2982         parse->priv->detect_buffers = NULL;
2983         parse->priv->detect_buffers_size = 0;
2984       } else {
2985         parse->priv->detect_buffers =
2986             g_list_append (parse->priv->detect_buffers, buffer);
2987         parse->priv->detect_buffers_size += gst_buffer_get_size (buffer);
2988         return GST_FLOW_OK;
2989       }
2990     } else {
2991       /* Something went wrong, subclass responsible for error reporting */
2992       return ret;
2993     }
2994
2995     /* And now handle the current buffer if detection worked */
2996   }
2997
2998   if (G_LIKELY (buffer)) {
2999     GST_LOG_OBJECT (parse,
3000         "buffer size: %" G_GSIZE_FORMAT ", offset = %" G_GINT64_FORMAT
3001         ", dts %" GST_TIME_FORMAT ", pts %" GST_TIME_FORMAT,
3002         gst_buffer_get_size (buffer), GST_BUFFER_OFFSET (buffer),
3003         GST_TIME_ARGS (GST_BUFFER_DTS (buffer)),
3004         GST_TIME_ARGS (GST_BUFFER_PTS (buffer)));
3005
3006     if (G_UNLIKELY (!parse->priv->disable_passthrough
3007             && parse->priv->passthrough)) {
3008       GstBaseParseFrame frame;
3009
3010       gst_base_parse_frame_init (&frame);
3011       frame.buffer = gst_buffer_make_writable (buffer);
3012       ret = gst_base_parse_push_frame (parse, &frame);
3013       gst_base_parse_frame_free (&frame);
3014       return ret;
3015     }
3016     if (G_UNLIKELY (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DISCONT))) {
3017       /* upstream feeding us in reverse playback;
3018        * finish previous fragment and start new upon DISCONT */
3019       if (parse->segment.rate < 0.0) {
3020         GST_DEBUG_OBJECT (parse, "buffer starts new reverse playback fragment");
3021         ret = gst_base_parse_finish_fragment (parse, TRUE);
3022         gst_base_parse_start_fragment (parse);
3023       } else {
3024         /* discont in the stream, drain and mark discont for next output */
3025         gst_base_parse_drain (parse);
3026         parse->priv->discont = TRUE;
3027       }
3028     }
3029     gst_adapter_push (parse->priv->adapter, buffer);
3030   }
3031
3032   /* Parse and push as many frames as possible */
3033   /* Stop either when adapter is empty or we are flushing */
3034   while (!parse->priv->flushing) {
3035     gint flush = 0;
3036
3037     /* note: if subclass indicates MAX fsize,
3038      * this will not likely be available anyway ... */
3039     min_size = MAX (parse->priv->min_frame_size, fsize);
3040     av = gst_adapter_available (parse->priv->adapter);
3041
3042     if (G_UNLIKELY (parse->priv->drain)) {
3043       min_size = av;
3044       GST_DEBUG_OBJECT (parse, "draining, data left: %d", min_size);
3045       if (G_UNLIKELY (!min_size)) {
3046         goto done;
3047       }
3048     }
3049
3050     /* Collect at least min_frame_size bytes */
3051     if (av < min_size) {
3052       GST_DEBUG_OBJECT (parse, "not enough data available (only %d bytes)", av);
3053       goto done;
3054     }
3055
3056     /* move along with upstream timestamp (if any),
3057      * but interpolate in between */
3058     pts = gst_adapter_prev_pts (parse->priv->adapter, NULL);
3059     dts = gst_adapter_prev_dts (parse->priv->adapter, NULL);
3060     if (GST_CLOCK_TIME_IS_VALID (pts) && (parse->priv->prev_pts != pts))
3061       parse->priv->prev_pts = parse->priv->next_pts = pts;
3062
3063     if (GST_CLOCK_TIME_IS_VALID (dts) && (parse->priv->prev_dts != dts))
3064       parse->priv->prev_dts = parse->priv->next_dts = dts;
3065
3066     /* we can mess with, erm interpolate, timestamps,
3067      * and incoming stuff has PTS but no DTS seen so far,
3068      * then pick up DTS from PTS and hope for the best ... */
3069     if (parse->priv->infer_ts &&
3070         parse->priv->pts_interpolate &&
3071         !GST_CLOCK_TIME_IS_VALID (dts) &&
3072         !GST_CLOCK_TIME_IS_VALID (parse->priv->prev_dts) &&
3073         GST_CLOCK_TIME_IS_VALID (pts))
3074       parse->priv->next_dts = pts;
3075
3076     /* always pass all available data */
3077     tmpbuf = gst_adapter_get_buffer (parse->priv->adapter, av);
3078
3079     /* already inform subclass what timestamps we have planned,
3080      * at least if provided by time-based upstream */
3081     if (parse->priv->upstream_format == GST_FORMAT_TIME) {
3082       tmpbuf = gst_buffer_make_writable (tmpbuf);
3083       GST_BUFFER_PTS (tmpbuf) = parse->priv->next_pts;
3084       GST_BUFFER_DTS (tmpbuf) = parse->priv->next_dts;
3085       GST_BUFFER_DURATION (tmpbuf) = GST_CLOCK_TIME_NONE;
3086     }
3087
3088     /* keep the adapter mapped, so keep track of what has to be flushed */
3089     ret = gst_base_parse_handle_buffer (parse, tmpbuf, &skip, &flush);
3090     tmpbuf = NULL;
3091
3092     if (ret != GST_FLOW_OK && ret != GST_FLOW_NOT_LINKED) {
3093       goto done;
3094     }
3095     if (skip == 0 && flush == 0) {
3096       GST_LOG_OBJECT (parse, "nothing skipped and no frames finished, "
3097           "breaking to get more data");
3098       /* ignore this return as it produced no data */
3099       ret = old_ret;
3100       goto done;
3101     }
3102     old_ret = ret;
3103   }
3104
3105 done:
3106   GST_LOG_OBJECT (parse, "chain leaving");
3107   return ret;
3108 }
3109
3110 /* pull @size bytes at current offset,
3111  * i.e. at least try to and possibly return a shorter buffer if near the end */
3112 static GstFlowReturn
3113 gst_base_parse_pull_range (GstBaseParse * parse, guint size,
3114     GstBuffer ** buffer)
3115 {
3116   GstFlowReturn ret = GST_FLOW_OK;
3117
3118   g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
3119
3120   /* Caching here actually makes much less difference than one would expect.
3121    * We do it mainly to avoid pulling buffers of 1 byte all the time */
3122   if (parse->priv->cache) {
3123     gint64 cache_offset = GST_BUFFER_OFFSET (parse->priv->cache);
3124     gint cache_size = gst_buffer_get_size (parse->priv->cache);
3125
3126     if (cache_offset <= parse->priv->offset &&
3127         (parse->priv->offset + size) <= (cache_offset + cache_size)) {
3128       *buffer = gst_buffer_copy_region (parse->priv->cache, GST_BUFFER_COPY_ALL,
3129           parse->priv->offset - cache_offset, size);
3130       GST_BUFFER_OFFSET (*buffer) = parse->priv->offset;
3131       return GST_FLOW_OK;
3132     }
3133     /* not enough data in the cache, free cache and get a new one */
3134     gst_buffer_unref (parse->priv->cache);
3135     parse->priv->cache = NULL;
3136   }
3137
3138   /* refill the cache */
3139   ret =
3140       gst_pad_pull_range (parse->sinkpad, parse->priv->offset, MAX (size,
3141           64 * 1024), &parse->priv->cache);
3142   if (ret != GST_FLOW_OK) {
3143     parse->priv->cache = NULL;
3144     return ret;
3145   }
3146
3147   if (gst_buffer_get_size (parse->priv->cache) >= size) {
3148     *buffer =
3149         gst_buffer_copy_region (parse->priv->cache, GST_BUFFER_COPY_ALL, 0,
3150         size);
3151     GST_BUFFER_OFFSET (*buffer) = parse->priv->offset;
3152     return GST_FLOW_OK;
3153   }
3154
3155   /* Not possible to get enough data, try a last time with
3156    * requesting exactly the size we need */
3157   gst_buffer_unref (parse->priv->cache);
3158   parse->priv->cache = NULL;
3159
3160   ret = gst_pad_pull_range (parse->sinkpad, parse->priv->offset, size,
3161       &parse->priv->cache);
3162
3163   if (ret != GST_FLOW_OK) {
3164     GST_DEBUG_OBJECT (parse, "pull_range returned %d", ret);
3165     *buffer = NULL;
3166     return ret;
3167   }
3168
3169   if (gst_buffer_get_size (parse->priv->cache) < size) {
3170     GST_DEBUG_OBJECT (parse, "Returning short buffer at offset %"
3171         G_GUINT64_FORMAT ": wanted %u bytes, got %" G_GSIZE_FORMAT " bytes",
3172         parse->priv->offset, size, gst_buffer_get_size (parse->priv->cache));
3173
3174     *buffer = parse->priv->cache;
3175     parse->priv->cache = NULL;
3176
3177     return GST_FLOW_OK;
3178   }
3179
3180   *buffer =
3181       gst_buffer_copy_region (parse->priv->cache, GST_BUFFER_COPY_ALL, 0, size);
3182   GST_BUFFER_OFFSET (*buffer) = parse->priv->offset;
3183
3184   return GST_FLOW_OK;
3185 }
3186
3187 static GstFlowReturn
3188 gst_base_parse_handle_previous_fragment (GstBaseParse * parse)
3189 {
3190   gint64 offset = 0;
3191   GstClockTime ts = 0;
3192   GstBuffer *buffer;
3193   GstFlowReturn ret;
3194
3195   GST_DEBUG_OBJECT (parse, "fragment ended; last_ts = %" GST_TIME_FORMAT
3196       ", last_offset = %" G_GINT64_FORMAT,
3197       GST_TIME_ARGS (parse->priv->last_pts), parse->priv->last_offset);
3198
3199   if (!parse->priv->last_offset
3200       || parse->priv->last_pts <= parse->segment.start) {
3201     GST_DEBUG_OBJECT (parse, "past start of segment %" GST_TIME_FORMAT,
3202         GST_TIME_ARGS (parse->segment.start));
3203     ret = GST_FLOW_EOS;
3204     goto exit;
3205   }
3206
3207   /* last fragment started at last_offset / last_ts;
3208    * seek back 10s capped at 1MB */
3209   if (parse->priv->last_pts >= 10 * GST_SECOND)
3210     ts = parse->priv->last_pts - 10 * GST_SECOND;
3211   /* if we are exact now, we will be more so going backwards */
3212   if (parse->priv->exact_position) {
3213     offset = gst_base_parse_find_offset (parse, ts, TRUE, NULL);
3214   } else {
3215     if (!gst_base_parse_convert (parse, GST_FORMAT_TIME, ts,
3216             GST_FORMAT_BYTES, &offset)) {
3217       GST_DEBUG_OBJECT (parse, "conversion failed, only BYTE based");
3218     }
3219   }
3220   offset = CLAMP (offset, parse->priv->last_offset - 1024 * 1024,
3221       parse->priv->last_offset - 1024);
3222   offset = MAX (0, offset);
3223
3224   GST_DEBUG_OBJECT (parse, "next fragment from offset %" G_GINT64_FORMAT,
3225       offset);
3226   parse->priv->offset = offset;
3227
3228   ret = gst_base_parse_pull_range (parse, parse->priv->last_offset - offset,
3229       &buffer);
3230   if (ret != GST_FLOW_OK)
3231     goto exit;
3232
3233   /* offset will increase again as fragment is processed/parsed */
3234   parse->priv->last_offset = offset;
3235
3236   gst_base_parse_start_fragment (parse);
3237   gst_adapter_push (parse->priv->adapter, buffer);
3238   ret = gst_base_parse_finish_fragment (parse, TRUE);
3239   if (ret != GST_FLOW_OK)
3240     goto exit;
3241
3242   /* force previous fragment */
3243   parse->priv->offset = -1;
3244
3245 exit:
3246   return ret;
3247 }
3248
3249 /* PULL mode:
3250  * pull and scan for next frame starting from current offset
3251  * ajusts sync, drain and offset going along */
3252 static GstFlowReturn
3253 gst_base_parse_scan_frame (GstBaseParse * parse, GstBaseParseClass * klass)
3254 {
3255   GstBuffer *buffer;
3256   GstFlowReturn ret = GST_FLOW_OK;
3257   guint fsize, min_size;
3258   gint flushed = 0;
3259   gint skip = 0;
3260
3261   GST_LOG_OBJECT (parse, "scanning for frame at offset %" G_GUINT64_FORMAT
3262       " (%#" G_GINT64_MODIFIER "x)", parse->priv->offset, parse->priv->offset);
3263
3264   /* let's make this efficient for all subclass once and for all;
3265    * maybe it does not need this much, but in the latter case, we know we are
3266    * in pull mode here and might as well try to read and supply more anyway
3267    * (so does the buffer caching mechanism) */
3268   fsize = 64 * 1024;
3269
3270   while (TRUE) {
3271     min_size = MAX (parse->priv->min_frame_size, fsize);
3272
3273     GST_LOG_OBJECT (parse, "reading buffer size %u", min_size);
3274
3275     ret = gst_base_parse_pull_range (parse, min_size, &buffer);
3276     if (ret != GST_FLOW_OK)
3277       goto done;
3278
3279     /* if we got a short read, inform subclass we are draining leftover
3280      * and no more is to be expected */
3281     if (gst_buffer_get_size (buffer) < min_size) {
3282       GST_LOG_OBJECT (parse, "... but did not get that; marked draining");
3283       parse->priv->drain = TRUE;
3284     }
3285
3286     if (parse->priv->detecting) {
3287       ret = klass->detect (parse, buffer);
3288       if (ret == GST_FLOW_NOT_NEGOTIATED) {
3289         /* If draining we error out, otherwise request a buffer
3290          * with 64kb more */
3291         if (parse->priv->drain) {
3292           gst_buffer_unref (buffer);
3293           GST_ERROR_OBJECT (parse, "Failed to detect format but draining");
3294           return GST_FLOW_ERROR;
3295         } else {
3296           fsize += 64 * 1024;
3297           gst_buffer_unref (buffer);
3298           continue;
3299         }
3300       } else if (ret != GST_FLOW_OK) {
3301         gst_buffer_unref (buffer);
3302         GST_ERROR_OBJECT (parse, "detect() returned %s",
3303             gst_flow_get_name (ret));
3304         return ret;
3305       }
3306
3307       /* Else handle this buffer normally */
3308     }
3309
3310     ret = gst_base_parse_handle_buffer (parse, buffer, &skip, &flushed);
3311     if (ret != GST_FLOW_OK)
3312       break;
3313
3314     /* If a large amount of data was requested to be skipped, _handle_buffer
3315        might have set the priv->skip flag to an extra amount on top of skip.
3316        In pull mode, we can just pull from the new offset directly. */
3317     parse->priv->offset += parse->priv->skip;
3318     parse->priv->skip = 0;
3319
3320     /* something flushed means something happened,
3321      * and we should bail out of this loop so as not to occupy
3322      * the task thread indefinitely */
3323     if (flushed) {
3324       GST_LOG_OBJECT (parse, "frame finished, breaking loop");
3325       break;
3326     }
3327     /* nothing flushed, no skip and draining, so nothing left to do */
3328     if (!skip && parse->priv->drain) {
3329       GST_LOG_OBJECT (parse, "no activity or result when draining; "
3330           "breaking loop and marking EOS");
3331       ret = GST_FLOW_EOS;
3332       break;
3333     }
3334     /* otherwise, get some more data
3335      * note that is checked this does not happen indefinitely */
3336     if (!skip) {
3337       GST_LOG_OBJECT (parse, "getting some more data");
3338       fsize += 64 * 1024;
3339     }
3340     parse->priv->drain = FALSE;
3341   }
3342
3343 done:
3344   return ret;
3345 }
3346
3347 /* Loop that is used in pull mode to retrieve data from upstream */
3348 static void
3349 gst_base_parse_loop (GstPad * pad)
3350 {
3351   GstBaseParse *parse;
3352   GstBaseParseClass *klass;
3353   GstFlowReturn ret = GST_FLOW_OK;
3354
3355   parse = GST_BASE_PARSE (gst_pad_get_parent (pad));
3356   klass = GST_BASE_PARSE_GET_CLASS (parse);
3357
3358   GST_LOG_OBJECT (parse, "Entering parse loop");
3359
3360   if (G_UNLIKELY (parse->priv->push_stream_start)) {
3361     gchar *stream_id;
3362     GstEvent *event;
3363
3364     stream_id =
3365         gst_pad_create_stream_id (parse->srcpad, GST_ELEMENT_CAST (parse),
3366         NULL);
3367
3368     event = gst_event_new_stream_start (stream_id);
3369     gst_event_set_group_id (event, gst_util_group_id_next ());
3370
3371     GST_DEBUG_OBJECT (parse, "Pushing STREAM_START");
3372     gst_pad_push_event (parse->srcpad, event);
3373     parse->priv->push_stream_start = FALSE;
3374     g_free (stream_id);
3375   }
3376
3377   /* reverse playback:
3378    * first fragment (closest to stop time) is handled normally below,
3379    * then we pull in fragments going backwards */
3380   if (parse->segment.rate < 0.0) {
3381     /* check if we jumped back to a previous fragment,
3382      * which is a post-first fragment */
3383     if (parse->priv->offset < 0) {
3384       ret = gst_base_parse_handle_previous_fragment (parse);
3385       goto done;
3386     }
3387   }
3388
3389   ret = gst_base_parse_scan_frame (parse, klass);
3390
3391   /* eat expected eos signalling past segment in reverse playback */
3392   if (parse->segment.rate < 0.0 && ret == GST_FLOW_EOS &&
3393       parse->segment.position >= parse->segment.stop) {
3394     GST_DEBUG_OBJECT (parse, "downstream has reached end of segment");
3395     /* push what was accumulated during loop run */
3396     gst_base_parse_finish_fragment (parse, FALSE);
3397     /* force previous fragment */
3398     parse->priv->offset = -1;
3399     goto eos;
3400   }
3401
3402   if (ret != GST_FLOW_OK)
3403     goto done;
3404
3405 done:
3406   if (ret == GST_FLOW_EOS)
3407     goto eos;
3408   else if (ret != GST_FLOW_OK)
3409     goto pause;
3410
3411   gst_object_unref (parse);
3412   return;
3413
3414   /* ERRORS */
3415 eos:
3416   {
3417     ret = GST_FLOW_EOS;
3418     GST_DEBUG_OBJECT (parse, "eos");
3419     /* fall-through */
3420   }
3421 pause:
3422   {
3423     gboolean push_eos = FALSE;
3424
3425     GST_DEBUG_OBJECT (parse, "pausing task, reason %s",
3426         gst_flow_get_name (ret));
3427     gst_pad_pause_task (parse->sinkpad);
3428
3429     if (ret == GST_FLOW_EOS) {
3430       /* handle end-of-stream/segment */
3431       if (parse->segment.flags & GST_SEGMENT_FLAG_SEGMENT) {
3432         gint64 stop;
3433
3434         if ((stop = parse->segment.stop) == -1)
3435           stop = parse->segment.duration;
3436
3437         GST_DEBUG_OBJECT (parse, "sending segment_done");
3438
3439         gst_element_post_message
3440             (GST_ELEMENT_CAST (parse),
3441             gst_message_new_segment_done (GST_OBJECT_CAST (parse),
3442                 GST_FORMAT_TIME, stop));
3443         gst_pad_push_event (parse->srcpad,
3444             gst_event_new_segment_done (GST_FORMAT_TIME, stop));
3445       } else {
3446         /* If we STILL have zero frames processed, fire an error */
3447         if (parse->priv->framecount == 0) {
3448           GST_ELEMENT_ERROR (parse, STREAM, WRONG_TYPE,
3449               ("No valid frames found before end of stream"), (NULL));
3450         }
3451         push_eos = TRUE;
3452       }
3453     } else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_EOS) {
3454       /* for fatal errors we post an error message, wrong-state is
3455        * not fatal because it happens due to flushes and only means
3456        * that we should stop now. */
3457       GST_ELEMENT_ERROR (parse, STREAM, FAILED, (NULL),
3458           ("streaming stopped, reason %s", gst_flow_get_name (ret)));
3459       push_eos = TRUE;
3460     }
3461     if (push_eos) {
3462       if (parse->priv->estimated_duration <= 0) {
3463         gst_base_parse_update_duration (parse);
3464       }
3465       /* Push pending events, including SEGMENT events */
3466       gst_base_parse_push_pending_events (parse);
3467
3468       gst_pad_push_event (parse->srcpad, gst_event_new_eos ());
3469     }
3470     gst_object_unref (parse);
3471   }
3472 }
3473
3474 static gboolean
3475 gst_base_parse_sink_activate (GstPad * sinkpad, GstObject * parent)
3476 {
3477   GstSchedulingFlags sched_flags;
3478   GstBaseParse *parse;
3479   GstQuery *query;
3480   gboolean pull_mode;
3481
3482   parse = GST_BASE_PARSE (parent);
3483
3484   GST_DEBUG_OBJECT (parse, "sink activate");
3485
3486   query = gst_query_new_scheduling ();
3487   if (!gst_pad_peer_query (sinkpad, query)) {
3488     gst_query_unref (query);
3489     goto baseparse_push;
3490   }
3491
3492   gst_query_parse_scheduling (query, &sched_flags, NULL, NULL, NULL);
3493
3494   pull_mode = gst_query_has_scheduling_mode (query, GST_PAD_MODE_PULL)
3495       && ((sched_flags & GST_SCHEDULING_FLAG_SEEKABLE) != 0);
3496
3497   gst_query_unref (query);
3498
3499   if (!pull_mode)
3500     goto baseparse_push;
3501
3502   GST_DEBUG_OBJECT (parse, "trying to activate in pull mode");
3503   if (!gst_pad_activate_mode (sinkpad, GST_PAD_MODE_PULL, TRUE))
3504     goto baseparse_push;
3505
3506   parse->priv->push_stream_start = TRUE;
3507
3508   return gst_pad_start_task (sinkpad, (GstTaskFunction) gst_base_parse_loop,
3509       sinkpad, NULL);
3510   /* fallback */
3511 baseparse_push:
3512   {
3513     GST_DEBUG_OBJECT (parse, "trying to activate in push mode");
3514     return gst_pad_activate_mode (sinkpad, GST_PAD_MODE_PUSH, TRUE);
3515   }
3516 }
3517
3518 static gboolean
3519 gst_base_parse_activate (GstBaseParse * parse, gboolean active)
3520 {
3521   GstBaseParseClass *klass;
3522   gboolean result = TRUE;
3523
3524   GST_DEBUG_OBJECT (parse, "activate %d", active);
3525
3526   klass = GST_BASE_PARSE_GET_CLASS (parse);
3527
3528   if (active) {
3529     if (parse->priv->pad_mode == GST_PAD_MODE_NONE && klass->start)
3530       result = klass->start (parse);
3531
3532     /* If the subclass implements ::detect we want to
3533      * call it for the first buffers now */
3534     parse->priv->detecting = (klass->detect != NULL);
3535   } else {
3536     /* We must make sure streaming has finished before resetting things
3537      * and calling the ::stop vfunc */
3538     GST_PAD_STREAM_LOCK (parse->sinkpad);
3539     GST_PAD_STREAM_UNLOCK (parse->sinkpad);
3540
3541     if (parse->priv->pad_mode != GST_PAD_MODE_NONE && klass->stop)
3542       result = klass->stop (parse);
3543
3544     parse->priv->pad_mode = GST_PAD_MODE_NONE;
3545   }
3546   GST_DEBUG_OBJECT (parse, "activate return: %d", result);
3547   return result;
3548 }
3549
3550 static gboolean
3551 gst_base_parse_sink_activate_mode (GstPad * pad, GstObject * parent,
3552     GstPadMode mode, gboolean active)
3553 {
3554   gboolean result;
3555   GstBaseParse *parse;
3556
3557   parse = GST_BASE_PARSE (parent);
3558
3559   GST_DEBUG_OBJECT (parse, "sink %sactivate in %s mode",
3560       (active) ? "" : "de", gst_pad_mode_get_name (mode));
3561
3562   if (!gst_base_parse_activate (parse, active))
3563     goto activate_failed;
3564
3565   switch (mode) {
3566     case GST_PAD_MODE_PULL:
3567       if (active) {
3568         parse->priv->pending_events =
3569             g_list_prepend (parse->priv->pending_events,
3570             gst_event_new_segment (&parse->segment));
3571         result = TRUE;
3572       } else {
3573         result = gst_pad_stop_task (pad);
3574       }
3575       break;
3576     default:
3577       result = TRUE;
3578       break;
3579   }
3580   if (result)
3581     parse->priv->pad_mode = active ? mode : GST_PAD_MODE_NONE;
3582
3583   GST_DEBUG_OBJECT (parse, "sink activate return: %d", result);
3584
3585   return result;
3586
3587   /* ERRORS */
3588 activate_failed:
3589   {
3590     GST_DEBUG_OBJECT (parse, "activate failed");
3591     return FALSE;
3592   }
3593 }
3594
3595 /**
3596  * gst_base_parse_set_duration:
3597  * @parse: #GstBaseParse.
3598  * @fmt: #GstFormat.
3599  * @duration: duration value.
3600  * @interval: how often to update the duration estimate based on bitrate, or 0.
3601  *
3602  * Sets the duration of the currently playing media. Subclass can use this
3603  * when it is able to determine duration and/or notices a change in the media
3604  * duration.  Alternatively, if @interval is non-zero (default), then stream
3605  * duration is determined based on estimated bitrate, and updated every @interval
3606  * frames.
3607  */
3608 void
3609 gst_base_parse_set_duration (GstBaseParse * parse,
3610     GstFormat fmt, gint64 duration, gint interval)
3611 {
3612   g_return_if_fail (parse != NULL);
3613
3614   if (parse->priv->upstream_has_duration) {
3615     GST_DEBUG_OBJECT (parse, "using upstream duration; discarding update");
3616     goto exit;
3617   }
3618
3619   if (duration != parse->priv->duration) {
3620     GstMessage *m;
3621
3622     m = gst_message_new_duration_changed (GST_OBJECT (parse));
3623     gst_element_post_message (GST_ELEMENT (parse), m);
3624
3625     /* TODO: what about duration tag? */
3626   }
3627   parse->priv->duration = duration;
3628   parse->priv->duration_fmt = fmt;
3629   GST_DEBUG_OBJECT (parse, "set duration: %" G_GINT64_FORMAT, duration);
3630   if (fmt == GST_FORMAT_TIME && GST_CLOCK_TIME_IS_VALID (duration)) {
3631     if (interval != 0) {
3632       GST_DEBUG_OBJECT (parse, "valid duration provided, disabling estimate");
3633       interval = 0;
3634     }
3635   }
3636   GST_DEBUG_OBJECT (parse, "set update interval: %d", interval);
3637   parse->priv->update_interval = interval;
3638 exit:
3639   return;
3640 }
3641
3642 /**
3643  * gst_base_parse_set_average_bitrate:
3644  * @parse: #GstBaseParse.
3645  * @bitrate: average bitrate in bits/second
3646  *
3647  * Optionally sets the average bitrate detected in media (if non-zero),
3648  * e.g. based on metadata, as it will be posted to the application.
3649  *
3650  * By default, announced average bitrate is estimated. The average bitrate
3651  * is used to estimate the total duration of the stream and to estimate
3652  * a seek position, if there's no index and the format is syncable
3653  * (see gst_base_parse_set_syncable()).
3654  */
3655 void
3656 gst_base_parse_set_average_bitrate (GstBaseParse * parse, guint bitrate)
3657 {
3658   parse->priv->bitrate = bitrate;
3659   GST_DEBUG_OBJECT (parse, "bitrate %u", bitrate);
3660 }
3661
3662 /**
3663  * gst_base_parse_set_min_frame_size:
3664  * @parse: #GstBaseParse.
3665  * @min_size: Minimum size of the data that this base class should give to
3666  *            subclass.
3667  *
3668  * Subclass can use this function to tell the base class that it needs to
3669  * give at least #min_size buffers.
3670  */
3671 void
3672 gst_base_parse_set_min_frame_size (GstBaseParse * parse, guint min_size)
3673 {
3674   g_return_if_fail (parse != NULL);
3675
3676   parse->priv->min_frame_size = min_size;
3677   GST_LOG_OBJECT (parse, "set frame_min_size: %d", min_size);
3678 }
3679
3680 /**
3681  * gst_base_parse_set_frame_rate:
3682  * @parse: the #GstBaseParse to set
3683  * @fps_num: frames per second (numerator).
3684  * @fps_den: frames per second (denominator).
3685  * @lead_in: frames needed before a segment for subsequent decode
3686  * @lead_out: frames needed after a segment
3687  *
3688  * If frames per second is configured, parser can take care of buffer duration
3689  * and timestamping.  When performing segment clipping, or seeking to a specific
3690  * location, a corresponding decoder might need an initial @lead_in and a
3691  * following @lead_out number of frames to ensure the desired segment is
3692  * entirely filled upon decoding.
3693  */
3694 void
3695 gst_base_parse_set_frame_rate (GstBaseParse * parse, guint fps_num,
3696     guint fps_den, guint lead_in, guint lead_out)
3697 {
3698   g_return_if_fail (parse != NULL);
3699
3700   parse->priv->fps_num = fps_num;
3701   parse->priv->fps_den = fps_den;
3702   if (!fps_num || !fps_den) {
3703     GST_DEBUG_OBJECT (parse, "invalid fps (%d/%d), ignoring parameters",
3704         fps_num, fps_den);
3705     fps_num = fps_den = 0;
3706     parse->priv->frame_duration = GST_CLOCK_TIME_NONE;
3707     parse->priv->lead_in = parse->priv->lead_out = 0;
3708     parse->priv->lead_in_ts = parse->priv->lead_out_ts = 0;
3709   } else {
3710     parse->priv->frame_duration =
3711         gst_util_uint64_scale (GST_SECOND, fps_den, fps_num);
3712     parse->priv->lead_in = lead_in;
3713     parse->priv->lead_out = lead_out;
3714     parse->priv->lead_in_ts =
3715         gst_util_uint64_scale (GST_SECOND, fps_den * lead_in, fps_num);
3716     parse->priv->lead_out_ts =
3717         gst_util_uint64_scale (GST_SECOND, fps_den * lead_out, fps_num);
3718     /* aim for about 1.5s to estimate duration */
3719     if (parse->priv->update_interval < 0) {
3720       parse->priv->update_interval = fps_num * 3 / (fps_den * 2);
3721       GST_LOG_OBJECT (parse, "estimated update interval to %d frames",
3722           parse->priv->update_interval);
3723     }
3724   }
3725   GST_LOG_OBJECT (parse, "set fps: %d/%d => duration: %" G_GINT64_FORMAT " ms",
3726       fps_num, fps_den, parse->priv->frame_duration / GST_MSECOND);
3727   GST_LOG_OBJECT (parse, "set lead in: %d frames = %" G_GUINT64_FORMAT " ms, "
3728       "lead out: %d frames = %" G_GUINT64_FORMAT " ms",
3729       lead_in, parse->priv->lead_in_ts / GST_MSECOND,
3730       lead_out, parse->priv->lead_out_ts / GST_MSECOND);
3731 }
3732
3733 /**
3734  * gst_base_parse_set_has_timing_info:
3735  * @parse: a #GstBaseParse
3736  * @has_timing: whether frames carry timing information
3737  *
3738  * Set if frames carry timing information which the subclass can (generally)
3739  * parse and provide.  In particular, intrinsic (rather than estimated) time
3740  * can be obtained following a seek.
3741  */
3742 void
3743 gst_base_parse_set_has_timing_info (GstBaseParse * parse, gboolean has_timing)
3744 {
3745   parse->priv->has_timing_info = has_timing;
3746   GST_INFO_OBJECT (parse, "has_timing: %s", (has_timing) ? "yes" : "no");
3747 }
3748
3749 /**
3750  * gst_base_parse_set_syncable:
3751  * @parse: a #GstBaseParse
3752  * @syncable: set if frame starts can be identified
3753  *
3754  * Set if frame starts can be identified. This is set by default and
3755  * determines whether seeking based on bitrate averages
3756  * is possible for a format/stream.
3757  */
3758 void
3759 gst_base_parse_set_syncable (GstBaseParse * parse, gboolean syncable)
3760 {
3761   parse->priv->syncable = syncable;
3762   GST_INFO_OBJECT (parse, "syncable: %s", (syncable) ? "yes" : "no");
3763 }
3764
3765 /**
3766  * gst_base_parse_set_passthrough:
3767  * @parse: a #GstBaseParse
3768  * @passthrough: %TRUE if parser should run in passthrough mode
3769  *
3770  * Set if the nature of the format or configuration does not allow (much)
3771  * parsing, and the parser should operate in passthrough mode (which only
3772  * applies when operating in push mode). That is, incoming buffers are
3773  * pushed through unmodified, i.e. no @check_valid_frame or @parse_frame
3774  * callbacks will be invoked, but @pre_push_frame will still be invoked,
3775  * so subclass can perform as much or as little is appropriate for
3776  * passthrough semantics in @pre_push_frame.
3777  */
3778 void
3779 gst_base_parse_set_passthrough (GstBaseParse * parse, gboolean passthrough)
3780 {
3781   parse->priv->passthrough = passthrough;
3782   GST_INFO_OBJECT (parse, "passthrough: %s", (passthrough) ? "yes" : "no");
3783 }
3784
3785 /**
3786  * gst_base_parse_set_pts_interpolation:
3787  * @parse: a #GstBaseParse
3788  * @pts_interpolate: %TRUE if parser should interpolate PTS timestamps
3789  *
3790  * By default, the base class will guess PTS timestamps using a simple
3791  * interpolation (previous timestamp + duration), which is incorrect for
3792  * data streams with reordering, where PTS can go backward. Sub-classes
3793  * implementing such formats should disable PTS interpolation.
3794  */
3795 void
3796 gst_base_parse_set_pts_interpolation (GstBaseParse * parse,
3797     gboolean pts_interpolate)
3798 {
3799   parse->priv->pts_interpolate = pts_interpolate;
3800   GST_INFO_OBJECT (parse, "PTS interpolation: %s",
3801       (pts_interpolate) ? "yes" : "no");
3802 }
3803
3804 /**
3805  * gst_base_parse_set_infer_ts:
3806  * @parse: a #GstBaseParse
3807  * @infer_ts: %TRUE if parser should infer DTS/PTS from each other
3808  *
3809  * By default, the base class might try to infer PTS from DTS and vice
3810  * versa.  While this is generally correct for audio data, it may not
3811  * be otherwise. Sub-classes implementing such formats should disable
3812  * timestamp inferring.
3813  */
3814 void
3815 gst_base_parse_set_infer_ts (GstBaseParse * parse, gboolean infer_ts)
3816 {
3817   parse->priv->infer_ts = infer_ts;
3818   GST_INFO_OBJECT (parse, "TS inferring: %s", (infer_ts) ? "yes" : "no");
3819 }
3820
3821 /**
3822  * gst_base_parse_set_latency:
3823  * @parse: a #GstBaseParse
3824  * @min_latency: minimum parse latency
3825  * @max_latency: maximum parse latency
3826  *
3827  * Sets the minimum and maximum (which may likely be equal) latency introduced
3828  * by the parsing process.  If there is such a latency, which depends on the
3829  * particular parsing of the format, it typically corresponds to 1 frame duration.
3830  */
3831 void
3832 gst_base_parse_set_latency (GstBaseParse * parse, GstClockTime min_latency,
3833     GstClockTime max_latency)
3834 {
3835   g_return_if_fail (min_latency != GST_CLOCK_TIME_NONE);
3836   g_return_if_fail (min_latency <= max_latency);
3837
3838   GST_OBJECT_LOCK (parse);
3839   parse->priv->min_latency = min_latency;
3840   parse->priv->max_latency = max_latency;
3841   GST_OBJECT_UNLOCK (parse);
3842   GST_INFO_OBJECT (parse, "min/max latency %" GST_TIME_FORMAT ", %"
3843       GST_TIME_FORMAT, GST_TIME_ARGS (min_latency),
3844       GST_TIME_ARGS (max_latency));
3845 }
3846
3847 static gboolean
3848 gst_base_parse_get_duration (GstBaseParse * parse, GstFormat format,
3849     GstClockTime * duration)
3850 {
3851   gboolean res = FALSE;
3852
3853   g_return_val_if_fail (duration != NULL, FALSE);
3854
3855   *duration = GST_CLOCK_TIME_NONE;
3856   if (parse->priv->duration != -1 && format == parse->priv->duration_fmt) {
3857     GST_LOG_OBJECT (parse, "using provided duration");
3858     *duration = parse->priv->duration;
3859     res = TRUE;
3860   } else if (parse->priv->duration != -1) {
3861     GST_LOG_OBJECT (parse, "converting provided duration");
3862     res = gst_base_parse_convert (parse, parse->priv->duration_fmt,
3863         parse->priv->duration, format, (gint64 *) duration);
3864   } else if (format == GST_FORMAT_TIME && parse->priv->estimated_duration != -1) {
3865     GST_LOG_OBJECT (parse, "using estimated duration");
3866     *duration = parse->priv->estimated_duration;
3867     res = TRUE;
3868   } else {
3869     GST_LOG_OBJECT (parse, "cannot estimate duration");
3870   }
3871
3872   GST_LOG_OBJECT (parse, "res: %d, duration %" GST_TIME_FORMAT, res,
3873       GST_TIME_ARGS (*duration));
3874   return res;
3875 }
3876
3877 static gboolean
3878 gst_base_parse_src_query_default (GstBaseParse * parse, GstQuery * query)
3879 {
3880   gboolean res = FALSE;
3881   GstPad *pad;
3882
3883   pad = GST_BASE_PARSE_SRC_PAD (parse);
3884
3885   switch (GST_QUERY_TYPE (query)) {
3886     case GST_QUERY_POSITION:
3887     {
3888       gint64 dest_value;
3889       GstFormat format;
3890
3891       GST_DEBUG_OBJECT (parse, "position query");
3892       gst_query_parse_position (query, &format, NULL);
3893
3894       /* try upstream first */
3895       res = gst_pad_query_default (pad, GST_OBJECT_CAST (parse), query);
3896       if (!res) {
3897         /* Fall back on interpreting segment */
3898         GST_OBJECT_LOCK (parse);
3899         if (format == GST_FORMAT_BYTES) {
3900           dest_value = parse->priv->offset;
3901           res = TRUE;
3902         } else if (format == parse->segment.format &&
3903             GST_CLOCK_TIME_IS_VALID (parse->segment.position)) {
3904           dest_value = gst_segment_to_stream_time (&parse->segment,
3905               parse->segment.format, parse->segment.position);
3906           res = TRUE;
3907         }
3908         GST_OBJECT_UNLOCK (parse);
3909         if (!res) {
3910           /* no precise result, upstream no idea either, then best estimate */
3911           /* priv->offset is updated in both PUSH/PULL modes */
3912           res = gst_base_parse_convert (parse,
3913               GST_FORMAT_BYTES, parse->priv->offset, format, &dest_value);
3914         }
3915         if (res)
3916           gst_query_set_position (query, format, dest_value);
3917       }
3918       break;
3919     }
3920     case GST_QUERY_DURATION:
3921     {
3922       GstFormat format;
3923       GstClockTime duration;
3924
3925       GST_DEBUG_OBJECT (parse, "duration query");
3926       gst_query_parse_duration (query, &format, NULL);
3927
3928       /* consult upstream */
3929       res = gst_pad_query_default (pad, GST_OBJECT_CAST (parse), query);
3930
3931       /* otherwise best estimate from us */
3932       if (!res) {
3933         res = gst_base_parse_get_duration (parse, format, &duration);
3934         if (res)
3935           gst_query_set_duration (query, format, duration);
3936       }
3937       break;
3938     }
3939     case GST_QUERY_SEEKING:
3940     {
3941       GstFormat fmt;
3942       GstClockTime duration = GST_CLOCK_TIME_NONE;
3943       gboolean seekable = FALSE;
3944
3945       GST_DEBUG_OBJECT (parse, "seeking query");
3946       gst_query_parse_seeking (query, &fmt, NULL, NULL, NULL);
3947
3948       /* consult upstream */
3949       res = gst_pad_query_default (pad, GST_OBJECT_CAST (parse), query);
3950
3951       /* we may be able to help if in TIME */
3952       if (fmt == GST_FORMAT_TIME && gst_base_parse_is_seekable (parse)) {
3953         gst_query_parse_seeking (query, &fmt, &seekable, NULL, NULL);
3954         /* already OK if upstream takes care */
3955         GST_LOG_OBJECT (parse, "upstream handled %d, seekable %d",
3956             res, seekable);
3957         if (!(res && seekable)) {
3958           if (!gst_base_parse_get_duration (parse, GST_FORMAT_TIME, &duration)
3959               || duration == -1) {
3960             /* seekable if we still have a chance to get duration later on */
3961             seekable =
3962                 parse->priv->upstream_seekable && parse->priv->update_interval;
3963           } else {
3964             seekable = parse->priv->upstream_seekable;
3965             GST_LOG_OBJECT (parse, "already determine upstream seekabled: %d",
3966                 seekable);
3967           }
3968           gst_query_set_seeking (query, GST_FORMAT_TIME, seekable, 0, duration);
3969           res = TRUE;
3970         }
3971       }
3972       break;
3973     }
3974     case GST_QUERY_FORMATS:
3975       gst_query_set_formatsv (query, 3, fmtlist);
3976       res = TRUE;
3977       break;
3978     case GST_QUERY_CONVERT:
3979     {
3980       GstFormat src_format, dest_format;
3981       gint64 src_value, dest_value;
3982
3983       gst_query_parse_convert (query, &src_format, &src_value,
3984           &dest_format, &dest_value);
3985
3986       res = gst_base_parse_convert (parse, src_format, src_value,
3987           dest_format, &dest_value);
3988       if (res) {
3989         gst_query_set_convert (query, src_format, src_value,
3990             dest_format, dest_value);
3991       }
3992       break;
3993     }
3994     case GST_QUERY_LATENCY:
3995     {
3996       if ((res = gst_pad_peer_query (parse->sinkpad, query))) {
3997         gboolean live;
3998         GstClockTime min_latency, max_latency;
3999
4000         gst_query_parse_latency (query, &live, &min_latency, &max_latency);
4001         GST_DEBUG_OBJECT (parse, "Peer latency: live %d, min %"
4002             GST_TIME_FORMAT " max %" GST_TIME_FORMAT, live,
4003             GST_TIME_ARGS (min_latency), GST_TIME_ARGS (max_latency));
4004
4005         GST_OBJECT_LOCK (parse);
4006         /* add our latency */
4007         min_latency += parse->priv->min_latency;
4008         if (max_latency == -1 || parse->priv->max_latency == -1)
4009           max_latency = -1;
4010         else
4011           max_latency += parse->priv->max_latency;
4012         GST_OBJECT_UNLOCK (parse);
4013
4014         gst_query_set_latency (query, live, min_latency, max_latency);
4015       }
4016       break;
4017     }
4018     case GST_QUERY_SEGMENT:
4019     {
4020       GstFormat format;
4021       gint64 start, stop;
4022
4023       format = parse->segment.format;
4024
4025       start =
4026           gst_segment_to_stream_time (&parse->segment, format,
4027           parse->segment.start);
4028       if ((stop = parse->segment.stop) == -1)
4029         stop = parse->segment.duration;
4030       else
4031         stop = gst_segment_to_stream_time (&parse->segment, format, stop);
4032
4033       gst_query_set_segment (query, parse->segment.rate, format, start, stop);
4034       res = TRUE;
4035       break;
4036     }
4037     default:
4038       res = gst_pad_query_default (pad, GST_OBJECT_CAST (parse), query);
4039       break;
4040   }
4041   return res;
4042 }
4043
4044 /* scans for a cluster start from @pos,
4045  * return GST_FLOW_OK and frame position/time in @pos/@time if found */
4046 static GstFlowReturn
4047 gst_base_parse_find_frame (GstBaseParse * parse, gint64 * pos,
4048     GstClockTime * time, GstClockTime * duration)
4049 {
4050   GstBaseParseClass *klass;
4051   gint64 orig_offset;
4052   gboolean orig_drain, orig_discont;
4053   GstFlowReturn ret = GST_FLOW_OK;
4054   GstBuffer *buf = NULL;
4055   GstBaseParseFrame *sframe = NULL;
4056
4057   g_return_val_if_fail (pos != NULL, GST_FLOW_ERROR);
4058   g_return_val_if_fail (time != NULL, GST_FLOW_ERROR);
4059   g_return_val_if_fail (duration != NULL, GST_FLOW_ERROR);
4060
4061   klass = GST_BASE_PARSE_GET_CLASS (parse);
4062
4063   *time = GST_CLOCK_TIME_NONE;
4064   *duration = GST_CLOCK_TIME_NONE;
4065
4066   /* save state */
4067   orig_offset = parse->priv->offset;
4068   orig_discont = parse->priv->discont;
4069   orig_drain = parse->priv->drain;
4070
4071   GST_DEBUG_OBJECT (parse, "scanning for frame starting at %" G_GINT64_FORMAT
4072       " (%#" G_GINT64_MODIFIER "x)", *pos, *pos);
4073
4074   /* jump elsewhere and locate next frame */
4075   parse->priv->offset = *pos;
4076   /* mark as scanning so frames don't get processed all the way */
4077   parse->priv->scanning = TRUE;
4078   ret = gst_base_parse_scan_frame (parse, klass);
4079   parse->priv->scanning = FALSE;
4080   /* retrieve frame found during scan */
4081   sframe = parse->priv->scanned_frame;
4082   parse->priv->scanned_frame = NULL;
4083
4084   if (ret != GST_FLOW_OK || !sframe)
4085     goto done;
4086
4087   /* get offset first, subclass parsing might dump other stuff in there */
4088   *pos = sframe->offset;
4089   buf = sframe->buffer;
4090   g_assert (buf);
4091
4092   /* but it should provide proper time */
4093   *time = GST_BUFFER_TIMESTAMP (buf);
4094   *duration = GST_BUFFER_DURATION (buf);
4095
4096   GST_LOG_OBJECT (parse,
4097       "frame with time %" GST_TIME_FORMAT " at offset %" G_GINT64_FORMAT,
4098       GST_TIME_ARGS (*time), *pos);
4099
4100 done:
4101   if (sframe)
4102     gst_base_parse_frame_free (sframe);
4103
4104   /* restore state */
4105   parse->priv->offset = orig_offset;
4106   parse->priv->discont = orig_discont;
4107   parse->priv->drain = orig_drain;
4108
4109   return ret;
4110 }
4111
4112 /* bisect and scan through file for frame starting before @time,
4113  * returns OK and @time/@offset if found, NONE and/or error otherwise
4114  * If @time == G_MAXINT64, scan for duration ( == last frame) */
4115 static GstFlowReturn
4116 gst_base_parse_locate_time (GstBaseParse * parse, GstClockTime * _time,
4117     gint64 * _offset)
4118 {
4119   GstFlowReturn ret = GST_FLOW_OK;
4120   gint64 lpos, hpos, newpos;
4121   GstClockTime time, ltime, htime, newtime, dur;
4122   gboolean cont = TRUE;
4123   const GstClockTime tolerance = TARGET_DIFFERENCE;
4124   const guint chunk = 4 * 1024;
4125
4126   g_return_val_if_fail (_time != NULL, GST_FLOW_ERROR);
4127   g_return_val_if_fail (_offset != NULL, GST_FLOW_ERROR);
4128
4129   GST_DEBUG_OBJECT (parse, "Bisecting for time %" GST_TIME_FORMAT,
4130       GST_TIME_ARGS (*_time));
4131
4132   /* TODO also make keyframe aware if useful some day */
4133
4134   time = *_time;
4135
4136   /* basic cases */
4137   if (time == 0) {
4138     *_offset = 0;
4139     return GST_FLOW_OK;
4140   }
4141
4142   if (time == -1) {
4143     *_offset = -1;
4144     return GST_FLOW_OK;
4145   }
4146
4147   /* do not know at first */
4148   *_offset = -1;
4149   *_time = GST_CLOCK_TIME_NONE;
4150
4151   /* need initial positions; start and end */
4152   lpos = parse->priv->first_frame_offset;
4153   ltime = parse->priv->first_frame_pts;
4154   /* try other one if no luck */
4155   if (!GST_CLOCK_TIME_IS_VALID (ltime))
4156     ltime = parse->priv->first_frame_dts;
4157   if (!gst_base_parse_get_duration (parse, GST_FORMAT_TIME, &htime)) {
4158     GST_DEBUG_OBJECT (parse, "Unknown time duration, cannot bisect");
4159     return GST_FLOW_ERROR;
4160   }
4161   hpos = parse->priv->upstream_size;
4162
4163   GST_DEBUG_OBJECT (parse,
4164       "Bisection initial bounds: bytes %" G_GINT64_FORMAT " %" G_GINT64_FORMAT
4165       ", times %" GST_TIME_FORMAT " %" GST_TIME_FORMAT, lpos, hpos,
4166       GST_TIME_ARGS (ltime), GST_TIME_ARGS (htime));
4167
4168   /* check preconditions are satisfied;
4169    * start and end are needed, except for special case where we scan for
4170    * last frame to determine duration */
4171   if (parse->priv->pad_mode != GST_PAD_MODE_PULL || !hpos ||
4172       !GST_CLOCK_TIME_IS_VALID (ltime) ||
4173       (!GST_CLOCK_TIME_IS_VALID (htime) && time != G_MAXINT64)) {
4174     return GST_FLOW_OK;
4175   }
4176
4177   /* shortcut cases */
4178   if (time < ltime) {
4179     goto exit;
4180   } else if (time < ltime + tolerance) {
4181     *_offset = lpos;
4182     *_time = ltime;
4183     goto exit;
4184   } else if (time >= htime) {
4185     *_offset = hpos;
4186     *_time = htime;
4187     goto exit;
4188   }
4189
4190   while (htime > ltime && cont) {
4191     GST_LOG_OBJECT (parse,
4192         "lpos: %" G_GUINT64_FORMAT ", ltime: %" GST_TIME_FORMAT, lpos,
4193         GST_TIME_ARGS (ltime));
4194     GST_LOG_OBJECT (parse,
4195         "hpos: %" G_GUINT64_FORMAT ", htime: %" GST_TIME_FORMAT, hpos,
4196         GST_TIME_ARGS (htime));
4197     if (G_UNLIKELY (time == G_MAXINT64)) {
4198       newpos = hpos;
4199     } else if (G_LIKELY (hpos > lpos)) {
4200       newpos =
4201           gst_util_uint64_scale (hpos - lpos, time - ltime, htime - ltime) +
4202           lpos - chunk;
4203     } else {
4204       /* should mean lpos == hpos, since lpos <= hpos is invariant */
4205       newpos = lpos;
4206       /* we check this case once, but not forever, so break loop */
4207       cont = FALSE;
4208     }
4209
4210     /* ensure */
4211     newpos = CLAMP (newpos, lpos, hpos);
4212     GST_LOG_OBJECT (parse,
4213         "estimated _offset for %" GST_TIME_FORMAT ": %" G_GINT64_FORMAT,
4214         GST_TIME_ARGS (time), newpos);
4215
4216     ret = gst_base_parse_find_frame (parse, &newpos, &newtime, &dur);
4217     if (ret == GST_FLOW_EOS) {
4218       /* heuristic HACK */
4219       hpos = MAX (lpos, hpos - chunk);
4220       continue;
4221     } else if (ret != GST_FLOW_OK) {
4222       goto exit;
4223     }
4224
4225     if (newtime == -1 || newpos == -1) {
4226       GST_DEBUG_OBJECT (parse, "subclass did not provide metadata; aborting");
4227       break;
4228     }
4229
4230     if (G_UNLIKELY (time == G_MAXINT64)) {
4231       *_offset = newpos;
4232       *_time = newtime;
4233       if (GST_CLOCK_TIME_IS_VALID (dur))
4234         *_time += dur;
4235       break;
4236     } else if (newtime > time) {
4237       /* overshoot */
4238       hpos = (newpos >= hpos) ? MAX (lpos, hpos - chunk) : MAX (lpos, newpos);
4239       htime = newtime;
4240     } else if (newtime + tolerance > time) {
4241       /* close enough undershoot */
4242       *_offset = newpos;
4243       *_time = newtime;
4244       break;
4245     } else if (newtime < ltime) {
4246       /* so a position beyond lpos resulted in earlier time than ltime ... */
4247       GST_DEBUG_OBJECT (parse, "non-ascending time; aborting");
4248       break;
4249     } else {
4250       /* undershoot too far */
4251       newpos += newpos == lpos ? chunk : 0;
4252       lpos = CLAMP (newpos, lpos, hpos);
4253       ltime = newtime;
4254     }
4255   }
4256
4257 exit:
4258   GST_LOG_OBJECT (parse, "return offset %" G_GINT64_FORMAT ", time %"
4259       GST_TIME_FORMAT, *_offset, GST_TIME_ARGS (*_time));
4260   return ret;
4261 }
4262
4263 static gint64
4264 gst_base_parse_find_offset (GstBaseParse * parse, GstClockTime time,
4265     gboolean before, GstClockTime * _ts)
4266 {
4267   gint64 bytes = 0, ts = 0;
4268   GstIndexEntry *entry = NULL;
4269
4270   if (time == GST_CLOCK_TIME_NONE) {
4271     ts = time;
4272     bytes = -1;
4273     goto exit;
4274   }
4275
4276   GST_BASE_PARSE_INDEX_LOCK (parse);
4277   if (parse->priv->index) {
4278     /* Let's check if we have an index entry for that time */
4279     entry = gst_index_get_assoc_entry (parse->priv->index,
4280         parse->priv->index_id,
4281         before ? GST_INDEX_LOOKUP_BEFORE : GST_INDEX_LOOKUP_AFTER,
4282         GST_INDEX_ASSOCIATION_FLAG_KEY_UNIT, GST_FORMAT_TIME, time);
4283   }
4284
4285   if (entry) {
4286     gst_index_entry_assoc_map (entry, GST_FORMAT_BYTES, &bytes);
4287     gst_index_entry_assoc_map (entry, GST_FORMAT_TIME, &ts);
4288
4289     GST_DEBUG_OBJECT (parse, "found index entry for %" GST_TIME_FORMAT
4290         " at %" GST_TIME_FORMAT ", offset %" G_GINT64_FORMAT,
4291         GST_TIME_ARGS (time), GST_TIME_ARGS (ts), bytes);
4292   } else {
4293     GST_DEBUG_OBJECT (parse, "no index entry found for %" GST_TIME_FORMAT,
4294         GST_TIME_ARGS (time));
4295     if (!before) {
4296       bytes = -1;
4297       ts = GST_CLOCK_TIME_NONE;
4298     }
4299   }
4300   GST_BASE_PARSE_INDEX_UNLOCK (parse);
4301
4302 exit:
4303   if (_ts)
4304     *_ts = ts;
4305
4306   return bytes;
4307 }
4308
4309 /* returns TRUE if seek succeeded */
4310 static gboolean
4311 gst_base_parse_handle_seek (GstBaseParse * parse, GstEvent * event)
4312 {
4313   gdouble rate;
4314   GstFormat format;
4315   GstSeekFlags flags;
4316   GstSeekType start_type = GST_SEEK_TYPE_NONE, stop_type;
4317   gboolean flush, update, res = TRUE, accurate;
4318   gint64 start, stop, seekpos, seekstop;
4319   GstSegment seeksegment = { 0, };
4320   GstClockTime start_ts;
4321   guint32 seqnum;
4322   GstEvent *segment_event;
4323
4324   /* try upstream first, unless we're driving the streaming thread ourselves */
4325   if (parse->priv->pad_mode != GST_PAD_MODE_PULL) {
4326     res = gst_pad_push_event (parse->sinkpad, gst_event_ref (event));
4327     if (res)
4328       goto done;
4329   }
4330
4331   gst_event_parse_seek (event, &rate, &format, &flags,
4332       &start_type, &start, &stop_type, &stop);
4333   seqnum = gst_event_get_seqnum (event);
4334
4335   GST_DEBUG_OBJECT (parse, "seek to format %s, rate %f, "
4336       "start type %d at %" GST_TIME_FORMAT ", end type %d at %"
4337       GST_TIME_FORMAT, gst_format_get_name (format), rate,
4338       start_type, GST_TIME_ARGS (start), stop_type, GST_TIME_ARGS (stop));
4339
4340   /* we can only handle TIME, so check if subclass can convert
4341    * to TIME format if it's some other format (such as DEFAULT) */
4342   if (format != GST_FORMAT_TIME) {
4343     if (!gst_base_parse_convert (parse, format, start, GST_FORMAT_TIME, &start)
4344         || !gst_base_parse_convert (parse, format, stop, GST_FORMAT_TIME,
4345             &stop))
4346       goto no_convert_to_time;
4347
4348     GST_INFO_OBJECT (parse, "converted %s format to start time "
4349         "%" GST_TIME_FORMAT " and stop time %" GST_TIME_FORMAT,
4350         gst_format_get_name (format), GST_TIME_ARGS (start),
4351         GST_TIME_ARGS (stop));
4352
4353     format = GST_FORMAT_TIME;
4354   }
4355
4356   /* no negative rates in push mode (unless upstream takes care of that, but
4357    * we've already tried upstream and it didn't handle the seek request) */
4358   if (rate < 0.0 && parse->priv->pad_mode == GST_PAD_MODE_PUSH)
4359     goto negative_rate;
4360
4361   if (start_type != GST_SEEK_TYPE_SET ||
4362       (stop_type != GST_SEEK_TYPE_SET && stop_type != GST_SEEK_TYPE_NONE))
4363     goto wrong_type;
4364
4365   /* get flush flag */
4366   flush = flags & GST_SEEK_FLAG_FLUSH;
4367
4368   /* copy segment, we need this because we still need the old
4369    * segment when we close the current segment. */
4370   gst_segment_copy_into (&parse->segment, &seeksegment);
4371
4372   GST_DEBUG_OBJECT (parse, "configuring seek");
4373   gst_segment_do_seek (&seeksegment, rate, format, flags,
4374       start_type, start, stop_type, stop, &update);
4375
4376   /* accurate seeking implies seek tables are used to obtain position,
4377    * and the requested segment is maintained exactly, not adjusted any way */
4378   accurate = flags & GST_SEEK_FLAG_ACCURATE;
4379
4380   /* maybe we can be accurate for (almost) free */
4381   gst_base_parse_find_offset (parse, seeksegment.position, TRUE, &start_ts);
4382   if (seeksegment.position <= start_ts + TARGET_DIFFERENCE) {
4383     GST_DEBUG_OBJECT (parse, "accurate seek possible");
4384     accurate = TRUE;
4385   }
4386
4387   if (accurate) {
4388     GstClockTime startpos;
4389     if (rate >= 0)
4390       startpos = seeksegment.position;
4391     else
4392       startpos = start;
4393
4394     /* accurate requested, so ... seek a bit before target */
4395     if (startpos < parse->priv->lead_in_ts)
4396       startpos = 0;
4397     else
4398       startpos -= parse->priv->lead_in_ts;
4399
4400     if (seeksegment.stop == -1 && seeksegment.duration != -1)
4401       seeksegment.stop = seeksegment.start + seeksegment.duration;
4402
4403     seekpos = gst_base_parse_find_offset (parse, startpos, TRUE, &start_ts);
4404     seekstop = gst_base_parse_find_offset (parse, seeksegment.stop, FALSE,
4405         NULL);
4406   } else {
4407     if (rate >= 0)
4408       start_ts = seeksegment.position;
4409     else
4410       start_ts = start;
4411
4412     if (seeksegment.stop == -1 && seeksegment.duration != -1)
4413       seeksegment.stop = seeksegment.start + seeksegment.duration;
4414
4415     if (!gst_base_parse_convert (parse, format, start_ts,
4416             GST_FORMAT_BYTES, &seekpos))
4417       goto convert_failed;
4418     if (!gst_base_parse_convert (parse, format, seeksegment.stop,
4419             GST_FORMAT_BYTES, &seekstop))
4420       goto convert_failed;
4421   }
4422
4423   GST_DEBUG_OBJECT (parse,
4424       "seek position %" G_GINT64_FORMAT " in bytes: %" G_GINT64_FORMAT,
4425       start_ts, seekpos);
4426   GST_DEBUG_OBJECT (parse,
4427       "seek stop %" G_GINT64_FORMAT " in bytes: %" G_GINT64_FORMAT,
4428       seeksegment.stop, seekstop);
4429
4430   if (parse->priv->pad_mode == GST_PAD_MODE_PULL) {
4431     gint64 last_stop;
4432
4433     GST_DEBUG_OBJECT (parse, "seek in PULL mode");
4434
4435     if (flush) {
4436       if (parse->srcpad) {
4437         GstEvent *fevent = gst_event_new_flush_start ();
4438         GST_DEBUG_OBJECT (parse, "sending flush start");
4439
4440         gst_event_set_seqnum (fevent, seqnum);
4441
4442         gst_pad_push_event (parse->srcpad, gst_event_ref (fevent));
4443         /* unlock upstream pull_range */
4444         gst_pad_push_event (parse->sinkpad, fevent);
4445       }
4446     } else {
4447       gst_pad_pause_task (parse->sinkpad);
4448     }
4449
4450     /* we should now be able to grab the streaming thread because we stopped it
4451      * with the above flush/pause code */
4452     GST_PAD_STREAM_LOCK (parse->sinkpad);
4453
4454     /* save current position */
4455     last_stop = parse->segment.position;
4456     GST_DEBUG_OBJECT (parse, "stopped streaming at %" G_GINT64_FORMAT,
4457         last_stop);
4458
4459     /* now commit to new position */
4460
4461     /* prepare for streaming again */
4462     if (flush) {
4463       GstEvent *fevent = gst_event_new_flush_stop (TRUE);
4464       GST_DEBUG_OBJECT (parse, "sending flush stop");
4465       gst_event_set_seqnum (fevent, seqnum);
4466       gst_pad_push_event (parse->srcpad, gst_event_ref (fevent));
4467       gst_pad_push_event (parse->sinkpad, fevent);
4468       gst_base_parse_clear_queues (parse);
4469     } else {
4470       /* keep track of our position */
4471       seeksegment.base = gst_segment_to_running_time (&seeksegment,
4472           seeksegment.format, parse->segment.position);
4473     }
4474
4475     memcpy (&parse->segment, &seeksegment, sizeof (GstSegment));
4476
4477     /* store the newsegment event so it can be sent from the streaming thread. */
4478     /* This will be sent later in _loop() */
4479     segment_event = gst_event_new_segment (&parse->segment);
4480     gst_event_set_seqnum (segment_event, seqnum);
4481     parse->priv->pending_events =
4482         g_list_prepend (parse->priv->pending_events, segment_event);
4483
4484     GST_DEBUG_OBJECT (parse, "Created newseg format %d, "
4485         "start = %" GST_TIME_FORMAT ", stop = %" GST_TIME_FORMAT
4486         ", time = %" GST_TIME_FORMAT, format,
4487         GST_TIME_ARGS (parse->segment.start),
4488         GST_TIME_ARGS (parse->segment.stop),
4489         GST_TIME_ARGS (parse->segment.time));
4490
4491     /* one last chance in pull mode to stay accurate;
4492      * maybe scan and subclass can find where to go */
4493     if (!accurate) {
4494       gint64 scanpos;
4495       GstClockTime ts = seeksegment.position;
4496
4497       gst_base_parse_locate_time (parse, &ts, &scanpos);
4498       if (scanpos >= 0) {
4499         accurate = TRUE;
4500         seekpos = scanpos;
4501         /* running collected index now consists of several intervals,
4502          * so optimized check no longer possible */
4503         parse->priv->index_last_valid = FALSE;
4504         parse->priv->index_last_offset = 0;
4505         parse->priv->index_last_ts = 0;
4506       }
4507     }
4508
4509     /* mark discont if we are going to stream from another position. */
4510     if (seekpos != parse->priv->offset) {
4511       GST_DEBUG_OBJECT (parse,
4512           "mark DISCONT, we did a seek to another position");
4513       parse->priv->offset = seekpos;
4514       parse->priv->last_offset = seekpos;
4515       parse->priv->seen_keyframe = FALSE;
4516       parse->priv->discont = TRUE;
4517       parse->priv->next_dts = start_ts;
4518       parse->priv->next_pts = GST_CLOCK_TIME_NONE;
4519       parse->priv->last_dts = GST_CLOCK_TIME_NONE;
4520       parse->priv->last_pts = GST_CLOCK_TIME_NONE;
4521       parse->priv->sync_offset = seekpos;
4522       parse->priv->exact_position = accurate;
4523     }
4524
4525     /* Start streaming thread if paused */
4526     gst_pad_start_task (parse->sinkpad,
4527         (GstTaskFunction) gst_base_parse_loop, parse->sinkpad, NULL);
4528
4529     GST_PAD_STREAM_UNLOCK (parse->sinkpad);
4530
4531     /* handled seek */
4532     res = TRUE;
4533   } else {
4534     GstEvent *new_event;
4535     GstBaseParseSeek *seek;
4536     GstSeekFlags flags = (flush ? GST_SEEK_FLAG_FLUSH : GST_SEEK_FLAG_NONE);
4537
4538     /* The only thing we need to do in PUSH-mode is to send the
4539        seek event (in bytes) to upstream. Segment / flush handling happens
4540        in corresponding src event handlers */
4541     GST_DEBUG_OBJECT (parse, "seek in PUSH mode");
4542     if (seekstop >= 0 && seekstop <= seekpos)
4543       seekstop = seekpos;
4544     new_event = gst_event_new_seek (rate, GST_FORMAT_BYTES, flags,
4545         GST_SEEK_TYPE_SET, seekpos, stop_type, seekstop);
4546     gst_event_set_seqnum (new_event, seqnum);
4547
4548     /* store segment info so its precise details can be reconstructed when
4549      * receiving newsegment;
4550      * this matters for all details when accurate seeking,
4551      * is most useful to preserve NONE stop time otherwise */
4552     seek = g_new0 (GstBaseParseSeek, 1);
4553     seek->segment = seeksegment;
4554     seek->accurate = accurate;
4555     seek->offset = seekpos;
4556     seek->start_ts = start_ts;
4557     GST_OBJECT_LOCK (parse);
4558     /* less optimal, but preserves order */
4559     parse->priv->pending_seeks =
4560         g_slist_append (parse->priv->pending_seeks, seek);
4561     GST_OBJECT_UNLOCK (parse);
4562
4563     res = gst_pad_push_event (parse->sinkpad, new_event);
4564
4565     if (!res) {
4566       GST_OBJECT_LOCK (parse);
4567       parse->priv->pending_seeks =
4568           g_slist_remove (parse->priv->pending_seeks, seek);
4569       GST_OBJECT_UNLOCK (parse);
4570       g_free (seek);
4571     }
4572   }
4573
4574 done:
4575   gst_event_unref (event);
4576   return res;
4577
4578   /* ERRORS */
4579 negative_rate:
4580   {
4581     GST_DEBUG_OBJECT (parse, "negative playback rates delegated upstream.");
4582     res = FALSE;
4583     goto done;
4584   }
4585 wrong_type:
4586   {
4587     GST_DEBUG_OBJECT (parse, "unsupported seek type.");
4588     res = FALSE;
4589     goto done;
4590   }
4591 no_convert_to_time:
4592   {
4593     GST_DEBUG_OBJECT (parse, "seek in %s format was requested, but subclass "
4594         "couldn't convert that into TIME format", gst_format_get_name (format));
4595     res = FALSE;
4596     goto done;
4597   }
4598 convert_failed:
4599   {
4600     GST_DEBUG_OBJECT (parse, "conversion TIME to BYTES failed.");
4601     res = FALSE;
4602     goto done;
4603   }
4604 }
4605
4606 static void
4607 gst_base_parse_set_upstream_tags (GstBaseParse * parse, GstTagList * taglist)
4608 {
4609   if (taglist == parse->priv->upstream_tags)
4610     return;
4611
4612   if (parse->priv->upstream_tags) {
4613     gst_tag_list_unref (parse->priv->upstream_tags);
4614     parse->priv->upstream_tags = NULL;
4615   }
4616
4617   GST_INFO_OBJECT (parse, "upstream tags: %" GST_PTR_FORMAT, taglist);
4618
4619   if (taglist != NULL)
4620     parse->priv->upstream_tags = gst_tag_list_ref (taglist);
4621
4622   gst_base_parse_check_bitrate_tags (parse);
4623 }
4624
4625 #if 0
4626 static void
4627 gst_base_parse_set_index (GstElement * element, GstIndex * index)
4628 {
4629   GstBaseParse *parse = GST_BASE_PARSE (element);
4630
4631   GST_BASE_PARSE_INDEX_LOCK (parse);
4632   if (parse->priv->index)
4633     gst_object_unref (parse->priv->index);
4634   if (index) {
4635     parse->priv->index = gst_object_ref (index);
4636     gst_index_get_writer_id (index, GST_OBJECT_CAST (element),
4637         &parse->priv->index_id);
4638     parse->priv->own_index = FALSE;
4639   } else {
4640     parse->priv->index = NULL;
4641   }
4642   GST_BASE_PARSE_INDEX_UNLOCK (parse);
4643 }
4644
4645 static GstIndex *
4646 gst_base_parse_get_index (GstElement * element)
4647 {
4648   GstBaseParse *parse = GST_BASE_PARSE (element);
4649   GstIndex *result = NULL;
4650
4651   GST_BASE_PARSE_INDEX_LOCK (parse);
4652   if (parse->priv->index)
4653     result = gst_object_ref (parse->priv->index);
4654   GST_BASE_PARSE_INDEX_UNLOCK (parse);
4655
4656   return result;
4657 }
4658 #endif
4659
4660 static GstStateChangeReturn
4661 gst_base_parse_change_state (GstElement * element, GstStateChange transition)
4662 {
4663   GstBaseParse *parse;
4664   GstStateChangeReturn result;
4665
4666   parse = GST_BASE_PARSE (element);
4667
4668   switch (transition) {
4669     case GST_STATE_CHANGE_READY_TO_PAUSED:
4670       /* If this is our own index destroy it as the
4671        * old entries might be wrong for the new stream */
4672       GST_BASE_PARSE_INDEX_LOCK (parse);
4673       if (parse->priv->own_index) {
4674         gst_object_unref (parse->priv->index);
4675         parse->priv->index = NULL;
4676         parse->priv->own_index = FALSE;
4677       }
4678
4679       /* If no index was created, generate one */
4680       if (G_UNLIKELY (!parse->priv->index)) {
4681         GST_DEBUG_OBJECT (parse, "no index provided creating our own");
4682
4683         parse->priv->index = g_object_new (gst_mem_index_get_type (), NULL);
4684         gst_index_get_writer_id (parse->priv->index, GST_OBJECT (parse),
4685             &parse->priv->index_id);
4686         parse->priv->own_index = TRUE;
4687       }
4688       GST_BASE_PARSE_INDEX_UNLOCK (parse);
4689       break;
4690     default:
4691       break;
4692   }
4693
4694   result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
4695
4696   switch (transition) {
4697     case GST_STATE_CHANGE_PAUSED_TO_READY:
4698       gst_base_parse_reset (parse);
4699       break;
4700     default:
4701       break;
4702   }
4703
4704   return result;
4705 }
4706
4707 /**
4708  * gst_base_parse_set_ts_at_offset:
4709  * @parse: a #GstBaseParse
4710  * @offset: offset into current buffer
4711  *
4712  * This function should only be called from a @handle_frame implementation.
4713  *
4714  * #GstBaseParse creates initial timestamps for frames by using the last
4715  * timestamp seen in the stream before the frame starts.  In certain
4716  * cases, the correct timestamps will occur in the stream after the
4717  * start of the frame, but before the start of the actual picture data.
4718  * This function can be used to set the timestamps based on the offset
4719  * into the frame data that the picture starts.
4720  *
4721  * Since: 1.2
4722  */
4723 void
4724 gst_base_parse_set_ts_at_offset (GstBaseParse * parse, gsize offset)
4725 {
4726   GstClockTime pts, dts;
4727
4728   g_return_if_fail (GST_IS_BASE_PARSE (parse));
4729
4730   pts = gst_adapter_prev_pts_at_offset (parse->priv->adapter, offset, NULL);
4731   dts = gst_adapter_prev_dts_at_offset (parse->priv->adapter, offset, NULL);
4732
4733   if (!GST_CLOCK_TIME_IS_VALID (pts) || !GST_CLOCK_TIME_IS_VALID (dts)) {
4734     GST_DEBUG_OBJECT (parse,
4735         "offset adapter timestamps dts=%" GST_TIME_FORMAT " pts=%"
4736         GST_TIME_FORMAT, GST_TIME_ARGS (dts), GST_TIME_ARGS (pts));
4737   }
4738   if (GST_CLOCK_TIME_IS_VALID (pts) && (parse->priv->prev_pts != pts))
4739     parse->priv->prev_pts = parse->priv->next_pts = pts;
4740
4741   if (GST_CLOCK_TIME_IS_VALID (dts) && (parse->priv->prev_dts != dts))
4742     parse->priv->prev_dts = parse->priv->next_dts = dts;
4743 }
4744
4745 /**
4746  * gst_base_parse_merge_tags:
4747  * @parse: a #GstBaseParse
4748  * @tags: (allow-none): a #GstTagList to merge, or NULL to unset
4749  *     previously-set tags
4750  * @mode: the #GstTagMergeMode to use, usually #GST_TAG_MERGE_REPLACE
4751  *
4752  * Sets the parser subclass's tags and how they should be merged with any
4753  * upstream stream tags. This will override any tags previously-set
4754  * with gst_base_parse_merge_tags().
4755  *
4756  * Note that this is provided for convenience, and the subclass is
4757  * not required to use this and can still do tag handling on its own.
4758  *
4759  * Since: 1.6
4760  */
4761 void
4762 gst_base_parse_merge_tags (GstBaseParse * parse, GstTagList * tags,
4763     GstTagMergeMode mode)
4764 {
4765   g_return_if_fail (GST_IS_BASE_PARSE (parse));
4766   g_return_if_fail (tags == NULL || GST_IS_TAG_LIST (tags));
4767   g_return_if_fail (tags == NULL || mode != GST_TAG_MERGE_UNDEFINED);
4768
4769   GST_OBJECT_LOCK (parse);
4770
4771   if (tags != parse->priv->parser_tags) {
4772     if (parse->priv->parser_tags) {
4773       gst_tag_list_unref (parse->priv->parser_tags);
4774       parse->priv->parser_tags = NULL;
4775       parse->priv->parser_tags_merge_mode = GST_TAG_MERGE_APPEND;
4776     }
4777     if (tags) {
4778       parse->priv->parser_tags = gst_tag_list_ref (tags);
4779       parse->priv->parser_tags_merge_mode = mode;
4780     }
4781
4782     GST_DEBUG_OBJECT (parse, "setting parser tags to %" GST_PTR_FORMAT
4783         " (mode %d)", tags, parse->priv->parser_tags_merge_mode);
4784
4785     gst_base_parse_check_bitrate_tags (parse);
4786     parse->priv->tags_changed = TRUE;
4787   }
4788
4789   GST_OBJECT_UNLOCK (parse);
4790 }