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