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