fa192ca2ab8d59d13cdd6e1dc7ad2ea245b478ba
[platform/upstream/gstreamer.git] / plugins / elements / gsttypefindelement.c
1 /* GStreamer
2  * Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
3  *
4  * gsttypefindelement.c: element that detects type of stream
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21 /**
22  * SECTION:element-typefind
23  *
24  * Determines the media-type of a stream. It applies typefind functions in the
25  * order of their rank. Once the type has been detected it sets its src pad caps
26  * to the found media type.
27  *
28  * Whenever a type is found the #GstTypeFindElement::have-type signal is
29  * emitted, either from the streaming thread or the application thread
30  * (the latter may happen when typefinding is done pull-based from the
31  * state change function).
32  *
33  * Plugins can register custom typefinders by using #GstTypeFindFactory.
34  */
35
36 /* FIXME: need a better solution for non-seekable streams */
37
38 /* way of operation:
39  * 1) get a list of all typefind functions sorted best to worst
40  * 2) if all elements have been called with all requested data goto 8
41  * 3) call all functions once with all available data
42  * 4) if a function returns a value >= PROP_MAXIMUM goto 8 (never implemented))
43  * 5) all functions with a result > PROP_MINIMUM or functions that did not get
44  *    all requested data (where peek returned NULL) stay in list
45  * 6) seek to requested offset of best function that still has open data
46  *    requests
47  * 7) goto 2
48  * 8) take best available result and use its caps
49  *
50  * The element has two scheduling modes:
51  *
52  * 1) chain based, it will collect buffers and run the typefind function on
53  *    the buffer until something is found.
54  * 2) getrange based, it will proxy the getrange function to the sinkpad. It
55  *    is assumed that the peer element is happy with whatever format we
56  *    eventually read.
57  *
58  * By default it tries to do pull based typefinding (this avoids joining
59  * received buffers and holding them back in store.)
60  *
61  * When the element has no connected srcpad, and the sinkpad can operate in
62  * getrange based mode, the element starts its own task to figure out the
63  * type of the stream.
64  *
65  * Most of the actual implementation is in libs/gst/base/gsttypefindhelper.c.
66  */
67
68 #ifdef HAVE_CONFIG_H
69 #  include "config.h"
70 #endif
71
72 #include "gst/gst_private.h"
73
74 #include "gsttypefindelement.h"
75 #include "gst/gst-i18n-lib.h"
76 #include "gst/base/gsttypefindhelper.h"
77
78 #include <gst/gsttypefind.h>
79 #include <gst/gstutils.h>
80 #include <gst/gsterror.h>
81
82 GST_DEBUG_CATEGORY_STATIC (gst_type_find_element_debug);
83 #define GST_CAT_DEFAULT gst_type_find_element_debug
84
85 /* generic templates */
86 static GstStaticPadTemplate type_find_element_sink_template =
87 GST_STATIC_PAD_TEMPLATE ("sink",
88     GST_PAD_SINK,
89     GST_PAD_ALWAYS,
90     GST_STATIC_CAPS_ANY);
91
92 static GstStaticPadTemplate type_find_element_src_template =
93 GST_STATIC_PAD_TEMPLATE ("src",
94     GST_PAD_SRC,
95     GST_PAD_ALWAYS,
96     GST_STATIC_CAPS_ANY);
97
98 /* Require at least 2kB of data before we attempt typefinding in chain-mode.
99  * 128kB is massive overkill for the maximum, but doesn't do any harm */
100 #define TYPE_FIND_MIN_SIZE   (2*1024)
101 #define TYPE_FIND_MAX_SIZE (128*1024)
102
103 /* TypeFind signals and args */
104 enum
105 {
106   HAVE_TYPE,
107   LAST_SIGNAL
108 };
109 enum
110 {
111   PROP_0,
112   PROP_CAPS,
113   PROP_MINIMUM,
114   PROP_FORCE_CAPS,
115   PROP_LAST
116 };
117 enum
118 {
119   MODE_NORMAL,                  /* act as identity */
120   MODE_TYPEFIND,                /* do typefinding  */
121   MODE_ERROR                    /* had fatal error */
122 };
123
124
125 #define _do_init \
126     GST_DEBUG_CATEGORY_INIT (gst_type_find_element_debug, "typefind",           \
127         GST_DEBUG_BG_YELLOW | GST_DEBUG_FG_GREEN, "type finding element");
128 #define gst_type_find_element_parent_class parent_class
129 G_DEFINE_TYPE_WITH_CODE (GstTypeFindElement, gst_type_find_element,
130     GST_TYPE_ELEMENT, _do_init);
131
132 static void gst_type_find_element_dispose (GObject * object);
133 static void gst_type_find_element_set_property (GObject * object,
134     guint prop_id, const GValue * value, GParamSpec * pspec);
135 static void gst_type_find_element_get_property (GObject * object,
136     guint prop_id, GValue * value, GParamSpec * pspec);
137
138 static gboolean gst_type_find_element_src_event (GstPad * pad,
139     GstObject * parent, GstEvent * event);
140 static gboolean gst_type_find_handle_src_query (GstPad * pad,
141     GstObject * parent, GstQuery * query);
142
143 static gboolean gst_type_find_element_sink_event (GstPad * pad,
144     GstObject * parent, GstEvent * event);
145 static gboolean gst_type_find_element_setcaps (GstTypeFindElement * typefind,
146     GstCaps * caps);
147 static GstFlowReturn gst_type_find_element_chain (GstPad * sinkpad,
148     GstObject * parent, GstBuffer * buffer);
149 static GstFlowReturn gst_type_find_element_getrange (GstPad * srcpad,
150     GstObject * parent, guint64 offset, guint length, GstBuffer ** buffer);
151
152 static GstStateChangeReturn
153 gst_type_find_element_change_state (GstElement * element,
154     GstStateChange transition);
155 static gboolean gst_type_find_element_activate_sink (GstPad * pad,
156     GstObject * parent);
157 static gboolean gst_type_find_element_activate_sink_mode (GstPad * pad,
158     GstObject * parent, GstPadMode mode, gboolean active);
159 static gboolean gst_type_find_element_activate_src_mode (GstPad * pad,
160     GstObject * parent, GstPadMode mode, gboolean active);
161 static GstFlowReturn
162 gst_type_find_element_chain_do_typefinding (GstTypeFindElement * typefind,
163     gboolean check_avail, gboolean at_eos);
164 static void gst_type_find_element_send_cached_events (GstTypeFindElement *
165     typefind);
166
167 static void gst_type_find_element_loop (GstPad * pad);
168
169 static guint gst_type_find_element_signals[LAST_SIGNAL] = { 0 };
170
171 static void
172 gst_type_find_element_have_type (GstTypeFindElement * typefind,
173     guint probability, GstCaps * caps)
174 {
175   GstEvent *event;
176
177   g_assert (caps != NULL);
178
179   GST_INFO_OBJECT (typefind, "found caps %" GST_PTR_FORMAT ", probability=%u",
180       caps, probability);
181
182   /* Do nothing if downstream is pulling from us */
183   if (GST_PAD_MODE (typefind->src) == GST_PAD_MODE_PULL)
184     return;
185
186   GST_OBJECT_LOCK (typefind);
187
188   /* Now actually send the CAPS event downstream.
189    *
190    * Try to directly send the CAPS event downstream that we created in
191    * gst_type_find_element_emit_have_type() if it is still there, instead
192    * of creating a new one. No need to create an equivalent one, replacing
193    * it in the sticky event list and possibly causing renegotiation
194    */
195   event = gst_pad_get_sticky_event (typefind->src, GST_EVENT_CAPS, 0);
196   if (event) {
197     GstCaps *event_caps;
198
199     gst_event_parse_caps (event, &event_caps);
200     if (caps != event_caps) {
201       gst_event_unref (event);
202       event = gst_event_new_caps (caps);
203     }
204   } else {
205     event = gst_event_new_caps (caps);
206   }
207
208   GST_OBJECT_UNLOCK (typefind);
209
210   gst_pad_push_event (typefind->src, event);
211 }
212
213 static void
214 gst_type_find_element_emit_have_type (GstTypeFindElement * typefind,
215     guint probability, GstCaps * caps)
216 {
217   GstEvent *event;
218
219   /* Update caps field immediatly so that caps queries and properties can be
220    * honored in all "have-type" signal handlers.
221    */
222   GST_OBJECT_LOCK (typefind);
223   if (typefind->caps)
224     gst_caps_unref (typefind->caps);
225   typefind->caps = gst_caps_ref (caps);
226   GST_OBJECT_UNLOCK (typefind);
227
228   /* Only store the caps event at this point. We give signal handlers
229    * the chance to look at the caps before they are sent downstream.
230    * They are only forwarded downstream later in the default signal
231    * handler after all application signal handlers
232    */
233   event = gst_event_new_caps (caps);
234   gst_pad_store_sticky_event (typefind->src, event);
235   gst_event_unref (event);
236
237   g_signal_emit (typefind, gst_type_find_element_signals[HAVE_TYPE], 0,
238       probability, caps);
239 }
240
241 static void
242 gst_type_find_element_class_init (GstTypeFindElementClass * typefind_class)
243 {
244   GObjectClass *gobject_class = G_OBJECT_CLASS (typefind_class);
245   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (typefind_class);
246
247   gobject_class->set_property = gst_type_find_element_set_property;
248   gobject_class->get_property = gst_type_find_element_get_property;
249   gobject_class->dispose = gst_type_find_element_dispose;
250
251   g_object_class_install_property (gobject_class, PROP_CAPS,
252       g_param_spec_boxed ("caps", _("caps"),
253           _("detected capabilities in stream"), GST_TYPE_CAPS,
254           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
255   g_object_class_install_property (gobject_class, PROP_MINIMUM,
256       g_param_spec_uint ("minimum", _("minimum"),
257           "minimum probability required to accept caps", GST_TYPE_FIND_MINIMUM,
258           GST_TYPE_FIND_MAXIMUM, GST_TYPE_FIND_MINIMUM,
259           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
260   g_object_class_install_property (gobject_class, PROP_FORCE_CAPS,
261       g_param_spec_boxed ("force-caps", _("force caps"),
262           _("force caps without doing a typefind"), GST_TYPE_CAPS,
263           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
264   /**
265    * GstTypeFindElement::have-type:
266    * @typefind: the typefind instance
267    * @probability: the probability of the type found
268    * @caps: the caps of the type found
269    *
270    * This signal gets emitted when the type and its probability has
271    * been found.
272    */
273   gst_type_find_element_signals[HAVE_TYPE] = g_signal_new ("have-type",
274       G_TYPE_FROM_CLASS (typefind_class), G_SIGNAL_RUN_LAST,
275       G_STRUCT_OFFSET (GstTypeFindElementClass, have_type), NULL, NULL,
276       g_cclosure_marshal_generic, G_TYPE_NONE, 2,
277       G_TYPE_UINT, GST_TYPE_CAPS | G_SIGNAL_TYPE_STATIC_SCOPE);
278
279   typefind_class->have_type =
280       GST_DEBUG_FUNCPTR (gst_type_find_element_have_type);
281
282   gst_element_class_set_static_metadata (gstelement_class,
283       "TypeFind",
284       "Generic",
285       "Finds the media type of a stream",
286       "Benjamin Otte <in7y118@public.uni-hamburg.de>");
287   gst_element_class_add_static_pad_template (gstelement_class,
288       &type_find_element_src_template);
289   gst_element_class_add_static_pad_template (gstelement_class,
290       &type_find_element_sink_template);
291
292   gstelement_class->change_state =
293       GST_DEBUG_FUNCPTR (gst_type_find_element_change_state);
294 }
295
296 static void
297 gst_type_find_element_init (GstTypeFindElement * typefind)
298 {
299   /* sinkpad */
300   typefind->sink =
301       gst_pad_new_from_static_template (&type_find_element_sink_template,
302       "sink");
303
304   gst_pad_set_activate_function (typefind->sink,
305       GST_DEBUG_FUNCPTR (gst_type_find_element_activate_sink));
306   gst_pad_set_activatemode_function (typefind->sink,
307       GST_DEBUG_FUNCPTR (gst_type_find_element_activate_sink_mode));
308   gst_pad_set_chain_function (typefind->sink,
309       GST_DEBUG_FUNCPTR (gst_type_find_element_chain));
310   gst_pad_set_event_function (typefind->sink,
311       GST_DEBUG_FUNCPTR (gst_type_find_element_sink_event));
312   GST_PAD_SET_PROXY_ALLOCATION (typefind->sink);
313   gst_element_add_pad (GST_ELEMENT (typefind), typefind->sink);
314
315   /* srcpad */
316   typefind->src =
317       gst_pad_new_from_static_template (&type_find_element_src_template, "src");
318
319   gst_pad_set_activatemode_function (typefind->src,
320       GST_DEBUG_FUNCPTR (gst_type_find_element_activate_src_mode));
321   gst_pad_set_getrange_function (typefind->src,
322       GST_DEBUG_FUNCPTR (gst_type_find_element_getrange));
323   gst_pad_set_event_function (typefind->src,
324       GST_DEBUG_FUNCPTR (gst_type_find_element_src_event));
325   gst_pad_set_query_function (typefind->src,
326       GST_DEBUG_FUNCPTR (gst_type_find_handle_src_query));
327   gst_pad_use_fixed_caps (typefind->src);
328   gst_element_add_pad (GST_ELEMENT (typefind), typefind->src);
329
330   typefind->mode = MODE_TYPEFIND;
331   typefind->caps = NULL;
332   typefind->min_probability = 1;
333
334   typefind->adapter = gst_adapter_new ();
335 }
336
337 static void
338 gst_type_find_element_dispose (GObject * object)
339 {
340   GstTypeFindElement *typefind = GST_TYPE_FIND_ELEMENT (object);
341
342   if (typefind->adapter) {
343     g_object_unref (typefind->adapter);
344     typefind->adapter = NULL;
345   }
346
347   if (typefind->force_caps) {
348     gst_caps_unref (typefind->force_caps);
349     typefind->force_caps = NULL;
350   }
351
352   G_OBJECT_CLASS (parent_class)->dispose (object);
353 }
354
355 static void
356 gst_type_find_element_set_property (GObject * object, guint prop_id,
357     const GValue * value, GParamSpec * pspec)
358 {
359   GstTypeFindElement *typefind;
360
361   typefind = GST_TYPE_FIND_ELEMENT (object);
362
363   switch (prop_id) {
364     case PROP_MINIMUM:
365       typefind->min_probability = g_value_get_uint (value);
366       break;
367     case PROP_FORCE_CAPS:
368       GST_OBJECT_LOCK (typefind);
369       if (typefind->force_caps)
370         gst_caps_unref (typefind->force_caps);
371       typefind->force_caps = g_value_dup_boxed (value);
372       GST_OBJECT_UNLOCK (typefind);
373       break;
374     default:
375       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
376       break;
377   }
378 }
379
380 static void
381 gst_type_find_element_get_property (GObject * object, guint prop_id,
382     GValue * value, GParamSpec * pspec)
383 {
384   GstTypeFindElement *typefind;
385
386   typefind = GST_TYPE_FIND_ELEMENT (object);
387
388   switch (prop_id) {
389     case PROP_CAPS:
390       GST_OBJECT_LOCK (typefind);
391       g_value_set_boxed (value, typefind->caps);
392       GST_OBJECT_UNLOCK (typefind);
393       break;
394     case PROP_MINIMUM:
395       g_value_set_uint (value, typefind->min_probability);
396       break;
397     case PROP_FORCE_CAPS:
398       GST_OBJECT_LOCK (typefind);
399       g_value_set_boxed (value, typefind->force_caps);
400       GST_OBJECT_UNLOCK (typefind);
401       break;
402     default:
403       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
404       break;
405   }
406 }
407
408 static gboolean
409 gst_type_find_handle_src_query (GstPad * pad, GstObject * parent,
410     GstQuery * query)
411 {
412   GstTypeFindElement *typefind;
413   gboolean res = FALSE;
414
415   typefind = GST_TYPE_FIND_ELEMENT (parent);
416   GST_DEBUG_OBJECT (typefind, "Handling src query %s",
417       GST_QUERY_TYPE_NAME (query));
418
419   switch (GST_QUERY_TYPE (query)) {
420     case GST_QUERY_SCHEDULING:
421       /* FIXME, filter out the scheduling modes that we understand */
422       res = gst_pad_peer_query (typefind->sink, query);
423       break;
424     case GST_QUERY_CAPS:
425     {
426       GST_DEBUG_OBJECT (typefind,
427           "Got caps query, our caps are %" GST_PTR_FORMAT, typefind->caps);
428
429       /* We can hijack caps query if we typefind already */
430       if (typefind->caps) {
431         gst_query_set_caps_result (query, typefind->caps);
432         res = TRUE;
433       } else {
434         res = gst_pad_peer_query (typefind->sink, query);
435       }
436       break;
437     }
438     case GST_QUERY_POSITION:
439     {
440       gint64 peer_pos;
441       GstFormat format;
442
443       if (!(res = gst_pad_peer_query (typefind->sink, query)))
444         goto out;
445
446       gst_query_parse_position (query, &format, &peer_pos);
447
448       GST_OBJECT_LOCK (typefind);
449       /* FIXME: this code assumes that there's no discont in the queue */
450       switch (format) {
451         case GST_FORMAT_BYTES:
452           peer_pos -= gst_adapter_available (typefind->adapter);
453           if (peer_pos < 0)     /* Clamp result to 0 */
454             peer_pos = 0;
455           break;
456         default:
457           /* FIXME */
458           break;
459       }
460       GST_OBJECT_UNLOCK (typefind);
461       gst_query_set_position (query, format, peer_pos);
462       break;
463     }
464     default:
465       res = gst_pad_query_default (pad, parent, query);
466       break;
467   }
468 out:
469   return res;
470 }
471
472 static gboolean
473 gst_type_find_element_seek (GstTypeFindElement * typefind, GstEvent * event)
474 {
475   GstSeekFlags flags;
476   GstSeekType start_type, stop_type;
477   GstFormat format;
478   gboolean flush;
479   gdouble rate;
480   gint64 start, stop;
481   GstSegment seeksegment = { 0, };
482
483   gst_event_parse_seek (event, &rate, &format, &flags, &start_type, &start,
484       &stop_type, &stop);
485
486   /* we can only seek on bytes */
487   if (format != GST_FORMAT_BYTES) {
488     GST_DEBUG_OBJECT (typefind, "Can only seek on BYTES");
489     return FALSE;
490   }
491
492   /* copy segment, we need this because we still need the old
493    * segment when we close the current segment. */
494   memcpy (&seeksegment, &typefind->segment, sizeof (GstSegment));
495
496   GST_DEBUG_OBJECT (typefind, "configuring seek");
497   gst_segment_do_seek (&seeksegment, rate, format, flags,
498       start_type, start, stop_type, stop, NULL);
499
500   flush = ! !(flags & GST_SEEK_FLAG_FLUSH);
501
502   GST_DEBUG_OBJECT (typefind, "New segment %" GST_SEGMENT_FORMAT, &seeksegment);
503
504   if (flush) {
505     GST_DEBUG_OBJECT (typefind, "Starting flush");
506     gst_pad_push_event (typefind->sink, gst_event_new_flush_start ());
507     gst_pad_push_event (typefind->src, gst_event_new_flush_start ());
508   } else {
509     GST_DEBUG_OBJECT (typefind, "Non-flushing seek, pausing task");
510     gst_pad_pause_task (typefind->sink);
511   }
512
513   /* now grab the stream lock so that streaming cannot continue, for
514    * non flushing seeks when the element is in PAUSED this could block
515    * forever. */
516   GST_DEBUG_OBJECT (typefind, "Waiting for streaming to stop");
517   GST_PAD_STREAM_LOCK (typefind->sink);
518
519   if (flush) {
520     GST_DEBUG_OBJECT (typefind, "Stopping flush");
521     gst_pad_push_event (typefind->sink, gst_event_new_flush_stop (TRUE));
522     gst_pad_push_event (typefind->src, gst_event_new_flush_stop (TRUE));
523   }
524
525   /* now update the real segment info */
526   GST_DEBUG_OBJECT (typefind, "Committing new seek segment");
527   memcpy (&typefind->segment, &seeksegment, sizeof (GstSegment));
528   typefind->offset = typefind->segment.start;
529
530   /* notify start of new segment */
531   if (typefind->segment.flags & GST_SEGMENT_FLAG_SEGMENT) {
532     GstMessage *msg;
533
534     msg = gst_message_new_segment_start (GST_OBJECT (typefind),
535         GST_FORMAT_BYTES, typefind->segment.start);
536     gst_element_post_message (GST_ELEMENT (typefind), msg);
537   }
538
539   typefind->need_segment = TRUE;
540
541   /* restart our task since it might have been stopped when we did the
542    * flush. */
543   gst_pad_start_task (typefind->sink,
544       (GstTaskFunction) gst_type_find_element_loop, typefind->sink, NULL);
545
546   /* streaming can continue now */
547   GST_PAD_STREAM_UNLOCK (typefind->sink);
548
549   return TRUE;
550 }
551
552 static gboolean
553 gst_type_find_element_src_event (GstPad * pad, GstObject * parent,
554     GstEvent * event)
555 {
556   GstTypeFindElement *typefind = GST_TYPE_FIND_ELEMENT (parent);
557   gboolean result;
558
559   if (typefind->mode != MODE_NORMAL) {
560     /* need to do more? */
561     GST_LOG_OBJECT (typefind, "Still typefinding. Not passing event upstream");
562     gst_event_unref (event);
563     return FALSE;
564   }
565
566   /* Only handle seeks here if driving the pipeline */
567   if (typefind->segment.format != GST_FORMAT_UNDEFINED &&
568       GST_EVENT_TYPE (event) == GST_EVENT_SEEK) {
569     result = gst_type_find_element_seek (typefind, event);
570     gst_event_unref (event);
571     return result;
572   } else {
573     return gst_pad_push_event (typefind->sink, event);
574   }
575 }
576
577 static void
578 start_typefinding (GstTypeFindElement * typefind)
579 {
580   GST_DEBUG_OBJECT (typefind, "starting typefinding");
581
582   GST_OBJECT_LOCK (typefind);
583   if (typefind->caps)
584     gst_caps_replace (&typefind->caps, NULL);
585   typefind->initial_offset = GST_BUFFER_OFFSET_NONE;
586   GST_OBJECT_UNLOCK (typefind);
587
588   typefind->mode = MODE_TYPEFIND;
589 }
590
591 static void
592 stop_typefinding (GstTypeFindElement * typefind)
593 {
594   GstState state;
595   gboolean push_cached_buffers;
596   gsize avail;
597   GstBuffer *buffer;
598   GstClockTime pts, dts;
599
600   gst_element_get_state (GST_ELEMENT (typefind), &state, NULL, 0);
601
602   push_cached_buffers = (state >= GST_STATE_PAUSED && typefind->caps);
603
604   GST_DEBUG_OBJECT (typefind, "stopping typefinding%s",
605       push_cached_buffers ? " and pushing cached events and buffers" : "");
606
607   typefind->mode = MODE_NORMAL;
608   if (push_cached_buffers)
609     gst_type_find_element_send_cached_events (typefind);
610
611   GST_OBJECT_LOCK (typefind);
612   avail = gst_adapter_available (typefind->adapter);
613   if (avail == 0)
614     goto no_data;
615
616   pts = gst_adapter_prev_pts (typefind->adapter, NULL);
617   dts = gst_adapter_prev_dts (typefind->adapter, NULL);
618   buffer = gst_adapter_take_buffer (typefind->adapter, avail);
619   GST_BUFFER_PTS (buffer) = pts;
620   GST_BUFFER_DTS (buffer) = dts;
621   GST_BUFFER_OFFSET (buffer) = typefind->initial_offset;
622   GST_OBJECT_UNLOCK (typefind);
623
624   if (!push_cached_buffers) {
625     gst_buffer_unref (buffer);
626   } else {
627     GstPad *peer = gst_pad_get_peer (typefind->src);
628
629     /* make sure the user gets a meaningful error message in this case,
630      * which is not a core bug or bug of any kind (as the default error
631      * message emitted by gstpad.c otherwise would make you think) */
632     if (peer && GST_PAD_CHAINFUNC (peer) == NULL) {
633       GST_DEBUG_OBJECT (typefind, "upstream only supports push mode, while "
634           "downstream element only works in pull mode, erroring out");
635       GST_ELEMENT_ERROR (typefind, STREAM, FAILED,
636           ("%s cannot work in push mode. The operation is not supported "
637               "with this source element or protocol.",
638               G_OBJECT_TYPE_NAME (GST_PAD_PARENT (peer))),
639           ("Downstream pad %s:%s has no chainfunction, and the upstream "
640               "element does not support pull mode", GST_DEBUG_PAD_NAME (peer)));
641       typefind->mode = MODE_ERROR;      /* make the chain function error out */
642       gst_buffer_unref (buffer);
643     } else {
644       gst_pad_push (typefind->src, buffer);
645     }
646     if (peer)
647       gst_object_unref (peer);
648   }
649   return;
650
651   /* ERRORS */
652 no_data:
653   {
654     GST_DEBUG_OBJECT (typefind, "we have no data to typefind");
655     GST_OBJECT_UNLOCK (typefind);
656     return;
657   }
658 }
659
660 static gboolean
661 gst_type_find_element_sink_event (GstPad * pad, GstObject * parent,
662     GstEvent * event)
663 {
664   gboolean res = FALSE;
665   GstTypeFindElement *typefind = GST_TYPE_FIND_ELEMENT (parent);
666
667   GST_DEBUG_OBJECT (typefind, "got %s event in mode %d",
668       GST_EVENT_TYPE_NAME (event), typefind->mode);
669
670   switch (typefind->mode) {
671     case MODE_TYPEFIND:
672       switch (GST_EVENT_TYPE (event)) {
673         case GST_EVENT_CAPS:
674         {
675           GstCaps *caps;
676
677           /* Parse and push out our caps and data */
678           gst_event_parse_caps (event, &caps);
679           res = gst_type_find_element_setcaps (typefind, caps);
680
681           gst_event_unref (event);
682           break;
683         }
684         case GST_EVENT_GAP:
685         {
686           GST_FIXME_OBJECT (typefind,
687               "GAP events during typefinding not handled properly");
688
689           /* FIXME: These would need to be inserted in the stream at
690            * the right position between buffers, but we combine all
691            * buffers with a GstAdapter. Drop the GAP event for now,
692            * which will only cause an implicit GAP between buffers.
693            */
694           gst_event_unref (event);
695           res = TRUE;
696           break;
697         }
698         case GST_EVENT_EOS:
699         {
700           GST_INFO_OBJECT (typefind, "Got EOS and no type found yet");
701           gst_type_find_element_chain_do_typefinding (typefind, FALSE, TRUE);
702
703           res = gst_pad_push_event (typefind->src, event);
704           break;
705         }
706         case GST_EVENT_FLUSH_STOP:{
707           GList *l;
708
709           GST_OBJECT_LOCK (typefind);
710
711           for (l = typefind->cached_events; l; l = l->next) {
712             if (GST_EVENT_IS_STICKY (l->data) &&
713                 GST_EVENT_TYPE (l->data) != GST_EVENT_SEGMENT &&
714                 GST_EVENT_TYPE (l->data) != GST_EVENT_EOS) {
715               gst_pad_store_sticky_event (typefind->src, l->data);
716             }
717             gst_event_unref (l->data);
718           }
719
720           g_list_free (typefind->cached_events);
721           typefind->cached_events = NULL;
722           gst_adapter_clear (typefind->adapter);
723           GST_OBJECT_UNLOCK (typefind);
724           /* fall through */
725         }
726         case GST_EVENT_FLUSH_START:
727           res = gst_pad_push_event (typefind->src, event);
728           break;
729         default:
730           /* Forward events that would happen before the caps event
731            * directly instead of storing them. There's no reason not
732            * to send them directly and we should only store events
733            * for later sending that would need to come after the caps
734            * event */
735           if (GST_EVENT_TYPE (event) < GST_EVENT_CAPS) {
736             res = gst_pad_push_event (typefind->src, event);
737           } else {
738             GST_DEBUG_OBJECT (typefind, "Saving %s event to send later",
739                 GST_EVENT_TYPE_NAME (event));
740             GST_OBJECT_LOCK (typefind);
741             typefind->cached_events =
742                 g_list_append (typefind->cached_events, event);
743             GST_OBJECT_UNLOCK (typefind);
744             res = TRUE;
745           }
746           break;
747       }
748       break;
749     case MODE_NORMAL:
750       res = gst_pad_push_event (typefind->src, event);
751       break;
752     case MODE_ERROR:
753       break;
754     default:
755       g_assert_not_reached ();
756   }
757   return res;
758 }
759
760 static void
761 gst_type_find_element_send_cached_events (GstTypeFindElement * typefind)
762 {
763   GList *l, *cached_events;
764
765   GST_OBJECT_LOCK (typefind);
766   cached_events = typefind->cached_events;
767   typefind->cached_events = NULL;
768   GST_OBJECT_UNLOCK (typefind);
769
770   for (l = cached_events; l != NULL; l = l->next) {
771     GstEvent *event = GST_EVENT (l->data);
772
773     GST_DEBUG_OBJECT (typefind, "sending cached %s event",
774         GST_EVENT_TYPE_NAME (event));
775     gst_pad_push_event (typefind->src, event);
776   }
777   g_list_free (cached_events);
778 }
779
780 static gboolean
781 gst_type_find_element_setcaps (GstTypeFindElement * typefind, GstCaps * caps)
782 {
783   /* don't operate on ANY caps */
784   if (gst_caps_is_any (caps))
785     return TRUE;
786
787   /* Set to MODE_NORMAL before emitting have-type, in case it triggers a seek */
788   typefind->mode = MODE_NORMAL;
789   gst_type_find_element_emit_have_type (typefind, GST_TYPE_FIND_MAXIMUM, caps);
790
791   /* Shortcircuit typefinding if we get caps */
792   GST_DEBUG_OBJECT (typefind, "Skipping typefinding, using caps from "
793       "upstream: %" GST_PTR_FORMAT, caps);
794
795   stop_typefinding (typefind);
796
797   return TRUE;
798 }
799
800 static gchar *
801 gst_type_find_get_extension (GstTypeFindElement * typefind, GstPad * pad)
802 {
803   GstQuery *query;
804   gchar *uri, *result;
805   size_t len;
806   gint find;
807
808   query = gst_query_new_uri ();
809
810   /* try getting the caps with an uri query and from the extension */
811   if (!gst_pad_peer_query (pad, query))
812     goto peer_query_failed;
813
814   gst_query_parse_uri (query, &uri);
815   if (uri == NULL)
816     goto no_uri;
817
818   GST_DEBUG_OBJECT (typefind, "finding extension of %s", uri);
819
820   /* find the extension on the uri, this is everything after a '.' */
821   len = strlen (uri);
822   find = len - 1;
823
824   while (find >= 0) {
825     if (uri[find] == '.')
826       break;
827     find--;
828   }
829   if (find < 0)
830     goto no_extension;
831
832   result = g_strdup (&uri[find + 1]);
833
834   GST_DEBUG_OBJECT (typefind, "found extension %s", result);
835   gst_query_unref (query);
836   g_free (uri);
837
838   return result;
839
840   /* ERRORS */
841 peer_query_failed:
842   {
843     GST_WARNING_OBJECT (typefind, "failed to query peer uri");
844     gst_query_unref (query);
845     return NULL;
846   }
847 no_uri:
848   {
849     GST_WARNING_OBJECT (typefind, "could not parse the peer uri");
850     gst_query_unref (query);
851     return NULL;
852   }
853 no_extension:
854   {
855     GST_WARNING_OBJECT (typefind, "could not find uri extension in %s", uri);
856     gst_query_unref (query);
857     g_free (uri);
858     return NULL;
859   }
860 }
861
862 static GstCaps *
863 gst_type_find_guess_by_extension (GstTypeFindElement * typefind, GstPad * pad,
864     GstTypeFindProbability * probability)
865 {
866   gchar *ext;
867   GstCaps *caps;
868
869   ext = gst_type_find_get_extension (typefind, pad);
870   if (!ext)
871     return NULL;
872
873   caps = gst_type_find_helper_for_extension (GST_OBJECT_CAST (typefind), ext);
874   if (caps)
875     *probability = GST_TYPE_FIND_MAXIMUM;
876
877   g_free (ext);
878
879   return caps;
880 }
881
882 static GstFlowReturn
883 gst_type_find_element_chain (GstPad * pad, GstObject * parent,
884     GstBuffer * buffer)
885 {
886   GstTypeFindElement *typefind;
887   GstFlowReturn res = GST_FLOW_OK;
888
889   typefind = GST_TYPE_FIND_ELEMENT (parent);
890
891   GST_LOG_OBJECT (typefind, "handling buffer in mode %d", typefind->mode);
892
893   switch (typefind->mode) {
894     case MODE_ERROR:
895       /* we should already have called GST_ELEMENT_ERROR */
896       return GST_FLOW_ERROR;
897     case MODE_NORMAL:
898       /* don't take object lock as typefind->caps should not change anymore */
899       return gst_pad_push (typefind->src, buffer);
900     case MODE_TYPEFIND:
901     {
902       GST_OBJECT_LOCK (typefind);
903       if (typefind->initial_offset == GST_BUFFER_OFFSET_NONE)
904         typefind->initial_offset = GST_BUFFER_OFFSET (buffer);
905       gst_adapter_push (typefind->adapter, buffer);
906       GST_OBJECT_UNLOCK (typefind);
907
908       res = gst_type_find_element_chain_do_typefinding (typefind, TRUE, FALSE);
909
910       if (typefind->mode == MODE_ERROR)
911         res = GST_FLOW_ERROR;
912
913       break;
914     }
915     default:
916       g_assert_not_reached ();
917       return GST_FLOW_ERROR;
918   }
919
920   return res;
921 }
922
923 static GstFlowReturn
924 gst_type_find_element_chain_do_typefinding (GstTypeFindElement * typefind,
925     gboolean check_avail, gboolean at_eos)
926 {
927   GstTypeFindProbability probability;
928   GstCaps *caps = NULL;
929   gsize avail;
930   const guint8 *data;
931   gboolean have_min, have_max;
932
933   GST_OBJECT_LOCK (typefind);
934   if (typefind->force_caps) {
935     caps = gst_caps_ref (typefind->force_caps);
936     probability = GST_TYPE_FIND_MAXIMUM;
937   }
938
939   if (!caps) {
940     avail = gst_adapter_available (typefind->adapter);
941
942     if (check_avail) {
943       have_min = avail >= TYPE_FIND_MIN_SIZE;
944       have_max = avail >= TYPE_FIND_MAX_SIZE;
945     } else {
946       have_min = avail > 0;
947       have_max = TRUE;
948     }
949
950     if (!have_min)
951       goto not_enough_data;
952
953     /* map all available data */
954     data = gst_adapter_map (typefind->adapter, avail);
955     caps = gst_type_find_helper_for_data (GST_OBJECT (typefind),
956         data, avail, &probability);
957     gst_adapter_unmap (typefind->adapter);
958
959     if (caps == NULL && have_max)
960       goto no_type_found;
961     else if (caps == NULL)
962       goto wait_for_data;
963
964     /* found a type */
965     if (probability < typefind->min_probability)
966       goto low_probability;
967   }
968
969   GST_OBJECT_UNLOCK (typefind);
970
971   /* probability is good enough too, so let's make it known ... emiting this
972    * signal calls our object handler which sets the caps. */
973   /* Set to MODE_NORMAL before emitting have-type, in case it triggers a seek */
974   typefind->mode = MODE_NORMAL;
975   gst_type_find_element_emit_have_type (typefind, probability, caps);
976
977   /* .. and send out the accumulated data */
978   stop_typefinding (typefind);
979   gst_caps_unref (caps);
980
981   return GST_FLOW_OK;
982
983 not_enough_data:
984   {
985     GST_OBJECT_UNLOCK (typefind);
986
987     if (at_eos) {
988       GST_ELEMENT_ERROR (typefind, STREAM, TYPE_NOT_FOUND,
989           (_("Stream doesn't contain enough data.")),
990           ("Can't typefind stream"));
991       return GST_FLOW_ERROR;
992     } else {
993       GST_DEBUG_OBJECT (typefind, "not enough data for typefinding yet "
994           "(%" G_GSIZE_FORMAT " bytes)", avail);
995       return GST_FLOW_OK;
996     }
997   }
998 no_type_found:
999   {
1000     GST_OBJECT_UNLOCK (typefind);
1001     GST_ELEMENT_ERROR (typefind, STREAM, TYPE_NOT_FOUND, (NULL), (NULL));
1002     stop_typefinding (typefind);
1003     return GST_FLOW_ERROR;
1004   }
1005 wait_for_data:
1006   {
1007     GST_OBJECT_UNLOCK (typefind);
1008
1009     if (at_eos) {
1010       GST_ELEMENT_ERROR (typefind, STREAM, TYPE_NOT_FOUND,
1011           (_("Stream doesn't contain enough data.")),
1012           ("Can't typefind stream"));
1013       return GST_FLOW_ERROR;
1014     } else {
1015       GST_DEBUG_OBJECT (typefind,
1016           "no caps found with %" G_GSIZE_FORMAT " bytes of data, "
1017           "waiting for more data", avail);
1018       return GST_FLOW_OK;
1019     }
1020   }
1021 low_probability:
1022   {
1023     GST_DEBUG_OBJECT (typefind, "found caps %" GST_PTR_FORMAT ", but "
1024         "probability is %u which is lower than the required minimum of %u",
1025         caps, probability, typefind->min_probability);
1026
1027     gst_caps_unref (caps);
1028
1029     if (have_max)
1030       goto no_type_found;
1031
1032     GST_OBJECT_UNLOCK (typefind);
1033     GST_DEBUG_OBJECT (typefind, "waiting for more data to try again");
1034     return GST_FLOW_OK;
1035   }
1036 }
1037
1038 static GstFlowReturn
1039 gst_type_find_element_getrange (GstPad * srcpad, GstObject * parent,
1040     guint64 offset, guint length, GstBuffer ** buffer)
1041 {
1042   GstTypeFindElement *typefind;
1043   GstFlowReturn ret;
1044
1045   typefind = GST_TYPE_FIND_ELEMENT (parent);
1046
1047   ret = gst_pad_pull_range (typefind->sink, offset, length, buffer);
1048
1049   return ret;
1050 }
1051
1052 static gboolean
1053 gst_type_find_element_activate_src_mode (GstPad * pad, GstObject * parent,
1054     GstPadMode mode, gboolean active)
1055 {
1056   gboolean res;
1057   GstTypeFindElement *typefind;
1058
1059   typefind = GST_TYPE_FIND_ELEMENT (parent);
1060
1061   switch (mode) {
1062     case GST_PAD_MODE_PULL:
1063       /* make sure our task stops pushing, we can't call _stop here because this
1064        * activation might happen from the streaming thread. */
1065       gst_pad_pause_task (typefind->sink);
1066       res = gst_pad_activate_mode (typefind->sink, mode, active);
1067       break;
1068     default:
1069       res = TRUE;
1070       break;
1071   }
1072   return res;
1073 }
1074
1075 static void
1076 gst_type_find_element_loop (GstPad * pad)
1077 {
1078   GstTypeFindElement *typefind;
1079   GstFlowReturn ret = GST_FLOW_OK;
1080
1081   typefind = GST_TYPE_FIND_ELEMENT (GST_PAD_PARENT (pad));
1082
1083   if (typefind->need_stream_start) {
1084     gchar *stream_id;
1085     GstEvent *event;
1086
1087     stream_id = gst_pad_create_stream_id (typefind->src,
1088         GST_ELEMENT_CAST (typefind), NULL);
1089
1090     GST_DEBUG_OBJECT (typefind, "Pushing STREAM_START");
1091     event = gst_event_new_stream_start (stream_id);
1092     gst_event_set_group_id (event, gst_util_group_id_next ());
1093     gst_pad_push_event (typefind->src, event);
1094
1095     typefind->need_stream_start = FALSE;
1096     g_free (stream_id);
1097   }
1098
1099   if (typefind->mode == MODE_TYPEFIND) {
1100     GstPad *peer = NULL;
1101     GstCaps *found_caps = NULL;
1102     GstTypeFindProbability probability = GST_TYPE_FIND_NONE;
1103
1104     GST_DEBUG_OBJECT (typefind, "find type in pull mode");
1105
1106     GST_OBJECT_LOCK (typefind);
1107     if (typefind->force_caps) {
1108       found_caps = gst_caps_ref (typefind->force_caps);
1109       probability = GST_TYPE_FIND_MAXIMUM;
1110     }
1111     GST_OBJECT_UNLOCK (typefind);
1112
1113     if (!found_caps) {
1114       peer = gst_pad_get_peer (pad);
1115       if (peer) {
1116         gint64 size;
1117         gchar *ext;
1118
1119         if (!gst_pad_query_duration (peer, GST_FORMAT_BYTES, &size)) {
1120           GST_WARNING_OBJECT (typefind, "Could not query upstream length!");
1121           gst_object_unref (peer);
1122
1123           ret = GST_FLOW_ERROR;
1124           goto pause;
1125         }
1126
1127         /* the size if 0, we cannot continue */
1128         if (size == 0) {
1129           /* keep message in sync with message in sink event handler */
1130           GST_ELEMENT_ERROR (typefind, STREAM, TYPE_NOT_FOUND,
1131               (_("Stream contains no data.")), ("Can't typefind empty stream"));
1132           gst_object_unref (peer);
1133           ret = GST_FLOW_ERROR;
1134           goto pause;
1135         }
1136         ext = gst_type_find_get_extension (typefind, pad);
1137
1138         found_caps =
1139             gst_type_find_helper_get_range (GST_OBJECT_CAST (peer),
1140             GST_OBJECT_PARENT (peer),
1141             (GstTypeFindHelperGetRangeFunction) (GST_PAD_GETRANGEFUNC (peer)),
1142             (guint64) size, ext, &probability);
1143         g_free (ext);
1144
1145         GST_DEBUG ("Found caps %" GST_PTR_FORMAT, found_caps);
1146
1147         gst_object_unref (peer);
1148       }
1149     }
1150
1151     if (!found_caps || probability < typefind->min_probability) {
1152       GST_DEBUG ("Trying to guess using extension");
1153       gst_caps_replace (&found_caps, NULL);
1154       found_caps =
1155           gst_type_find_guess_by_extension (typefind, pad, &probability);
1156     }
1157
1158     if (!found_caps || probability < typefind->min_probability) {
1159       GST_ELEMENT_ERROR (typefind, STREAM, TYPE_NOT_FOUND, (NULL), (NULL));
1160       gst_caps_replace (&found_caps, NULL);
1161       ret = GST_FLOW_ERROR;
1162       goto pause;
1163     }
1164
1165     GST_DEBUG ("Emiting found caps %" GST_PTR_FORMAT, found_caps);
1166     /* Set to MODE_NORMAL before emitting have-type, in case it triggers a seek */
1167     typefind->mode = MODE_NORMAL;
1168     gst_type_find_element_emit_have_type (typefind, probability, found_caps);
1169     gst_caps_unref (found_caps);
1170   } else if (typefind->mode == MODE_NORMAL) {
1171     GstBuffer *outbuf = NULL;
1172
1173     if (typefind->need_segment) {
1174       typefind->need_segment = FALSE;
1175       gst_pad_push_event (typefind->src,
1176           gst_event_new_segment (&typefind->segment));
1177     }
1178
1179     /* Pull 4k blocks and send downstream */
1180     ret = gst_pad_pull_range (typefind->sink, typefind->offset, 4096, &outbuf);
1181     if (ret != GST_FLOW_OK)
1182       goto pause;
1183
1184     typefind->offset += gst_buffer_get_size (outbuf);
1185
1186     ret = gst_pad_push (typefind->src, outbuf);
1187     if (ret != GST_FLOW_OK)
1188       goto pause;
1189   } else {
1190     /* Error out */
1191     ret = GST_FLOW_ERROR;
1192     goto pause;
1193   }
1194
1195   return;
1196
1197 pause:
1198   {
1199     const gchar *reason = gst_flow_get_name (ret);
1200     gboolean push_eos = FALSE;
1201
1202     GST_LOG_OBJECT (typefind, "pausing task, reason %s", reason);
1203     gst_pad_pause_task (typefind->sink);
1204
1205     if (ret == GST_FLOW_EOS) {
1206       /* perform EOS logic */
1207
1208       if (typefind->segment.flags & GST_SEGMENT_FLAG_SEGMENT) {
1209         gint64 stop;
1210
1211         /* for segment playback we need to post when (in stream time)
1212          * we stopped, this is either stop (when set) or the duration. */
1213         if ((stop = typefind->segment.stop) == -1)
1214           stop = typefind->offset;
1215
1216         GST_LOG_OBJECT (typefind, "Sending segment done, at end of segment");
1217         gst_element_post_message (GST_ELEMENT (typefind),
1218             gst_message_new_segment_done (GST_OBJECT (typefind),
1219                 GST_FORMAT_BYTES, stop));
1220         gst_pad_push_event (typefind->src,
1221             gst_event_new_segment_done (GST_FORMAT_BYTES, stop));
1222       } else {
1223         push_eos = TRUE;
1224       }
1225     } else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_EOS) {
1226       /* for fatal errors we post an error message */
1227       GST_ELEMENT_FLOW_ERROR (typefind, ret);
1228       push_eos = TRUE;
1229     }
1230     if (push_eos) {
1231       /* send EOS, and prevent hanging if no streams yet */
1232       GST_LOG_OBJECT (typefind, "Sending EOS, at end of stream");
1233       gst_pad_push_event (typefind->src, gst_event_new_eos ());
1234     }
1235     return;
1236   }
1237 }
1238
1239 static gboolean
1240 gst_type_find_element_activate_sink_mode (GstPad * pad, GstObject * parent,
1241     GstPadMode mode, gboolean active)
1242 {
1243   gboolean res;
1244   GstTypeFindElement *typefind;
1245
1246   typefind = GST_TYPE_FIND_ELEMENT (parent);
1247
1248   switch (mode) {
1249     case GST_PAD_MODE_PULL:
1250       if (active) {
1251         gst_segment_init (&typefind->segment, GST_FORMAT_BYTES);
1252         typefind->need_segment = TRUE;
1253         typefind->need_stream_start = TRUE;
1254         typefind->offset = 0;
1255         res = TRUE;
1256       } else {
1257         res = gst_pad_stop_task (pad);
1258         gst_segment_init (&typefind->segment, GST_FORMAT_UNDEFINED);
1259       }
1260       break;
1261     case GST_PAD_MODE_PUSH:
1262       if (active) {
1263         gst_segment_init (&typefind->segment, GST_FORMAT_UNDEFINED);
1264         start_typefinding (typefind);
1265       } else {
1266         stop_typefinding (typefind);
1267         gst_segment_init (&typefind->segment, GST_FORMAT_UNDEFINED);
1268       }
1269       res = TRUE;
1270       break;
1271     default:
1272       res = FALSE;
1273       break;
1274   }
1275   return res;
1276 }
1277
1278 static gboolean
1279 gst_type_find_element_activate_sink (GstPad * pad, GstObject * parent)
1280 {
1281   GstQuery *query;
1282   gboolean pull_mode;
1283
1284   query = gst_query_new_scheduling ();
1285
1286   if (!gst_pad_peer_query (pad, query)) {
1287     gst_query_unref (query);
1288     goto typefind_push;
1289   }
1290
1291   pull_mode = gst_query_has_scheduling_mode_with_flags (query,
1292       GST_PAD_MODE_PULL, GST_SCHEDULING_FLAG_SEEKABLE);
1293
1294   gst_query_unref (query);
1295
1296   if (!pull_mode)
1297     goto typefind_push;
1298
1299   if (!gst_pad_activate_mode (pad, GST_PAD_MODE_PULL, TRUE))
1300     goto typefind_push;
1301
1302   /* only start our task if we ourselves decide to start in pull mode */
1303   return gst_pad_start_task (pad, (GstTaskFunction) gst_type_find_element_loop,
1304       pad, NULL);
1305
1306 typefind_push:
1307   {
1308     return gst_pad_activate_mode (pad, GST_PAD_MODE_PUSH, TRUE);
1309   }
1310 }
1311
1312 static GstStateChangeReturn
1313 gst_type_find_element_change_state (GstElement * element,
1314     GstStateChange transition)
1315 {
1316   GstStateChangeReturn ret;
1317   GstTypeFindElement *typefind;
1318
1319   typefind = GST_TYPE_FIND_ELEMENT (element);
1320
1321
1322   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1323
1324   switch (transition) {
1325     case GST_STATE_CHANGE_PAUSED_TO_READY:
1326     case GST_STATE_CHANGE_READY_TO_NULL:
1327       GST_OBJECT_LOCK (typefind);
1328       gst_caps_replace (&typefind->caps, NULL);
1329
1330       g_list_foreach (typefind->cached_events,
1331           (GFunc) gst_mini_object_unref, NULL);
1332       g_list_free (typefind->cached_events);
1333       typefind->cached_events = NULL;
1334       typefind->mode = MODE_TYPEFIND;
1335       GST_OBJECT_UNLOCK (typefind);
1336       break;
1337     default:
1338       break;
1339   }
1340
1341   return ret;
1342 }