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