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