Merge branch 'master' into 0.11
[platform/upstream/gstreamer.git] / gst / playback / gstplaybin.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /**
21  * SECTION:element-playbin
22  *
23  * Playbin provides a stand-alone everything-in-one abstraction for an
24  * audio and/or video player.
25  *
26  * <note>
27  * This element is deprecated and no longer supported. You should use
28  * the #playbin2 element instead.
29  * </note>
30  *
31  * It can handle both audio and video files and features
32  * <itemizedlist>
33  * <listitem>
34  * automatic file type recognition and based on that automatic
35  * selection and usage of the right audio/video/subtitle demuxers/decoders
36  * </listitem>
37  * <listitem>
38  * visualisations for audio files
39  * </listitem>
40  * <listitem>
41  * subtitle support for video files
42  * </listitem>
43  * <listitem>
44  * stream selection between different audio/subtitles streams
45  * </listitem>
46  * <listitem>
47  * meta info (tag) extraction
48  * </listitem>
49  * <listitem>
50  * easy access to the last video frame
51  * </listitem>
52  * <listitem>
53  * buffering when playing streams over a network
54  * </listitem>
55  * <listitem>
56  * volume control
57  * </listitem>
58  * </itemizedlist>
59  *
60  * <refsect2>
61  * <title>Usage</title>
62  * <para>
63  * A playbin element can be created just like any other element using
64  * gst_element_factory_make(). The file/URI to play should be set via the #GstPlayBin:uri
65  * property. This must be an absolute URI, relative file paths are not allowed.
66  * Example URIs are file:///home/joe/movie.avi or http://www.joedoe.com/foo.ogg
67  *
68  * Playbin is a #GstPipeline. It will notify the application of everything
69  * that's happening (errors, end of stream, tags found, state changes, etc.)
70  * by posting messages on its #GstBus. The application needs to watch the
71  * bus.
72  *
73  * Playback can be initiated by setting the element to PLAYING state using
74  * gst_element_set_state(). Note that the state change will take place in
75  * the background in a separate thread, when the function returns playback
76  * is probably not happening yet and any errors might not have occured yet.
77  * Applications using playbin should ideally be written to deal with things
78  * completely asynchroneous.
79  *
80  * When playback has finished (an EOS message has been received on the bus)
81  * or an error has occured (an ERROR message has been received on the bus) or
82  * the user wants to play a different track, playbin should be set back to
83  * READY or NULL state, then the #GstPlayBin:uri property should be set to the
84  * new location and then playbin be set to PLAYING state again.
85  *
86  * Seeking can be done using gst_element_seek_simple() or gst_element_seek()
87  * on the playbin element. Again, the seek will not be executed
88  * instantaneously, but will be done in a background thread. When the seek
89  * call returns the seek will most likely still be in process. An application
90  * may wait for the seek to finish (or fail) using gst_element_get_state() with
91  * -1 as the timeout, but this will block the user interface and is not
92  * recommended at all.
93  *
94  * Applications may query the current position and duration of the stream
95  * via gst_element_query_position() and gst_element_query_duration() and
96  * setting the format passed to GST_FORMAT_TIME. If the query was successful,
97  * the duration or position will have been returned in units of nanoseconds.
98  * </para>
99  * </refsect2>
100  * <refsect2>
101  * <title>Advanced Usage: specifying the audio and video sink</title>
102  * <para>
103  * By default, if no audio sink or video sink has been specified via the
104  * #GstPlayBin:audio-sink or #GstPlayBin:video-sink property, playbin will use
105  * the autoaudiosink and autovideosink elements to find the first-best
106  * available output method.
107  * This should work in most cases, but is not always desirable. Often either
108  * the user or application might want to specify more explicitly what to use
109  * for audio and video output.
110  *
111  * If the application wants more control over how audio or video should be
112  * output, it may create the audio/video sink elements itself (for example
113  * using gst_element_factory_make()) and provide them to playbin using the
114  * #GstPlayBin:audio-sink or #GstPlayBin:video-sink property.
115  *
116  * GNOME-based applications, for example, will usually want to create
117  * gconfaudiosink and gconfvideosink elements and make playbin use those,
118  * so that output happens to whatever the user has configured in the GNOME
119  * Multimedia System Selector confinguration dialog.
120  *
121  * The sink elements do not necessarily need to be ready-made sinks. It is
122  * possible to create container elements that look like a sink to playbin,
123  * but in reality contain a number of custom elements linked together. This
124  * can be achieved by creating a #GstBin and putting elements in there and
125  * linking them, and then creating a sink #GstGhostPad for the bin and pointing
126  * it to the sink pad of the first element within the bin. This can be used
127  * for a number of purposes, for example to force output to a particular
128  * format or to modify or observe the data before it is output.
129  *
130  * It is also possible to 'suppress' audio and/or video output by using
131  * 'fakesink' elements (or capture it from there using the fakesink element's
132  * "handoff" signal, which, nota bene, is fired from the streaming thread!).
133  * </para>
134  * </refsect2>
135  * <refsect2>
136  * <title>Retrieving Tags and Other Meta Data</title>
137  * <para>
138  * Most of the common meta data (artist, title, etc.) can be retrieved by
139  * watching for TAG messages on the pipeline's bus (see above).
140  *
141  * Other more specific meta information like width/height/framerate of video
142  * streams or samplerate/number of channels of audio streams can be obtained
143  * using the  #GstPlayBaseBin:stream-info property, which will return a GList of
144  * stream info objects, one for each stream. These are opaque objects that can
145  * only be accessed via the standard GObject property interface, ie. g_object_get().
146  * Each stream info object has the following properties:
147  * <itemizedlist>
148  * <listitem>"object" (GstObject) (the decoder source pad usually)</listitem>
149  * <listitem>"type" (enum) (if this is an audio/video/subtitle stream)</listitem>
150  * <listitem>"decoder" (string) (name of decoder used to decode this stream)</listitem>
151  * <listitem>"mute" (boolean) (to mute or unmute this stream)</listitem>
152  * <listitem>"caps" (GstCaps) (caps of the decoded stream)</listitem>
153  * <listitem>"language-code" (string) (ISO-639 language code for this stream, mostly used for audio/subtitle streams)</listitem>
154  * <listitem>"codec" (string) (format this stream was encoded in)</listitem>
155  * </itemizedlist>
156  * Stream information from the #GstPlayBaseBin:stream-info property is best queried once
157  * playbin has changed into PAUSED or PLAYING state (which can be detected
158  * via a state-changed message on the #GstBus where old_state=READY and
159  * new_state=PAUSED), since before that the list might not be complete yet or
160  * not contain all available information (like language-codes).
161  * </para>
162  * </refsect2>
163  * <refsect2>
164  * <title>Buffering</title>
165  * Playbin handles buffering automatically for the most part, but applications
166  * need to handle parts of the buffering process as well. Whenever playbin is
167  * buffering, it will post BUFFERING messages on the bus with a percentage
168  * value that shows the progress of the buffering process. Applications need
169  * to set playbin to PLAYING or PAUSED state in response to these messages.
170  * They may also want to convey the buffering progress to the user in some
171  * way. Here is how to extract the percentage information from the message
172  * (requires GStreamer >= 0.10.11):
173  * |[
174  * switch (GST_MESSAGE_TYPE (msg)) {
175  *   case GST_MESSAGE_BUFFERING: {
176  *     gint percent = 0;
177  *     gst_message_parse_buffering (msg, &amp;percent);
178  *     g_print ("Buffering (%%u percent done)", percent);
179  *     break;
180  *   }
181  *   ...
182  * }
183  * ]|
184  * Note that applications should keep/set the pipeline in the PAUSED state when
185  * a BUFFERING message is received with a buffer percent value < 100 and set
186  * the pipeline back to PLAYING state when a BUFFERING message with a value
187  * of 100 percent is received (if PLAYING is the desired state, that is).
188  * </refsect2>
189  * <refsect2>
190  * <title>Embedding the video window in your application</title>
191  * By default, playbin (or rather the video sinks used) will create their own
192  * window. Applications will usually want to force output to a window of their
193  * own, however. This can be done using the #GstXOverlay interface, which most
194  * video sinks implement. See the documentation there for more details.
195  * </refsect2>
196  * <refsect2>
197  * <title>Specifying which CD/DVD device to use</title>
198  * The device to use for CDs/DVDs needs to be set on the source element
199  * playbin creates before it is opened. The only way to do this at the moment
200  * is to connect to playbin's "notify::source" signal, which will be emitted
201  * by playbin when it has created the source element for a particular URI.
202  * In the signal callback you can check if the source element has a "device"
203  * property and set it appropriately. In future ways might be added to specify
204  * the device as part of the URI, but at the time of writing this is not
205  * possible yet.
206  * </refsect2>
207  * <refsect2>
208  * <title>Examples</title>
209  * |[
210  * gst-launch -v playbin uri=file:///path/to/somefile.avi
211  * ]| This will play back the given AVI video file, given that the video and
212  * audio decoders required to decode the content are installed. Since no
213  * special audio sink or video sink is supplied (not possible via gst-launch),
214  * playbin will try to find a suitable audio and video sink automatically
215  * using the autoaudiosink and autovideosink elements.
216  * |[
217  * gst-launch -v playbin uri=cdda://4
218  * ]| This will play back track 4 on an audio CD in your disc drive (assuming
219  * the drive is detected automatically by the plugin).
220  * |[
221  * gst-launch -v playbin uri=dvd://1
222  * ]| This will play back title 1 of a DVD in your disc drive (assuming
223  * the drive is detected automatically by the plugin).
224  * </refsect2>
225  *
226  * Deprecated: use playbin2 instead
227  */
228
229 #ifdef HAVE_CONFIG_H
230 #include "config.h"
231 #endif
232
233 #include <string.h>
234 #include <gst/gst.h>
235
236 #include <gst/gst-i18n-plugin.h>
237 #include <gst/pbutils/pbutils.h>
238
239 #include "gstplaybasebin.h"
240 #include "gstplayback.h"
241
242 GST_DEBUG_CATEGORY_STATIC (gst_play_bin_debug);
243 #define GST_CAT_DEFAULT gst_play_bin_debug
244
245 #define GST_TYPE_PLAY_BIN               (gst_play_bin_get_type())
246 #define GST_PLAY_BIN(obj)               (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PLAY_BIN,GstPlayBin))
247 #define GST_PLAY_BIN_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PLAY_BIN,GstPlayBinClass))
248 #define GST_IS_PLAY_BIN(obj)            (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PLAY_BIN))
249 #define GST_IS_PLAY_BIN_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PLAY_BIN))
250
251 #define VOLUME_MAX_DOUBLE 10.0
252
253 typedef struct _GstPlayBin GstPlayBin;
254 typedef struct _GstPlayBinClass GstPlayBinClass;
255
256 /**
257  * GstPlayBin:
258  *
259  * High-level player element
260  */
261 struct _GstPlayBin
262 {
263   GstPlayBaseBin parent;
264
265   /* the configurable elements */
266   GstElement *fakesink;
267   GstElement *audio_sink;
268   GstElement *video_sink;
269   GstElement *visualisation;
270   GstElement *pending_visualisation;
271   GstElement *volume_element;
272   GstElement *textoverlay_element;
273   GstElement *spu_element;
274   gfloat volume;
275
276   /* these are the currently active sinks */
277   GList *sinks;
278
279   /* the last captured frame for snapshots */
280   GstBuffer *frame;
281
282   /* our cache for the sinks */
283   GHashTable *cache;
284
285   /* font description */
286   gchar *font_desc;
287
288   /* indication if the pipeline is live */
289   gboolean is_live;
290 };
291
292 struct _GstPlayBinClass
293 {
294   GstPlayBaseBinClass parent_class;
295 };
296
297 /* props */
298 enum
299 {
300   ARG_0,
301   ARG_AUDIO_SINK,
302   ARG_VIDEO_SINK,
303   ARG_VIS_PLUGIN,
304   ARG_VOLUME,
305   ARG_FRAME,
306   ARG_FONT_DESC
307 };
308
309 /* signals */
310 enum
311 {
312   LAST_SIGNAL
313 };
314
315 static void gst_play_bin_class_init (GstPlayBinClass * klass);
316 static void gst_play_bin_init (GstPlayBin * play_bin);
317 static void gst_play_bin_dispose (GObject * object);
318
319 static gboolean setup_sinks (GstPlayBaseBin * play_base_bin,
320     GstPlayBaseGroup * group);
321 static void remove_sinks (GstPlayBin * play_bin);
322 static void playbin_set_subtitles_visible (GstPlayBaseBin * play_base_bin,
323     gboolean visible);
324 static void playbin_set_audio_mute (GstPlayBaseBin * play_base_bin,
325     gboolean mute);
326
327 static void gst_play_bin_set_property (GObject * object, guint prop_id,
328     const GValue * value, GParamSpec * spec);
329 static void gst_play_bin_get_property (GObject * object, guint prop_id,
330     GValue * value, GParamSpec * spec);
331
332 static gboolean gst_play_bin_send_event (GstElement * element,
333     GstEvent * event);
334 static GstStateChangeReturn gst_play_bin_change_state (GstElement * element,
335     GstStateChange transition);
336
337 static void gst_play_bin_handle_message (GstBin * bin, GstMessage * message);
338
339 static GstElementClass *parent_class;
340
341 //static guint gst_play_bin_signals[LAST_SIGNAL] = { 0 };
342
343 static GType
344 gst_play_bin_get_type (void)
345 {
346   static GType gst_play_bin_type = 0;
347
348   if (!gst_play_bin_type) {
349     static const GTypeInfo gst_play_bin_info = {
350       sizeof (GstPlayBinClass),
351       NULL,
352       NULL,
353       (GClassInitFunc) gst_play_bin_class_init,
354       NULL,
355       NULL,
356       sizeof (GstPlayBin),
357       0,
358       (GInstanceInitFunc) gst_play_bin_init,
359       NULL
360     };
361
362     gst_play_bin_type = g_type_register_static (GST_TYPE_PLAY_BASE_BIN,
363         "GstPlayBin", &gst_play_bin_info, 0);
364   }
365
366   return gst_play_bin_type;
367 }
368
369 static void
370 gst_play_bin_class_init (GstPlayBinClass * klass)
371 {
372   GObjectClass *gobject_klass;
373   GstElementClass *gstelement_klass;
374   GstBinClass *gstbin_klass;
375   GstPlayBaseBinClass *playbasebin_klass;
376
377   gobject_klass = (GObjectClass *) klass;
378   gstelement_klass = (GstElementClass *) klass;
379   gstbin_klass = (GstBinClass *) klass;
380   playbasebin_klass = (GstPlayBaseBinClass *) klass;
381
382   parent_class = g_type_class_peek_parent (klass);
383
384   gobject_klass->set_property = gst_play_bin_set_property;
385   gobject_klass->get_property = gst_play_bin_get_property;
386
387   g_object_class_install_property (gobject_klass, ARG_VIDEO_SINK,
388       g_param_spec_object ("video-sink", "Video Sink",
389           "the video output element to use (NULL = default sink)",
390           GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
391   g_object_class_install_property (gobject_klass, ARG_AUDIO_SINK,
392       g_param_spec_object ("audio-sink", "Audio Sink",
393           "the audio output element to use (NULL = default sink)",
394           GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
395   g_object_class_install_property (gobject_klass, ARG_VIS_PLUGIN,
396       g_param_spec_object ("vis-plugin", "Vis plugin",
397           "the visualization element to use (NULL = none)",
398           GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
399   /**
400    * GstPlayBin:volume:
401    *
402    * Get or set the current audio stream volume. 1.0 means 100%,
403    * 0.0 means mute. This uses a linear volume scale.
404    *
405    */
406   g_object_class_install_property (gobject_klass, ARG_VOLUME,
407       g_param_spec_double ("volume", "volume", "volume",
408           0.0, VOLUME_MAX_DOUBLE, 1.0,
409           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
410   g_object_class_install_property (gobject_klass, ARG_FRAME,
411       gst_param_spec_mini_object ("frame", "Frame",
412           "The last frame (NULL = no video available)", GST_TYPE_BUFFER,
413           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
414   g_object_class_install_property (gobject_klass, ARG_FONT_DESC,
415       g_param_spec_string ("subtitle-font-desc", "Subtitle font description",
416           "Pango font description of font " "to be used for subtitle rendering",
417           NULL, G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS));
418
419   gobject_klass->dispose = gst_play_bin_dispose;
420
421   gst_element_class_set_details_simple (gstelement_klass,
422       "Player Bin", "Generic/Bin/Player",
423       "Autoplug and play media from an uri",
424       "Wim Taymans <wim.taymans@gmail.com>");
425
426   gstelement_klass->change_state =
427       GST_DEBUG_FUNCPTR (gst_play_bin_change_state);
428   gstelement_klass->send_event = GST_DEBUG_FUNCPTR (gst_play_bin_send_event);
429
430   gstbin_klass->handle_message =
431       GST_DEBUG_FUNCPTR (gst_play_bin_handle_message);
432
433   playbasebin_klass->setup_output_pads = setup_sinks;
434   playbasebin_klass->set_subtitles_visible = playbin_set_subtitles_visible;
435   playbasebin_klass->set_audio_mute = playbin_set_audio_mute;
436 }
437
438 static void
439 gst_play_bin_init (GstPlayBin * play_bin)
440 {
441   play_bin->video_sink = NULL;
442   play_bin->audio_sink = NULL;
443   play_bin->visualisation = NULL;
444   play_bin->pending_visualisation = NULL;
445   play_bin->volume_element = NULL;
446   play_bin->textoverlay_element = NULL;
447   play_bin->spu_element = NULL;
448   play_bin->volume = 1.0;
449   play_bin->sinks = NULL;
450   play_bin->frame = NULL;
451   play_bin->font_desc = NULL;
452   play_bin->cache = g_hash_table_new_full (g_str_hash, g_str_equal,
453       NULL, (GDestroyNotify) gst_object_unref);
454 }
455
456 static void
457 gst_play_bin_dispose (GObject * object)
458 {
459   GstPlayBin *play_bin;
460
461   play_bin = GST_PLAY_BIN (object);
462
463   if (play_bin->cache != NULL) {
464     remove_sinks (play_bin);
465     g_hash_table_destroy (play_bin->cache);
466     play_bin->cache = NULL;
467   }
468
469   if (play_bin->audio_sink != NULL) {
470     gst_element_set_state (play_bin->audio_sink, GST_STATE_NULL);
471     gst_object_unref (play_bin->audio_sink);
472     play_bin->audio_sink = NULL;
473   }
474   if (play_bin->video_sink != NULL) {
475     gst_element_set_state (play_bin->video_sink, GST_STATE_NULL);
476     gst_object_unref (play_bin->video_sink);
477     play_bin->video_sink = NULL;
478   }
479   if (play_bin->visualisation != NULL) {
480     gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
481     gst_object_unref (play_bin->visualisation);
482     play_bin->visualisation = NULL;
483   }
484   if (play_bin->pending_visualisation != NULL) {
485     gst_element_set_state (play_bin->pending_visualisation, GST_STATE_NULL);
486     gst_object_unref (play_bin->pending_visualisation);
487     play_bin->pending_visualisation = NULL;
488   }
489   if (play_bin->textoverlay_element != NULL) {
490     gst_object_unref (play_bin->textoverlay_element);
491     play_bin->textoverlay_element = NULL;
492   }
493   if (play_bin->volume_element) {
494     gst_object_unref (play_bin->volume_element);
495     play_bin->volume_element = NULL;
496   }
497   if (play_bin->spu_element != NULL) {
498     gst_object_unref (play_bin->spu_element);
499     play_bin->spu_element = NULL;
500   }
501   g_free (play_bin->font_desc);
502   play_bin->font_desc = NULL;
503
504   G_OBJECT_CLASS (parent_class)->dispose (object);
505 }
506
507 static void
508 gst_play_bin_vis_unblocked (GstPad * tee_pad, gboolean blocked,
509     gpointer user_data)
510 {
511   GstPlayBin *play_bin = GST_PLAY_BIN (user_data);
512
513   if (play_bin->pending_visualisation)
514     gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
515         play_bin);
516 }
517
518 static void
519 gst_play_bin_vis_blocked (GstPad * tee_pad, gboolean blocked,
520     gpointer user_data)
521 {
522   GstPlayBin *play_bin = GST_PLAY_BIN (user_data);
523   GstBin *vis_bin = NULL;
524   GstPad *vis_sink_pad = NULL, *vis_src_pad = NULL, *vqueue_pad = NULL;
525   GstState bin_state;
526   GstElement *pending_visualisation;
527
528   GST_OBJECT_LOCK (play_bin);
529   pending_visualisation = play_bin->pending_visualisation;
530   play_bin->pending_visualisation = NULL;
531   GST_OBJECT_UNLOCK (play_bin);
532
533   /* We want to disable visualisation */
534   if (!GST_IS_ELEMENT (pending_visualisation)) {
535     /* Set visualisation element to READY */
536     gst_element_set_state (play_bin->visualisation, GST_STATE_READY);
537     goto beach;
538   }
539
540   vis_bin =
541       GST_BIN_CAST (gst_object_get_parent (GST_OBJECT_CAST
542           (play_bin->visualisation)));
543
544   if (!GST_IS_BIN (vis_bin) || !GST_IS_PAD (tee_pad)) {
545     goto beach;
546   }
547
548   vis_src_pad = gst_element_get_static_pad (play_bin->visualisation, "src");
549   vis_sink_pad = gst_pad_get_peer (tee_pad);
550
551   /* Can be fakesink */
552   if (GST_IS_PAD (vis_src_pad)) {
553     vqueue_pad = gst_pad_get_peer (vis_src_pad);
554   }
555
556   if (!GST_IS_PAD (vis_sink_pad)) {
557     goto beach;
558   }
559
560   /* Check the bin's state */
561   GST_OBJECT_LOCK (vis_bin);
562   bin_state = GST_STATE (vis_bin);
563   GST_OBJECT_UNLOCK (vis_bin);
564
565   /* Unlink */
566   gst_pad_unlink (tee_pad, vis_sink_pad);
567   gst_object_unref (vis_sink_pad);
568   vis_sink_pad = NULL;
569
570   if (GST_IS_PAD (vqueue_pad)) {
571     gst_pad_unlink (vis_src_pad, vqueue_pad);
572     gst_object_unref (vis_src_pad);
573     vis_src_pad = NULL;
574   }
575
576   /* Remove from vis_bin */
577   gst_bin_remove (vis_bin, play_bin->visualisation);
578   /* Set state to NULL */
579   gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
580   /* And loose our ref */
581   gst_object_unref (play_bin->visualisation);
582
583   if (pending_visualisation) {
584     /* Ref this new visualisation element before adding to the bin */
585     gst_object_ref (pending_visualisation);
586     /* Add the new one */
587     gst_bin_add (vis_bin, pending_visualisation);
588     /* Synchronizing state */
589     gst_element_set_state (pending_visualisation, bin_state);
590
591     vis_sink_pad = gst_element_get_static_pad (pending_visualisation, "sink");
592     vis_src_pad = gst_element_get_static_pad (pending_visualisation, "src");
593
594     if (!GST_IS_PAD (vis_sink_pad) || !GST_IS_PAD (vis_src_pad)) {
595       goto beach;
596     }
597
598     /* Link */
599     gst_pad_link (tee_pad, vis_sink_pad);
600     gst_pad_link (vis_src_pad, vqueue_pad);
601   }
602
603   /* We are done */
604   gst_object_unref (play_bin->visualisation);
605   play_bin->visualisation = pending_visualisation;
606
607 beach:
608   if (vis_sink_pad) {
609     gst_object_unref (vis_sink_pad);
610   }
611   if (vis_src_pad) {
612     gst_object_unref (vis_src_pad);
613   }
614   if (vqueue_pad) {
615     gst_object_unref (vqueue_pad);
616   }
617   if (vis_bin) {
618     gst_object_unref (vis_bin);
619   }
620
621   /* Unblock the pad */
622   gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
623       play_bin);
624 }
625
626 static void
627 gst_play_bin_set_property (GObject * object, guint prop_id,
628     const GValue * value, GParamSpec * pspec)
629 {
630   GstPlayBin *play_bin;
631
632   play_bin = GST_PLAY_BIN (object);
633
634   switch (prop_id) {
635     case ARG_VIDEO_SINK:
636       if (play_bin->video_sink != NULL) {
637         gst_object_unref (play_bin->video_sink);
638       }
639       play_bin->video_sink = g_value_get_object (value);
640       if (play_bin->video_sink != NULL) {
641         gst_object_ref_sink (play_bin->video_sink);
642       }
643       /* when changing the videosink, we just remove the
644        * video pipeline from the cache so that it will be
645        * regenerated with the new sink element */
646       g_hash_table_remove (play_bin->cache, "vbin");
647       break;
648     case ARG_AUDIO_SINK:
649       if (play_bin->audio_sink != NULL) {
650         gst_object_unref (play_bin->audio_sink);
651       }
652       if (play_bin->volume_element != NULL) {
653         gst_object_unref (play_bin->volume_element);
654         play_bin->volume_element = NULL;
655       }
656       play_bin->audio_sink = g_value_get_object (value);
657       if (play_bin->audio_sink != NULL) {
658         gst_object_ref_sink (play_bin->audio_sink);
659       }
660       g_hash_table_remove (play_bin->cache, "abin");
661       break;
662     case ARG_VIS_PLUGIN:
663     {
664       GstElement *pending_visualisation =
665           GST_ELEMENT_CAST (g_value_get_object (value));
666
667       /* Take ownership */
668       if (pending_visualisation) {
669         gst_object_ref_sink (pending_visualisation);
670       }
671
672       /* Do we already have a visualisation change pending ? */
673       GST_OBJECT_LOCK (play_bin);
674       if (play_bin->pending_visualisation) {
675         gst_object_unref (play_bin->pending_visualisation);
676         play_bin->pending_visualisation = pending_visualisation;
677         GST_OBJECT_UNLOCK (play_bin);
678       } else {
679         GST_OBJECT_UNLOCK (play_bin);
680         /* Was there a visualisation already set ? */
681         if (play_bin->visualisation != NULL) {
682           GstBin *vis_bin = NULL;
683
684           vis_bin =
685               GST_BIN_CAST (gst_object_get_parent (GST_OBJECT_CAST
686                   (play_bin->visualisation)));
687
688           /* Check if the visualisation is already in a bin */
689           if (GST_IS_BIN (vis_bin)) {
690             GstPad *vis_sink_pad = NULL, *tee_pad = NULL;
691
692             /* Now get tee pad and block it async */
693             vis_sink_pad = gst_element_get_static_pad (play_bin->visualisation,
694                 "sink");
695             if (!GST_IS_PAD (vis_sink_pad)) {
696               goto beach;
697             }
698             tee_pad = gst_pad_get_peer (vis_sink_pad);
699             if (!GST_IS_PAD (tee_pad)) {
700               goto beach;
701             }
702
703             play_bin->pending_visualisation = pending_visualisation;
704             /* Block with callback */
705             gst_pad_set_blocked_async (tee_pad, TRUE, gst_play_bin_vis_blocked,
706                 play_bin);
707           beach:
708             if (vis_sink_pad) {
709               gst_object_unref (vis_sink_pad);
710             }
711             if (tee_pad) {
712               gst_object_unref (tee_pad);
713             }
714             gst_object_unref (vis_bin);
715           } else {
716             play_bin->visualisation = pending_visualisation;
717           }
718         } else {
719           play_bin->visualisation = pending_visualisation;
720         }
721       }
722       break;
723     }
724     case ARG_VOLUME:
725       play_bin->volume = g_value_get_double (value);
726       if (play_bin->volume_element) {
727         g_object_set (G_OBJECT (play_bin->volume_element), "volume",
728             play_bin->volume, NULL);
729       }
730       break;
731     case ARG_FONT_DESC:
732       g_free (play_bin->font_desc);
733       play_bin->font_desc = g_strdup (g_value_get_string (value));
734       if (play_bin->textoverlay_element) {
735         g_object_set (G_OBJECT (play_bin->textoverlay_element),
736             "font-desc", g_value_get_string (value), NULL);
737       }
738       break;
739     default:
740       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
741       break;
742   }
743 }
744
745 static void
746 gst_play_bin_get_property (GObject * object, guint prop_id, GValue * value,
747     GParamSpec * pspec)
748 {
749   GstPlayBin *play_bin;
750
751   play_bin = GST_PLAY_BIN (object);
752
753   switch (prop_id) {
754     case ARG_VIDEO_SINK:
755       g_value_set_object (value, play_bin->video_sink);
756       break;
757     case ARG_AUDIO_SINK:
758       g_value_set_object (value, play_bin->audio_sink);
759       break;
760     case ARG_VIS_PLUGIN:
761       g_value_set_object (value, play_bin->visualisation);
762       break;
763     case ARG_VOLUME:
764       g_value_set_double (value, play_bin->volume);
765       break;
766     case ARG_FRAME:{
767       GstBuffer *cur_frame = NULL;
768
769       gst_buffer_replace (&cur_frame, play_bin->frame);
770       gst_value_take_buffer (value, cur_frame);
771       break;
772     }
773     default:
774       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
775       break;
776   }
777 }
778
779 /* signal fired when the identity has received a new buffer. This is used for
780  * making screenshots.
781  */
782 static void
783 handoff (GstElement * identity, GstBuffer * frame, gpointer data)
784 {
785   GstPlayBin *play_bin = GST_PLAY_BIN (data);
786
787   /* applications need to know the buffer caps,
788    * make sure they are always set on the frame */
789   if (GST_BUFFER_CAPS (frame) == NULL) {
790     GstPad *pad;
791
792     if ((pad = gst_element_get_static_pad (identity, "sink"))) {
793       gst_buffer_set_caps (frame, GST_PAD_CAPS (pad));
794       gst_object_unref (pad);
795     }
796   }
797
798   gst_buffer_replace (&play_bin->frame, frame);
799 }
800
801 static void
802 post_missing_element_message (GstPlayBin * playbin, const gchar * name)
803 {
804   GstMessage *msg;
805
806   msg = gst_missing_element_message_new (GST_ELEMENT_CAST (playbin), name);
807   gst_element_post_message (GST_ELEMENT_CAST (playbin), msg);
808 }
809
810 /* make the element (bin) that contains the elements needed to perform
811  * video display. We connect a handoff signal to identity so that we
812  * can grab snapshots. Identity's sinkpad is ghosted to vbin.
813  *
814  *  +-------------------------------------------------------------+
815  *  | vbin                                                        |
816  *  |      +--------+   +----------+   +----------+   +---------+ |
817  *  |      |identity|   |colorspace|   |videoscale|   |videosink| |
818  *  |   +-sink     src-sink       src-sink       src-sink       | |
819  *  |   |  +---+----+   +----------+   +----------+   +---------+ |
820  * sink-+      |                                                  |
821  *  +----------|--------------------------------------------------+
822  *           handoff
823  */
824 static GstElement *
825 gen_video_element (GstPlayBin * play_bin)
826 {
827   GstElement *element;
828   GstElement *conv;
829
830   GstElement *scale;
831   GstElement *sink;
832   GstElement *identity;
833   GstPad *pad;
834
835   /* first see if we have it in the cache */
836   element = g_hash_table_lookup (play_bin->cache, "vbin");
837   if (element != NULL) {
838     return element;
839   }
840
841   if (play_bin->video_sink) {
842     sink = play_bin->video_sink;
843   } else {
844     sink = gst_element_factory_make ("autovideosink", "videosink");
845     if (sink == NULL) {
846       sink = gst_element_factory_make ("xvimagesink", "videosink");
847     }
848     if (sink == NULL)
849       goto no_sinks;
850   }
851   gst_object_ref (sink);
852   g_hash_table_insert (play_bin->cache, (gpointer) "video_sink", sink);
853
854   /* create a bin to hold objects, as we create them we add them to this bin so
855    * that when something goes wrong we only need to unref the bin */
856   element = gst_bin_new ("vbin");
857   gst_bin_add (GST_BIN_CAST (element), sink);
858
859   conv = gst_element_factory_make ("ffmpegcolorspace", "vconv");
860   if (conv == NULL)
861     goto no_colorspace;
862   gst_bin_add (GST_BIN_CAST (element), conv);
863
864   scale = gst_element_factory_make ("videoscale", "vscale");
865   if (scale == NULL)
866     goto no_videoscale;
867   gst_bin_add (GST_BIN_CAST (element), scale);
868
869   identity = gst_element_factory_make ("identity", "id");
870   g_object_set (identity, "silent", TRUE, NULL);
871   g_signal_connect (identity, "handoff", G_CALLBACK (handoff), play_bin);
872   gst_bin_add (GST_BIN_CAST (element), identity);
873
874   gst_element_link_pads (identity, "src", conv, "sink");
875   gst_element_link_pads (conv, "src", scale, "sink");
876   /* be more careful with the pad from the custom sink element, it might not
877    * be named 'sink' */
878   if (!gst_element_link_pads (scale, "src", sink, NULL))
879     goto link_failed;
880
881   pad = gst_element_get_static_pad (identity, "sink");
882   gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
883   gst_object_unref (pad);
884
885   gst_element_set_state (element, GST_STATE_READY);
886
887   /* since we're gonna add it to a bin but don't want to lose it,
888    * we keep a reference. */
889   gst_object_ref (element);
890   g_hash_table_insert (play_bin->cache, (gpointer) "vbin", element);
891
892   return element;
893
894   /* ERRORS */
895 no_sinks:
896   {
897     post_missing_element_message (play_bin, "autovideosink");
898     GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
899         (_("Both autovideosink and xvimagesink elements are missing.")),
900         (NULL));
901     return NULL;
902   }
903 no_colorspace:
904   {
905     post_missing_element_message (play_bin, "ffmpegcolorspace");
906     GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
907         (_("Missing element '%s' - check your GStreamer installation."),
908             "ffmpegcolorspace"), (NULL));
909     gst_object_unref (element);
910     return NULL;
911   }
912
913 no_videoscale:
914   {
915     post_missing_element_message (play_bin, "videoscale");
916     GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
917         (_("Missing element '%s' - check your GStreamer installation."),
918             "videoscale"), ("possibly a liboil version mismatch?"));
919     gst_object_unref (element);
920     return NULL;
921   }
922 link_failed:
923   {
924     GST_ELEMENT_ERROR (play_bin, CORE, PAD,
925         (NULL), ("Failed to configure the video sink."));
926     gst_object_unref (element);
927     return NULL;
928   }
929 }
930
931 /* make an element for playback of video with subtitles embedded.
932  *
933  *  +--------------------------------------------------+
934  *  | tbin                  +-------------+            |
935  *  |          +-----+      | textoverlay |   +------+ |
936  *  |          | csp | +--video_sink      |   | vbin | |
937  * video_sink-sink  src+ +-text_sink    src---sink   | |
938  *  |          +-----+   |  +-------------+   +------+ |
939  * text_sink-------------+                             |
940  *  +--------------------------------------------------+
941  *
942  *  If there is no subtitle renderer this function will simply return the
943  *  videosink without the text_sink pad.
944  */
945 static GstElement *
946 add_text_element (GstPlayBin * play_bin, GstElement * vbin)
947 {
948   GstElement *element, *csp, *overlay;
949   GstPad *pad;
950
951   /* Text overlay */
952   overlay = gst_element_factory_make ("textoverlay", "overlay");
953
954   /* If no overlay return the video bin without subtitle support. */
955   if (!overlay)
956     goto no_overlay;
957
958   /* Create our bin */
959   element = gst_bin_new ("textbin");
960
961   /* Set some parameters */
962   g_object_set (G_OBJECT (overlay),
963       "halign", "center", "valign", "bottom", NULL);
964   if (play_bin->font_desc) {
965     g_object_set (G_OBJECT (overlay), "font-desc", play_bin->font_desc, NULL);
966   }
967
968   /* Take a ref */
969   play_bin->textoverlay_element = GST_ELEMENT_CAST (gst_object_ref (overlay));
970
971   /* we know this will succeed, as the video bin already created one before */
972   csp = gst_element_factory_make ("ffmpegcolorspace", "subtitlecsp");
973
974   /* Add our elements */
975   gst_bin_add_many (GST_BIN_CAST (element), csp, overlay, vbin, NULL);
976
977   /* Link */
978   gst_element_link_pads (csp, "src", overlay, "video_sink");
979   gst_element_link_pads (overlay, "src", vbin, "sink");
980
981   /* Add ghost pads on the subtitle bin */
982   pad = gst_element_get_static_pad (overlay, "text_sink");
983   gst_element_add_pad (element, gst_ghost_pad_new ("text_sink", pad));
984   gst_object_unref (pad);
985
986   pad = gst_element_get_static_pad (csp, "sink");
987   gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
988   gst_object_unref (pad);
989
990   /* If the vbin provides a subpicture sink pad, ghost it too */
991   pad = gst_element_get_static_pad (vbin, "subpicture_sink");
992   if (pad) {
993     gst_element_add_pad (element, gst_ghost_pad_new ("subpicture_sink", pad));
994     gst_object_unref (pad);
995   }
996
997   /* Set state to READY */
998   gst_element_set_state (element, GST_STATE_READY);
999
1000   return element;
1001
1002   /* ERRORS */
1003 no_overlay:
1004   {
1005     post_missing_element_message (play_bin, "textoverlay");
1006     GST_WARNING_OBJECT (play_bin,
1007         "No overlay (pango) element, subtitles disabled");
1008     return vbin;
1009   }
1010 }
1011
1012 /* make an element for rendering DVD subpictures onto output video
1013  *
1014  *  +---------------------------------------------+
1015  *  | tbin                   +--------+           |
1016  *  |          +-----+       |        |  +------+ |
1017  *  |          | csp | src-videosink  |  | vbin | |
1018  * video_sink-sink  src+     |       src-sink   | |
1019  *  |          +-----+   +subpicture  |  +------+ |
1020  * subpicture_pad--------+   +--------+           |
1021  *  +---------- ----------------------------------+
1022  *
1023  */
1024 static GstElement *
1025 add_spu_element (GstPlayBin * play_bin, GstElement * vbin)
1026 {
1027   GstElement *element, *csp, *overlay;
1028   GstPad *pad;
1029
1030   /* DVD spu overlay */
1031   GST_DEBUG_OBJECT (play_bin, "Attempting to insert DVD SPU element");
1032
1033   overlay = gst_element_factory_make ("dvdspu", "overlay");
1034
1035   /* If no overlay return the video bin without subpicture support. */
1036   if (!overlay)
1037     goto no_overlay;
1038
1039   /* Create our bin */
1040   element = gst_bin_new ("spubin");
1041
1042   /* Take a ref */
1043   play_bin->spu_element = GST_ELEMENT_CAST (gst_object_ref (overlay));
1044
1045   /* we know this will succeed, as the video bin already created one before */
1046   csp = gst_element_factory_make ("ffmpegcolorspace", "spucsp");
1047
1048   /* Add our elements */
1049   gst_bin_add_many (GST_BIN_CAST (element), csp, overlay, vbin, NULL);
1050
1051   /* Link */
1052   gst_element_link_pads (csp, "src", overlay, "video");
1053   gst_element_link_pads (overlay, "src", vbin, "sink");
1054
1055   /* Add ghost pad on the subpicture bin so it looks like vbin */
1056   pad = gst_element_get_static_pad (csp, "sink");
1057   gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1058   gst_object_unref (pad);
1059
1060   pad = gst_element_get_static_pad (overlay, "subpicture");
1061   gst_element_add_pad (element, gst_ghost_pad_new ("subpicture_sink", pad));
1062   gst_object_unref (pad);
1063
1064   /* Set state to READY */
1065   gst_element_set_state (element, GST_STATE_READY);
1066
1067   return element;
1068
1069   /* ERRORS */
1070 no_overlay:
1071   {
1072     post_missing_element_message (play_bin, "dvdspu");
1073     GST_WARNING_OBJECT (play_bin,
1074         "No DVD overlay (dvdspu) element. "
1075         "menu highlight/subtitles unavailable");
1076     return vbin;
1077   }
1078 }
1079
1080 /* make the element (bin) that contains the elements needed to perform
1081  * audio playback.
1082  *
1083  *  +-------------------------------------------------------------+
1084  *  | abin                                                        |
1085  *  |      +---------+   +----------+   +---------+   +---------+ |
1086  *  |      |audioconv|   |audioscale|   | volume  |   |audiosink| |
1087  *  |   +-sink      src-sink       src-sink      src-sink       | |
1088  *  |   |  +---------+   +----------+   +---------+   +---------+ |
1089  * sink-+                                                         |
1090  *  +-------------------------------------------------------------+
1091  */
1092 static GstElement *
1093 gen_audio_element (GstPlayBin * play_bin)
1094 {
1095   gboolean res;
1096   GstElement *element;
1097   GstElement *conv;
1098   GstElement *scale;
1099   GstElement *sink;
1100   GstElement *volume;
1101   GstPad *pad;
1102
1103   element = g_hash_table_lookup (play_bin->cache, "abin");
1104   if (element != NULL)
1105     return element;
1106
1107   if (play_bin->audio_sink) {
1108     sink = play_bin->audio_sink;
1109   } else {
1110     sink = gst_element_factory_make ("autoaudiosink", "audiosink");
1111     if (sink == NULL) {
1112       sink = gst_element_factory_make ("alsasink", "audiosink");
1113     }
1114     if (sink == NULL)
1115       goto no_sinks;
1116
1117     play_bin->audio_sink = GST_ELEMENT_CAST (gst_object_ref (sink));
1118   }
1119
1120   gst_object_ref (sink);
1121   g_hash_table_insert (play_bin->cache, (gpointer) "audio_sink", sink);
1122
1123   element = gst_bin_new ("abin");
1124   gst_bin_add (GST_BIN_CAST (element), sink);
1125
1126   conv = gst_element_factory_make ("audioconvert", "aconv");
1127   if (conv == NULL)
1128     goto no_audioconvert;
1129   gst_bin_add (GST_BIN_CAST (element), conv);
1130
1131   scale = gst_element_factory_make ("audioresample", "aresample");
1132   if (scale == NULL)
1133     goto no_audioresample;
1134   gst_bin_add (GST_BIN_CAST (element), scale);
1135
1136   volume = gst_element_factory_make ("volume", "volume");
1137   if (volume == NULL)
1138     goto no_volume;
1139   g_object_set (G_OBJECT (volume), "volume", play_bin->volume, NULL);
1140   play_bin->volume_element = GST_ELEMENT_CAST (gst_object_ref (volume));
1141   gst_bin_add (GST_BIN_CAST (element), volume);
1142
1143   res = gst_element_link_pads (conv, "src", scale, "sink");
1144   res &= gst_element_link_pads (scale, "src", volume, "sink");
1145   res &= gst_element_link_pads (volume, "src", sink, NULL);
1146   if (!res)
1147     goto link_failed;
1148
1149   pad = gst_element_get_static_pad (conv, "sink");
1150   gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1151   gst_object_unref (pad);
1152
1153   gst_element_set_state (element, GST_STATE_READY);
1154
1155   /* since we're gonna add it to a bin but don't want to lose it,
1156    * we keep a reference. */
1157   gst_object_ref (element);
1158   g_hash_table_insert (play_bin->cache, (gpointer) "abin", element);
1159
1160   return element;
1161
1162   /* ERRORS */
1163 no_sinks:
1164   {
1165     post_missing_element_message (play_bin, "autoaudiosink");
1166     GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1167         (_("Both autoaudiosink and alsasink elements are missing.")), (NULL));
1168     return NULL;
1169   }
1170 no_audioconvert:
1171   {
1172     post_missing_element_message (play_bin, "audioconvert");
1173     GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1174         (_("Missing element '%s' - check your GStreamer installation."),
1175             "audioconvert"), ("possibly a liboil version mismatch?"));
1176     gst_object_unref (element);
1177     return NULL;
1178   }
1179 no_audioresample:
1180   {
1181     post_missing_element_message (play_bin, "audioresample");
1182     GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1183         (_("Missing element '%s' - check your GStreamer installation."),
1184             "audioresample"), ("possibly a liboil version mismatch?"));
1185     gst_object_unref (element);
1186     return NULL;
1187   }
1188 no_volume:
1189   {
1190     post_missing_element_message (play_bin, "volume");
1191     GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1192         (_("Missing element '%s' - check your GStreamer installation."),
1193             "volume"), ("possibly a liboil version mismatch?"));
1194     gst_object_unref (element);
1195     return NULL;
1196   }
1197 link_failed:
1198   {
1199     GST_ELEMENT_ERROR (play_bin, CORE, PAD,
1200         (NULL), ("Failed to configure the audio sink."));
1201     gst_object_unref (element);
1202     return NULL;
1203   }
1204 }
1205
1206 /* make the element (bin) that contains the elements needed to perform
1207  * visualisation ouput.  The idea is to split the audio using tee, then
1208  * sending the output to the regular audio bin and the other output to
1209  * the vis plugin that transforms it into a video that is rendered with the
1210  * normal video bin. The video and audio bins are run in threads to make sure
1211  * they don't block eachother.
1212  *
1213  *  +-----------------------------------------------------------------------+
1214  *  | visbin                                                                |
1215  *  |      +------+   +--------+   +----------------+                       |
1216  *  |      | tee  |   | aqueue |   |   abin ...     |                       |
1217  *  |   +-sink   src-sink     src-sink              |                       |
1218  *  |   |  |      |   +--------+   +----------------+                       |
1219  *  |   |  |      |                                                         |
1220  *  |   |  |      |   +------+   +------------+   +------+   +-----------+  |
1221  *  |   |  |      |   |vqueue|   | audioconv  |   | vis  |   | vbin ...  |  |
1222  *  |   |  |     src-sink   src-sink + samp  src-sink   src-sink         |  |
1223  *  |   |  |      |   +------+   +------------+   +------+   +-----------+  |
1224  *  |   |  |      |                                                         |
1225  *  |   |  +------+                                                         |
1226  * sink-+                                                                   |
1227  *  +-----------------------------------------------------------------------+
1228  */
1229 static GstElement *
1230 gen_vis_element (GstPlayBin * play_bin)
1231 {
1232   gboolean res;
1233   GstElement *element;
1234   GstElement *tee;
1235   GstElement *asink;
1236   GstElement *vsink;
1237   GstElement *conv;
1238   GstElement *resamp;
1239   GstElement *conv2;
1240   GstElement *vis;
1241   GstElement *vqueue, *aqueue;
1242   GstPad *pad, *rpad;
1243
1244   /* errors are already posted when these fail. */
1245   asink = gen_audio_element (play_bin);
1246   if (!asink)
1247     return NULL;
1248   vsink = gen_video_element (play_bin);
1249   if (!vsink) {
1250     gst_object_unref (asink);
1251     return NULL;
1252   }
1253
1254   element = gst_bin_new ("visbin");
1255   tee = gst_element_factory_make ("tee", "tee");
1256
1257   vqueue = gst_element_factory_make ("queue", "vqueue");
1258   aqueue = gst_element_factory_make ("queue", "aqueue");
1259
1260   gst_bin_add (GST_BIN_CAST (element), asink);
1261   gst_bin_add (GST_BIN_CAST (element), vqueue);
1262   gst_bin_add (GST_BIN_CAST (element), aqueue);
1263   gst_bin_add (GST_BIN_CAST (element), vsink);
1264   gst_bin_add (GST_BIN_CAST (element), tee);
1265
1266   conv = gst_element_factory_make ("audioconvert", "aconv");
1267   if (conv == NULL)
1268     goto no_audioconvert;
1269   gst_bin_add (GST_BIN_CAST (element), conv);
1270
1271   resamp = gst_element_factory_make ("audioresample", "aresamp");
1272   if (resamp == NULL)
1273     goto no_audioresample;
1274   gst_bin_add (GST_BIN_CAST (element), resamp);
1275
1276   conv2 = gst_element_factory_make ("audioconvert", "aconv2");
1277   if (conv2 == NULL)
1278     goto no_audioconvert;
1279   gst_bin_add (GST_BIN_CAST (element), conv2);
1280
1281   if (play_bin->visualisation) {
1282     gst_object_ref (play_bin->visualisation);
1283     vis = play_bin->visualisation;
1284   } else {
1285     vis = gst_element_factory_make ("goom", "vis");
1286     if (!vis)
1287       goto no_goom;
1288   }
1289   gst_bin_add (GST_BIN_CAST (element), vis);
1290
1291   res = gst_element_link_pads (vqueue, "src", conv, "sink");
1292   res &= gst_element_link_pads (conv, "src", resamp, "sink");
1293   res &= gst_element_link_pads (resamp, "src", conv2, "sink");
1294   res &= gst_element_link_pads (conv2, "src", vis, "sink");
1295   res &= gst_element_link_pads (vis, "src", vsink, "sink");
1296   if (!res)
1297     goto link_failed;
1298
1299   pad = gst_element_get_static_pad (aqueue, "sink");
1300   rpad = gst_element_get_request_pad (tee, "src%d");
1301   gst_pad_link (rpad, pad);
1302   gst_object_unref (rpad);
1303   gst_object_unref (pad);
1304   gst_element_link_pads (aqueue, "src", asink, "sink");
1305
1306   pad = gst_element_get_static_pad (vqueue, "sink");
1307   rpad = gst_element_get_request_pad (tee, "src%d");
1308   gst_pad_link (rpad, pad);
1309   gst_object_unref (rpad);
1310   gst_object_unref (pad);
1311
1312   pad = gst_element_get_static_pad (tee, "sink");
1313   gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1314   gst_object_unref (pad);
1315
1316   return element;
1317
1318   /* ERRORS */
1319 no_audioconvert:
1320   {
1321     post_missing_element_message (play_bin, "audioconvert");
1322     GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1323         (_("Missing element '%s' - check your GStreamer installation."),
1324             "audioconvert"), ("possibly a liboil version mismatch?"));
1325     gst_object_unref (element);
1326     return NULL;
1327   }
1328 no_audioresample:
1329   {
1330     post_missing_element_message (play_bin, "audioresample");
1331     GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1332         (_("Missing element '%s' - check your GStreamer installation."),
1333             "audioresample"), (NULL));
1334     gst_object_unref (element);
1335     return NULL;
1336   }
1337 no_goom:
1338   {
1339     post_missing_element_message (play_bin, "goom");
1340     GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1341         (_("Missing element '%s' - check your GStreamer installation."),
1342             "goom"), (NULL));
1343     gst_object_unref (element);
1344     return NULL;
1345   }
1346 link_failed:
1347   {
1348     GST_ELEMENT_ERROR (play_bin, CORE, PAD,
1349         (NULL), ("Failed to configure the visualisation element."));
1350     gst_object_unref (element);
1351     return NULL;
1352   }
1353 }
1354
1355 /* get rid of all installed sinks */
1356 static void
1357 remove_sinks (GstPlayBin * play_bin)
1358 {
1359   GList *sinks;
1360   GstObject *parent;
1361   GstElement *element;
1362   GstPad *pad, *peer;
1363
1364   if (play_bin->cache == NULL)
1365     return;
1366
1367   GST_DEBUG ("removesinks");
1368   element = g_hash_table_lookup (play_bin->cache, "abin");
1369   if (element != NULL) {
1370     parent = gst_element_get_parent (element);
1371     if (parent != NULL) {
1372       /* we remove the element from the parent so that
1373        * there is no unwanted state change when the parent
1374        * is disposed */
1375       play_bin->sinks = g_list_remove (play_bin->sinks, element);
1376       gst_element_set_state (element, GST_STATE_NULL);
1377       gst_bin_remove (GST_BIN_CAST (parent), element);
1378       gst_object_unref (parent);
1379     }
1380     pad = gst_element_get_static_pad (element, "sink");
1381     if (pad != NULL) {
1382       peer = gst_pad_get_peer (pad);
1383       if (peer != NULL) {
1384         gst_pad_unlink (peer, pad);
1385         gst_object_unref (peer);
1386       }
1387       gst_object_unref (pad);
1388     }
1389   }
1390   element = g_hash_table_lookup (play_bin->cache, "vbin");
1391   if (element != NULL) {
1392     parent = gst_element_get_parent (element);
1393     if (parent != NULL) {
1394       play_bin->sinks = g_list_remove (play_bin->sinks, element);
1395       gst_element_set_state (element, GST_STATE_NULL);
1396       gst_bin_remove (GST_BIN_CAST (parent), element);
1397       gst_object_unref (parent);
1398     }
1399     pad = gst_element_get_static_pad (element, "sink");
1400     if (pad != NULL) {
1401       peer = gst_pad_get_peer (pad);
1402       if (peer != NULL) {
1403         gst_pad_unlink (peer, pad);
1404         gst_object_unref (peer);
1405       }
1406       gst_object_unref (pad);
1407     }
1408   }
1409
1410   for (sinks = play_bin->sinks; sinks; sinks = g_list_next (sinks)) {
1411     GstElement *element = GST_ELEMENT_CAST (sinks->data);
1412     GstPad *pad;
1413     GstPad *peer;
1414
1415     pad = gst_element_get_static_pad (element, "sink");
1416
1417     GST_LOG ("removing sink %p", element);
1418
1419     peer = gst_pad_get_peer (pad);
1420     if (peer) {
1421       gst_pad_unlink (peer, pad);
1422       gst_object_unref (peer);
1423     }
1424     gst_object_unref (pad);
1425
1426     gst_element_set_state (element, GST_STATE_NULL);
1427     gst_bin_remove (GST_BIN_CAST (play_bin), element);
1428   }
1429   g_list_free (play_bin->sinks);
1430   play_bin->sinks = NULL;
1431
1432   if (play_bin->visualisation) {
1433     GstElement *vis_bin;
1434
1435     vis_bin =
1436         GST_ELEMENT_CAST (gst_element_get_parent (play_bin->visualisation));
1437
1438     gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
1439
1440     if (vis_bin) {
1441       gst_bin_remove (GST_BIN_CAST (vis_bin), play_bin->visualisation);
1442       gst_object_unref (vis_bin);
1443     }
1444   }
1445
1446   if (play_bin->frame) {
1447     gst_buffer_unref (play_bin->frame);
1448     play_bin->frame = NULL;
1449   }
1450
1451   if (play_bin->textoverlay_element) {
1452     gst_object_unref (play_bin->textoverlay_element);
1453     play_bin->textoverlay_element = NULL;
1454   }
1455 }
1456
1457 /* loop over the streams and set up the pipeline to play this
1458  * media file. First we count the number of audio and video streams.
1459  * If there is no video stream but there exists an audio stream,
1460  * we install a visualisation pipeline.
1461  *
1462  * Also make sure to only connect the first audio and video pad. FIXME
1463  * this should eventually be handled with a tuner interface so that
1464  * one can switch the streams.
1465  *
1466  * This function takes ownership of @sink.*
1467  */
1468 static gboolean
1469 add_sink (GstPlayBin * play_bin, GstElement * sink, GstPad * srcpad,
1470     GstPad * subtitle_pad)
1471 {
1472   GstPad *sinkpad;
1473   GstPadLinkReturn linkres;
1474   GstElement *parent;
1475   GstStateChangeReturn stateret;
1476   GstState state;
1477
1478   g_return_val_if_fail (sink != NULL, FALSE);
1479
1480   state = GST_STATE_PAUSED;
1481
1482   /* this is only for debugging */
1483   parent = gst_pad_get_parent_element (srcpad);
1484   if (parent) {
1485     GST_DEBUG ("Adding sink %" GST_PTR_FORMAT
1486         " with state %d (parent: %d, peer: %d)", sink,
1487         GST_STATE (sink), GST_STATE (play_bin), GST_STATE (parent));
1488     gst_object_unref (parent);
1489   }
1490   gst_bin_add (GST_BIN_CAST (play_bin), sink);
1491
1492   /* bring it to the required state so we can link to the peer without
1493    * breaking the flow */
1494   stateret = gst_element_set_state (sink, state);
1495   if (stateret == GST_STATE_CHANGE_FAILURE)
1496     goto state_failed;
1497
1498   /* we found a sink for this stream, now try to install it */
1499   sinkpad = gst_element_get_static_pad (sink, "sink");
1500   linkres = gst_pad_link (srcpad, sinkpad);
1501   gst_object_unref (sinkpad);
1502
1503   /* try to link the pad of the sink to the stream */
1504   if (GST_PAD_LINK_FAILED (linkres))
1505     goto link_failed;
1506
1507   if (GST_IS_PAD (subtitle_pad)) {
1508     sinkpad = gst_element_get_static_pad (sink, "text_sink");
1509     linkres = gst_pad_link (subtitle_pad, sinkpad);
1510     gst_object_unref (sinkpad);
1511   }
1512
1513   /* try to link the subtitle pad of the sink to the stream, this is not
1514    * fatal. */
1515   if (GST_PAD_LINK_FAILED (linkres))
1516     goto subtitle_failed;
1517
1518 done:
1519   /* we got the sink succesfully linked, now keep the sink
1520    * in our internal list */
1521   play_bin->sinks = g_list_prepend (play_bin->sinks, sink);
1522
1523   return TRUE;
1524
1525   /* ERRORS */
1526 state_failed:
1527   {
1528     gst_element_set_state (sink, GST_STATE_NULL);
1529     gst_bin_remove (GST_BIN_CAST (play_bin), sink);
1530     GST_DEBUG_OBJECT (play_bin, "state change failure when adding sink");
1531     return FALSE;
1532   }
1533 link_failed:
1534   {
1535     gchar *capsstr;
1536     GstCaps *caps;
1537
1538     /* could not link this stream */
1539     caps = gst_pad_get_caps (srcpad);
1540     capsstr = gst_caps_to_string (caps);
1541     g_warning ("could not link %s: %d", capsstr, linkres);
1542     GST_DEBUG_OBJECT (play_bin,
1543         "link failed when adding sink, caps %s, reason %d", capsstr, linkres);
1544     g_free (capsstr);
1545     gst_caps_unref (caps);
1546
1547     gst_element_set_state (sink, GST_STATE_NULL);
1548     gst_bin_remove (GST_BIN_CAST (play_bin), sink);
1549     return FALSE;
1550   }
1551 subtitle_failed:
1552   {
1553     GstCaps *caps;
1554
1555     /* could not link this stream */
1556     caps = gst_pad_get_caps (subtitle_pad);
1557     GST_WARNING_OBJECT (play_bin, "subtitle link failed when adding sink, "
1558         "caps = %" GST_PTR_FORMAT ", reason %d", caps, linkres);
1559     gst_caps_unref (caps);
1560
1561     /* not fatal */
1562     goto done;
1563   }
1564 }
1565
1566 static void
1567 dummy_blocked_cb (GstPad * pad, gboolean blocked, gpointer user_data)
1568 {
1569 }
1570
1571 static gboolean
1572 setup_sinks (GstPlayBaseBin * play_base_bin, GstPlayBaseGroup * group)
1573 {
1574   GstPlayBin *play_bin = GST_PLAY_BIN (play_base_bin);
1575   gboolean have_video = FALSE;
1576   gboolean need_vis = FALSE;
1577   gboolean need_text = FALSE;
1578   gboolean need_spu = FALSE;
1579   GstPad *textsrcpad = NULL, *pad = NULL, *origtextsrcpad = NULL;
1580   GstElement *sink;
1581   gboolean res = TRUE;
1582
1583   /* get rid of existing sinks */
1584   if (play_bin->sinks) {
1585     remove_sinks (play_bin);
1586   }
1587   GST_DEBUG_OBJECT (play_base_bin, "setupsinks");
1588
1589   /* find out what to do */
1590   have_video = (group->type[GST_STREAM_TYPE_VIDEO - 1].npads > 0);
1591   need_spu = (group->type[GST_STREAM_TYPE_SUBPICTURE - 1].npads != 0);
1592
1593   if (have_video && group->type[GST_STREAM_TYPE_TEXT - 1].npads > 0) {
1594     need_text = TRUE;
1595   } else if (!have_video &&
1596       group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0 &&
1597       play_bin->visualisation != NULL) {
1598     need_vis = TRUE;
1599   }
1600
1601   /* now actually connect everything */
1602
1603   /* link audio */
1604   if (group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0) {
1605     if (need_vis) {
1606       sink = gen_vis_element (play_bin);
1607     } else {
1608       sink = gen_audio_element (play_bin);
1609     }
1610     if (!sink)
1611       return FALSE;
1612
1613     pad =
1614         gst_element_get_static_pad (group->type[GST_STREAM_TYPE_AUDIO -
1615             1].preroll, "src");
1616     res = add_sink (play_bin, sink, pad, NULL);
1617     gst_object_unref (pad);
1618   }
1619
1620   /* link video */
1621   if (have_video) {
1622     /* Create the video rendering bin, error is posted when this fails. */
1623     sink = gen_video_element (play_bin);
1624     if (!sink)
1625       return FALSE;
1626     if (need_spu) {
1627       sink = add_spu_element (play_bin, sink);
1628     }
1629
1630     if (need_text) {
1631       GstObject *parent = NULL, *grandparent = NULL;
1632       GstPad *ghost = NULL;
1633
1634       /* Add the subtitle overlay element into the video sink */
1635       sink = add_text_element (play_bin, sink);
1636
1637       /* Link the incoming subtitle stream into the output bin */
1638       textsrcpad =
1639           gst_element_get_static_pad (group->type[GST_STREAM_TYPE_TEXT -
1640               1].preroll, "src");
1641
1642       /* This pad is from subtitle-bin, we need to create a ghost pad to have
1643          common grandparents */
1644       parent = gst_object_get_parent (GST_OBJECT_CAST (textsrcpad));
1645       if (!parent) {
1646         GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no parent !");
1647         gst_object_unref (textsrcpad);
1648         textsrcpad = NULL;
1649         goto beach;
1650       }
1651
1652       grandparent = gst_object_get_parent (parent);
1653       if (!grandparent) {
1654         GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no grandparent !");
1655         gst_object_unref (parent);
1656         gst_object_unref (textsrcpad);
1657         textsrcpad = NULL;
1658         goto beach;
1659       }
1660
1661       /* We ghost the pad on subtitle_bin only, if the text pad is from the
1662          media demuxer we keep it as it is */
1663       if (!GST_IS_PLAY_BIN (grandparent)) {
1664         GST_DEBUG_OBJECT (textsrcpad, "this subtitle pad is from a subtitle "
1665             "file, ghosting to a suitable hierarchy");
1666         /* Block the pad first, because as soon as we add a ghostpad, the queue
1667          * will try and start pushing */
1668         gst_pad_set_blocked_async (textsrcpad, TRUE, dummy_blocked_cb, NULL);
1669         origtextsrcpad = gst_object_ref (textsrcpad);
1670
1671         ghost = gst_ghost_pad_new ("text_src", textsrcpad);
1672         if (!GST_IS_PAD (ghost)) {
1673           GST_WARNING_OBJECT (textsrcpad, "failed creating ghost pad for "
1674               "subtitle-bin");
1675           gst_object_unref (parent);
1676           gst_object_unref (grandparent);
1677           gst_object_unref (textsrcpad);
1678           textsrcpad = NULL;
1679           goto beach;
1680         }
1681
1682         gst_pad_set_active (ghost, TRUE);
1683         if (gst_element_add_pad (GST_ELEMENT_CAST (grandparent), ghost)) {
1684           gst_object_unref (textsrcpad);
1685           textsrcpad = gst_object_ref (ghost);
1686         } else {
1687           GST_WARNING_OBJECT (ghost, "failed adding ghost pad on subtitle-bin");
1688           gst_pad_set_active (ghost, FALSE);
1689           gst_object_unref (ghost);
1690           gst_object_unref (textsrcpad);
1691           textsrcpad = NULL;
1692         }
1693       } else {
1694         GST_DEBUG_OBJECT (textsrcpad, "this subtitle pad is from the demuxer "
1695             "no changes to hierarchy needed");
1696       }
1697
1698       gst_object_unref (parent);
1699       gst_object_unref (grandparent);
1700     }
1701   beach:
1702     if (!sink)
1703       return FALSE;
1704     pad =
1705         gst_element_get_static_pad (group->type[GST_STREAM_TYPE_VIDEO -
1706             1].preroll, "src");
1707     res = add_sink (play_bin, sink, pad, textsrcpad);
1708     gst_object_unref (pad);
1709     if (textsrcpad)
1710       gst_object_unref (textsrcpad);
1711     if (origtextsrcpad) {
1712       gst_pad_set_blocked_async (origtextsrcpad, FALSE, dummy_blocked_cb, NULL);
1713       gst_object_unref (origtextsrcpad);
1714     }
1715
1716     /* If we have a DVD subpicture stream, link it to the SPU now */
1717     if (need_spu) {
1718       GstPad *subpic_pad;
1719       GstPad *spu_sink_pad;
1720
1721       subpic_pad =
1722           gst_element_get_static_pad (group->type[GST_STREAM_TYPE_SUBPICTURE
1723               - 1].preroll, "src");
1724       spu_sink_pad = gst_element_get_static_pad (sink, "subpicture_sink");
1725       if (subpic_pad && spu_sink_pad) {
1726         GST_LOG_OBJECT (play_bin, "Linking DVD subpicture stream onto SPU");
1727         gst_pad_set_blocked_async (subpic_pad, TRUE, dummy_blocked_cb, NULL);
1728         if (gst_pad_link (subpic_pad, spu_sink_pad) != GST_PAD_LINK_OK) {
1729           GST_WARNING_OBJECT (play_bin,
1730               "Failed to link DVD subpicture stream onto SPU");
1731         }
1732         gst_pad_set_blocked_async (subpic_pad, FALSE, dummy_blocked_cb, NULL);
1733       }
1734       if (subpic_pad)
1735         gst_object_unref (subpic_pad);
1736       if (spu_sink_pad)
1737         gst_object_unref (spu_sink_pad);
1738     }
1739   }
1740
1741   /* remove the sinks now, pipeline get_state will now wait for the
1742    * sinks to preroll */
1743   if (play_bin->fakesink) {
1744     gst_element_set_state (play_bin->fakesink, GST_STATE_NULL);
1745     gst_bin_remove (GST_BIN_CAST (play_bin), play_bin->fakesink);
1746     play_bin->fakesink = NULL;
1747   }
1748
1749   return res;
1750 }
1751
1752 static void
1753 playbin_set_subtitles_visible (GstPlayBaseBin * play_base_bin, gboolean visible)
1754 {
1755   GstPlayBin *playbin = GST_PLAY_BIN (play_base_bin);
1756
1757   /* we're ignoring the case of someone setting the 'current-text' property
1758    * before textoverlay is set up (which is probably okay, since playbasebin
1759    * will just select the first subtitle stream as active stream regardless) */
1760   if (playbin->textoverlay_element != NULL) {
1761     GST_LOG_OBJECT (playbin, "setting subtitle visibility to %d", visible);
1762     g_object_set (playbin->textoverlay_element, "silent", !visible, NULL);
1763   }
1764 }
1765
1766 static void
1767 playbin_set_audio_mute (GstPlayBaseBin * play_base_bin, gboolean mute)
1768 {
1769   GstPlayBin *playbin = GST_PLAY_BIN (play_base_bin);
1770
1771   if (playbin->volume_element) {
1772     g_object_set (G_OBJECT (playbin->volume_element), "mute", mute, NULL);
1773   }
1774 }
1775
1776 /* Send an event to our sinks until one of them works; don't then send to the
1777  * remaining sinks (unlike GstBin)
1778  */
1779 static gboolean
1780 gst_play_bin_send_event_to_sink (GstPlayBin * play_bin, GstEvent * event)
1781 {
1782   GList *sinks = play_bin->sinks;
1783   gboolean res = TRUE;
1784
1785   while (sinks) {
1786     GstElement *sink = GST_ELEMENT_CAST (sinks->data);
1787
1788     gst_event_ref (event);
1789     if ((res = gst_element_send_event (sink, event))) {
1790       GST_DEBUG_OBJECT (play_bin,
1791           "Sent event succesfully to sink %" GST_PTR_FORMAT, sink);
1792       break;
1793     }
1794     GST_DEBUG_OBJECT (play_bin,
1795         "Event failed when sent to sink %" GST_PTR_FORMAT, sink);
1796
1797     sinks = g_list_next (sinks);
1798   }
1799
1800   gst_event_unref (event);
1801
1802   return res;
1803 }
1804
1805 /* We only want to send the event to a single sink (overriding GstBin's
1806  * behaviour), but we want to keep GstPipeline's behaviour - wrapping seek
1807  * events appropriately. So, this is a messy duplication of code. */
1808 static gboolean
1809 gst_play_bin_send_event (GstElement * element, GstEvent * event)
1810 {
1811   gboolean res = FALSE;
1812   GstEventType event_type = GST_EVENT_TYPE (event);
1813
1814   switch (event_type) {
1815     case GST_EVENT_SEEK:
1816       GST_DEBUG_OBJECT (element, "Sending seek event to a sink");
1817       res = gst_play_bin_send_event_to_sink (GST_PLAY_BIN (element), event);
1818       break;
1819     default:
1820       res = parent_class->send_event (element, event);
1821       break;
1822   }
1823
1824   return res;
1825 }
1826
1827 static void
1828 value_list_append_structure_list (GValue * list_val, GstStructure ** first,
1829     GList * structure_list)
1830 {
1831   GList *l;
1832
1833   for (l = structure_list; l != NULL; l = l->next) {
1834     GValue val = { 0, };
1835
1836     if (*first == NULL)
1837       *first = gst_structure_copy ((GstStructure *) l->data);
1838
1839     g_value_init (&val, GST_TYPE_STRUCTURE);
1840     g_value_take_boxed (&val, gst_structure_copy ((GstStructure *) l->data));
1841     gst_value_list_append_value (list_val, &val);
1842     g_value_unset (&val);
1843   }
1844 }
1845
1846 /* if it's a redirect message with multiple redirect locations we might
1847  * want to pick a different 'best' location depending on the required
1848  * bitrates and the connection speed */
1849 static GstMessage *
1850 gst_play_bin_handle_redirect_message (GstPlayBin * playbin, GstMessage * msg)
1851 {
1852   const GValue *locations_list, *location_val;
1853   GstMessage *new_msg;
1854   GstStructure *new_structure = NULL;
1855   GList *l_good = NULL, *l_neutral = NULL, *l_bad = NULL;
1856   GValue new_list = { 0, };
1857   guint size, i;
1858   GstPlayBaseBin *playbasebin = GST_PLAY_BASE_BIN (playbin);
1859   guint connection_speed = playbasebin->connection_speed;
1860
1861   GST_DEBUG_OBJECT (playbin, "redirect message: %" GST_PTR_FORMAT, msg);
1862   GST_DEBUG_OBJECT (playbin, "connection speed: %u", connection_speed);
1863
1864   if (connection_speed == 0 || msg->structure == NULL)
1865     return msg;
1866
1867   locations_list = gst_structure_get_value (msg->structure, "locations");
1868   if (locations_list == NULL)
1869     return msg;
1870
1871   size = gst_value_list_get_size (locations_list);
1872   if (size < 2)
1873     return msg;
1874
1875   /* maintain existing order as much as possible, just sort references
1876    * with too high a bitrate to the end (the assumption being that if
1877    * bitrates are given they are given for all interesting streams and
1878    * that the you-need-at-least-version-xyz redirect has the same bitrate
1879    * as the lowest referenced redirect alternative) */
1880   for (i = 0; i < size; ++i) {
1881     const GstStructure *s;
1882     gint bitrate = 0;
1883
1884     location_val = gst_value_list_get_value (locations_list, i);
1885     s = (const GstStructure *) g_value_get_boxed (location_val);
1886     if (!gst_structure_get_int (s, "minimum-bitrate", &bitrate) || bitrate <= 0) {
1887       GST_DEBUG_OBJECT (playbin, "no bitrate: %" GST_PTR_FORMAT, s);
1888       l_neutral = g_list_append (l_neutral, (gpointer) s);
1889     } else if (bitrate > connection_speed) {
1890       GST_DEBUG_OBJECT (playbin, "bitrate too high: %" GST_PTR_FORMAT, s);
1891       l_bad = g_list_append (l_bad, (gpointer) s);
1892     } else if (bitrate <= connection_speed) {
1893       GST_DEBUG_OBJECT (playbin, "bitrate OK: %" GST_PTR_FORMAT, s);
1894       l_good = g_list_append (l_good, (gpointer) s);
1895     }
1896   }
1897
1898   g_value_init (&new_list, GST_TYPE_LIST);
1899   value_list_append_structure_list (&new_list, &new_structure, l_good);
1900   value_list_append_structure_list (&new_list, &new_structure, l_neutral);
1901   value_list_append_structure_list (&new_list, &new_structure, l_bad);
1902   gst_structure_set_value (new_structure, "locations", &new_list);
1903   g_value_unset (&new_list);
1904
1905   g_list_free (l_good);
1906   g_list_free (l_neutral);
1907   g_list_free (l_bad);
1908
1909   new_msg = gst_message_new_element (msg->src, new_structure);
1910   gst_message_unref (msg);
1911
1912   GST_DEBUG_OBJECT (playbin, "new redirect message: %" GST_PTR_FORMAT, new_msg);
1913   return new_msg;
1914 }
1915
1916 static void
1917 gst_play_bin_handle_message (GstBin * bin, GstMessage * msg)
1918 {
1919   if (GST_MESSAGE_TYPE (msg) == GST_MESSAGE_ELEMENT && msg->structure != NULL
1920       && gst_structure_has_name (msg->structure, "redirect")) {
1921     msg = gst_play_bin_handle_redirect_message (GST_PLAY_BIN (bin), msg);
1922   }
1923
1924   GST_BIN_CLASS (parent_class)->handle_message (bin, msg);
1925 }
1926
1927 static GstStateChangeReturn
1928 gst_play_bin_change_state (GstElement * element, GstStateChange transition)
1929 {
1930   GstStateChangeReturn ret;
1931   GstPlayBin *play_bin;
1932
1933   play_bin = GST_PLAY_BIN (element);
1934
1935
1936   switch (transition) {
1937     case GST_STATE_CHANGE_READY_TO_PAUSED:
1938       /* this really is the easiest way to make the state change return
1939        * ASYNC until we added the sinks */
1940       if (!play_bin->fakesink) {
1941         play_bin->fakesink = gst_element_factory_make ("fakesink", "test");
1942         gst_bin_add (GST_BIN_CAST (play_bin), play_bin->fakesink);
1943       }
1944       break;
1945     default:
1946       break;
1947   }
1948
1949   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1950   if (ret == GST_STATE_CHANGE_FAILURE)
1951     return ret;
1952
1953   switch (transition) {
1954     case GST_STATE_CHANGE_READY_TO_PAUSED:
1955       /* remember us being a live pipeline */
1956       play_bin->is_live = (ret == GST_STATE_CHANGE_NO_PREROLL);
1957       GST_DEBUG_OBJECT (play_bin, "is live: %d", play_bin->is_live);
1958       break;
1959     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1960       /* FIXME Release audio device when we implement that */
1961       break;
1962     case GST_STATE_CHANGE_PAUSED_TO_READY:
1963     case GST_STATE_CHANGE_READY_TO_NULL:
1964       /* remove sinks we added */
1965       remove_sinks (play_bin);
1966       /* and there might be a fakesink we need to clean up now */
1967       if (play_bin->fakesink) {
1968         gst_element_set_state (play_bin->fakesink, GST_STATE_NULL);
1969         gst_bin_remove (GST_BIN_CAST (play_bin), play_bin->fakesink);
1970         play_bin->fakesink = NULL;
1971       }
1972       break;
1973     default:
1974       break;
1975   }
1976
1977   return ret;
1978 }
1979
1980 gboolean
1981 gst_play_bin_plugin_init (GstPlugin * plugin)
1982 {
1983   GST_DEBUG_CATEGORY_INIT (gst_play_bin_debug, "playbin", 0, "play bin");
1984
1985   return gst_element_register (plugin, "playbin", GST_RANK_NONE,
1986       GST_TYPE_PLAY_BIN);
1987 }