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