2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
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.
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.
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.
21 * SECTION:element-playbin
23 * Playbin provides a stand-alone everything-in-one abstraction for an
24 * audio and/or video player.
26 * It can handle both audio and video files and features
29 * automatic file type recognition and based on that automatic
30 * selection and usage of the right audio/video/subtitle demuxers/decoders
33 * visualisations for audio files
36 * subtitle support for video files
39 * stream selection between different audio/subtitles streams
42 * meta info (tag) extraction
45 * easy access to the last video frame
48 * buffering when playing streams over a network
56 * <title>Usage</title>
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
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
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.
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.
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
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.
96 * <title>Advanced Usage: specifying the audio and video sink</title>
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.
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.
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.
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.
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!).
131 * <title>Retrieving Tags and Other Meta Data</title>
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).
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:
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>
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).
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):
169 * switch (GST_MESSAGE_TYPE (msg)) {
170 * case GST_MESSAGE_BUFFERING: {
172 * gst_message_parse_buffering (msg, &percent);
173 * g_print ("Buffering (%%u percent done)", percent);
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).
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.
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
203 * <title>Examples</title>
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.
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).
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).
229 #include <gst/gst-i18n-plugin.h>
230 #include <gst/pbutils/pbutils.h>
232 #include "gstplaybasebin.h"
233 #include "gstplayback.h"
235 GST_DEBUG_CATEGORY_STATIC (gst_play_bin_debug);
236 #define GST_CAT_DEFAULT gst_play_bin_debug
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))
244 #define VOLUME_MAX_DOUBLE 10.0
246 typedef struct _GstPlayBin GstPlayBin;
247 typedef struct _GstPlayBinClass GstPlayBinClass;
252 * High-level player element
256 GstPlayBaseBin parent;
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;
269 /* these are the currently active sinks */
272 /* the last captured frame for snapshots */
275 /* our cache for the sinks */
278 /* font description */
281 /* indication if the pipeline is live */
285 struct _GstPlayBinClass
287 GstPlayBaseBinClass parent_class;
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);
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,
317 static void playbin_set_audio_mute (GstPlayBaseBin * play_base_bin,
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);
325 static gboolean gst_play_bin_send_event (GstElement * element,
327 static GstStateChangeReturn gst_play_bin_change_state (GstElement * element,
328 GstStateChange transition);
330 static void gst_play_bin_handle_message (GstBin * bin, GstMessage * message);
332 static GstElementClass *parent_class;
334 //static guint gst_play_bin_signals[LAST_SIGNAL] = { 0 };
337 gst_play_bin_get_type (void)
339 static GType gst_play_bin_type = 0;
341 if (!gst_play_bin_type) {
342 static const GTypeInfo gst_play_bin_info = {
343 sizeof (GstPlayBinClass),
346 (GClassInitFunc) gst_play_bin_class_init,
351 (GInstanceInitFunc) gst_play_bin_init,
355 gst_play_bin_type = g_type_register_static (GST_TYPE_PLAY_BASE_BIN,
356 "GstPlayBin", &gst_play_bin_info, 0);
359 return gst_play_bin_type;
363 gst_play_bin_class_init (GstPlayBinClass * klass)
365 GObjectClass *gobject_klass;
366 GstElementClass *gstelement_klass;
367 GstBinClass *gstbin_klass;
368 GstPlayBaseBinClass *playbasebin_klass;
370 gobject_klass = (GObjectClass *) klass;
371 gstelement_klass = (GstElementClass *) klass;
372 gstbin_klass = (GstBinClass *) klass;
373 playbasebin_klass = (GstPlayBaseBinClass *) klass;
375 parent_class = g_type_class_peek_parent (klass);
377 gobject_klass->set_property = gst_play_bin_set_property;
378 gobject_klass->get_property = gst_play_bin_get_property;
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));
395 * Get or set the current audio stream volume. 1.0 means 100%,
396 * 0.0 means mute. This uses a linear volume scale.
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));
412 gobject_klass->dispose = gst_play_bin_dispose;
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>");
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);
423 gstbin_klass->handle_message =
424 GST_DEBUG_FUNCPTR (gst_play_bin_handle_message);
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;
432 gst_play_bin_init (GstPlayBin * play_bin)
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);
450 gst_play_bin_dispose (GObject * object)
452 GstPlayBin *play_bin;
454 play_bin = GST_PLAY_BIN (object);
456 if (play_bin->cache != NULL) {
457 remove_sinks (play_bin);
458 g_hash_table_destroy (play_bin->cache);
459 play_bin->cache = NULL;
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;
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;
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;
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;
482 if (play_bin->textoverlay_element != NULL) {
483 gst_object_unref (play_bin->textoverlay_element);
484 play_bin->textoverlay_element = NULL;
486 if (play_bin->volume_element) {
487 gst_object_unref (play_bin->volume_element);
488 play_bin->volume_element = NULL;
490 if (play_bin->spu_element != NULL) {
491 gst_object_unref (play_bin->spu_element);
492 play_bin->spu_element = NULL;
494 g_free (play_bin->font_desc);
495 play_bin->font_desc = NULL;
497 G_OBJECT_CLASS (parent_class)->dispose (object);
501 gst_play_bin_vis_unblocked (GstPad * tee_pad, gboolean blocked,
504 GstPlayBin *play_bin = GST_PLAY_BIN (user_data);
506 if (play_bin->pending_visualisation)
507 gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
512 gst_play_bin_vis_blocked (GstPad * tee_pad, gboolean blocked,
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;
519 GstElement *pending_visualisation;
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);
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);
534 GST_BIN_CAST (gst_object_get_parent (GST_OBJECT_CAST
535 (play_bin->visualisation)));
537 if (!GST_IS_BIN (vis_bin) || !GST_IS_PAD (tee_pad)) {
541 vis_src_pad = gst_element_get_static_pad (play_bin->visualisation, "src");
542 vis_sink_pad = gst_pad_get_peer (tee_pad);
544 /* Can be fakesink */
545 if (GST_IS_PAD (vis_src_pad)) {
546 vqueue_pad = gst_pad_get_peer (vis_src_pad);
549 if (!GST_IS_PAD (vis_sink_pad)) {
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);
559 gst_pad_unlink (tee_pad, vis_sink_pad);
560 gst_object_unref (vis_sink_pad);
563 if (GST_IS_PAD (vqueue_pad)) {
564 gst_pad_unlink (vis_src_pad, vqueue_pad);
565 gst_object_unref (vis_src_pad);
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);
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);
584 vis_sink_pad = gst_element_get_static_pad (pending_visualisation, "sink");
585 vis_src_pad = gst_element_get_static_pad (pending_visualisation, "src");
587 if (!GST_IS_PAD (vis_sink_pad) || !GST_IS_PAD (vis_src_pad)) {
592 gst_pad_link (tee_pad, vis_sink_pad);
593 gst_pad_link (vis_src_pad, vqueue_pad);
597 gst_object_unref (play_bin->visualisation);
598 play_bin->visualisation = pending_visualisation;
602 gst_object_unref (vis_sink_pad);
605 gst_object_unref (vis_src_pad);
608 gst_object_unref (vqueue_pad);
611 gst_object_unref (vis_bin);
614 /* Unblock the pad */
615 gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
620 gst_play_bin_set_property (GObject * object, guint prop_id,
621 const GValue * value, GParamSpec * pspec)
623 GstPlayBin *play_bin;
625 play_bin = GST_PLAY_BIN (object);
629 if (play_bin->video_sink != NULL) {
630 gst_object_unref (play_bin->video_sink);
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));
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");
643 if (play_bin->audio_sink != NULL) {
644 gst_object_unref (play_bin->audio_sink);
646 if (play_bin->volume_element != NULL) {
647 gst_object_unref (play_bin->volume_element);
648 play_bin->volume_element = NULL;
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));
655 g_hash_table_remove (play_bin->cache, "abin");
659 GstElement *pending_visualisation =
660 GST_ELEMENT_CAST (g_value_get_object (value));
663 if (pending_visualisation) {
664 gst_object_ref (pending_visualisation);
665 gst_object_sink (pending_visualisation);
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);
675 GST_OBJECT_UNLOCK (play_bin);
676 /* Was there a visualisation already set ? */
677 if (play_bin->visualisation != NULL) {
678 GstBin *vis_bin = NULL;
681 GST_BIN_CAST (gst_object_get_parent (GST_OBJECT_CAST
682 (play_bin->visualisation)));
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;
688 /* Now get tee pad and block it async */
689 vis_sink_pad = gst_element_get_static_pad (play_bin->visualisation,
691 if (!GST_IS_PAD (vis_sink_pad)) {
694 tee_pad = gst_pad_get_peer (vis_sink_pad);
695 if (!GST_IS_PAD (tee_pad)) {
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,
705 gst_object_unref (vis_sink_pad);
708 gst_object_unref (tee_pad);
710 gst_object_unref (vis_bin);
712 play_bin->visualisation = pending_visualisation;
715 play_bin->visualisation = pending_visualisation;
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);
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);
736 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
742 gst_play_bin_get_property (GObject * object, guint prop_id, GValue * value,
745 GstPlayBin *play_bin;
747 play_bin = GST_PLAY_BIN (object);
751 g_value_set_object (value, play_bin->video_sink);
754 g_value_set_object (value, play_bin->audio_sink);
757 g_value_set_object (value, play_bin->visualisation);
760 g_value_set_double (value, play_bin->volume);
763 GstBuffer *cur_frame = NULL;
765 gst_buffer_replace (&cur_frame, play_bin->frame);
766 gst_value_take_buffer (value, cur_frame);
770 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
775 /* signal fired when the identity has received a new buffer. This is used for
776 * making screenshots.
779 handoff (GstElement * identity, GstBuffer * frame, gpointer data)
781 GstPlayBin *play_bin = GST_PLAY_BIN (data);
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) {
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);
794 gst_buffer_replace (&play_bin->frame, frame);
798 post_missing_element_message (GstPlayBin * playbin, const gchar * name)
802 msg = gst_missing_element_message_new (GST_ELEMENT_CAST (playbin), name);
803 gst_element_post_message (GST_ELEMENT_CAST (playbin), msg);
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.
810 * +-------------------------------------------------------------+
812 * | +--------+ +----------+ +----------+ +---------+ |
813 * | |identity| |colorspace| |videoscale| |videosink| |
814 * | +-sink src-sink src-sink src-sink | |
815 * | | +---+----+ +----------+ +----------+ +---------+ |
817 * +----------|--------------------------------------------------+
821 gen_video_element (GstPlayBin * play_bin)
828 GstElement *identity;
831 /* first see if we have it in the cache */
832 element = g_hash_table_lookup (play_bin->cache, "vbin");
833 if (element != NULL) {
837 if (play_bin->video_sink) {
838 sink = play_bin->video_sink;
840 sink = gst_element_factory_make ("autovideosink", "videosink");
842 sink = gst_element_factory_make ("xvimagesink", "videosink");
847 gst_object_ref (sink);
848 g_hash_table_insert (play_bin->cache, (gpointer) "video_sink", sink);
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);
855 conv = gst_element_factory_make ("ffmpegcolorspace", "vconv");
858 gst_bin_add (GST_BIN_CAST (element), conv);
860 scale = gst_element_factory_make ("videoscale", "vscale");
863 gst_bin_add (GST_BIN_CAST (element), scale);
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);
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
874 if (!gst_element_link_pads (scale, "src", sink, NULL))
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);
881 gst_element_set_state (element, GST_STATE_READY);
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);
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.")),
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);
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);
920 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
921 (NULL), ("Failed to configure the video sink."));
922 gst_object_unref (element);
927 /* make an element for playback of video with subtitles embedded.
929 * +--------------------------------------------------+
930 * | tbin +-------------+ |
931 * | +-----+ | textoverlay | +------+ |
932 * | | csp | +--video_sink | | vbin | |
933 * video_sink-sink src+ +-text_sink src---sink | |
934 * | +-----+ | +-------------+ +------+ |
935 * text_sink-------------+ |
936 * +--------------------------------------------------+
938 * If there is no subtitle renderer this function will simply return the
939 * videosink without the text_sink pad.
942 add_text_element (GstPlayBin * play_bin, GstElement * vbin)
944 GstElement *element, *csp, *overlay;
948 overlay = gst_element_factory_make ("textoverlay", "overlay");
950 /* If no overlay return the video bin without subtitle support. */
955 element = gst_bin_new ("textbin");
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);
965 play_bin->textoverlay_element = GST_ELEMENT_CAST (gst_object_ref (overlay));
967 /* we know this will succeed, as the video bin already created one before */
968 csp = gst_element_factory_make ("ffmpegcolorspace", "subtitlecsp");
970 /* Add our elements */
971 gst_bin_add_many (GST_BIN_CAST (element), csp, overlay, vbin, NULL);
974 gst_element_link_pads (csp, "src", overlay, "video_sink");
975 gst_element_link_pads (overlay, "src", vbin, "sink");
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);
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);
986 /* If the vbin provides a subpicture sink pad, ghost it too */
987 pad = gst_element_get_static_pad (vbin, "subpicture_sink");
989 gst_element_add_pad (element, gst_ghost_pad_new ("subpicture_sink", pad));
990 gst_object_unref (pad);
993 /* Set state to READY */
994 gst_element_set_state (element, GST_STATE_READY);
1001 post_missing_element_message (play_bin, "textoverlay");
1002 GST_WARNING_OBJECT (play_bin,
1003 "No overlay (pango) element, subtitles disabled");
1008 /* make an element for rendering DVD subpictures onto output video
1010 * +---------------------------------------------+
1011 * | tbin +--------+ |
1012 * | +-----+ | | +------+ |
1013 * | | csp | src-videosink | | vbin | |
1014 * video_sink-sink src+ | src-sink | |
1015 * | +-----+ +subpicture | +------+ |
1016 * subpicture_pad--------+ +--------+ |
1017 * +---------- ----------------------------------+
1021 add_spu_element (GstPlayBin * play_bin, GstElement * vbin)
1023 GstElement *element, *csp, *overlay;
1026 /* DVD spu overlay */
1027 GST_DEBUG_OBJECT (play_bin, "Attempting to insert DVD SPU element");
1029 overlay = gst_element_factory_make ("dvdspu", "overlay");
1031 /* If no overlay return the video bin without subpicture support. */
1035 /* Create our bin */
1036 element = gst_bin_new ("spubin");
1039 play_bin->spu_element = GST_ELEMENT_CAST (gst_object_ref (overlay));
1041 /* we know this will succeed, as the video bin already created one before */
1042 csp = gst_element_factory_make ("ffmpegcolorspace", "spucsp");
1044 /* Add our elements */
1045 gst_bin_add_many (GST_BIN_CAST (element), csp, overlay, vbin, NULL);
1048 gst_element_link_pads (csp, "src", overlay, "video");
1049 gst_element_link_pads (overlay, "src", vbin, "sink");
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);
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);
1060 /* Set state to READY */
1061 gst_element_set_state (element, GST_STATE_READY);
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");
1076 /* make the element (bin) that contains the elements needed to perform
1079 * +-------------------------------------------------------------+
1081 * | +---------+ +----------+ +---------+ +---------+ |
1082 * | |audioconv| |audioscale| | volume | |audiosink| |
1083 * | +-sink src-sink src-sink src-sink | |
1084 * | | +---------+ +----------+ +---------+ +---------+ |
1086 * +-------------------------------------------------------------+
1089 gen_audio_element (GstPlayBin * play_bin)
1092 GstElement *element;
1099 element = g_hash_table_lookup (play_bin->cache, "abin");
1100 if (element != NULL)
1103 if (play_bin->audio_sink) {
1104 sink = play_bin->audio_sink;
1106 sink = gst_element_factory_make ("autoaudiosink", "audiosink");
1108 sink = gst_element_factory_make ("alsasink", "audiosink");
1113 play_bin->audio_sink = GST_ELEMENT_CAST (gst_object_ref (sink));
1116 gst_object_ref (sink);
1117 g_hash_table_insert (play_bin->cache, (gpointer) "audio_sink", sink);
1119 element = gst_bin_new ("abin");
1120 gst_bin_add (GST_BIN_CAST (element), sink);
1122 conv = gst_element_factory_make ("audioconvert", "aconv");
1124 goto no_audioconvert;
1125 gst_bin_add (GST_BIN_CAST (element), conv);
1127 scale = gst_element_factory_make ("audioresample", "aresample");
1129 goto no_audioresample;
1130 gst_bin_add (GST_BIN_CAST (element), scale);
1132 volume = gst_element_factory_make ("volume", "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);
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);
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);
1149 gst_element_set_state (element, GST_STATE_READY);
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);
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));
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);
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);
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);
1195 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
1196 (NULL), ("Failed to configure the audio sink."));
1197 gst_object_unref (element);
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.
1209 * +-----------------------------------------------------------------------+
1211 * | +------+ +--------+ +----------------+ |
1212 * | | tee | | aqueue | | abin ... | |
1213 * | +-sink src-sink src-sink | |
1214 * | | | | +--------+ +----------------+ |
1216 * | | | | +------+ +------------+ +------+ +-----------+ |
1217 * | | | | |vqueue| | audioconv | | vis | | vbin ... | |
1218 * | | | src-sink src-sink + samp src-sink src-sink | |
1219 * | | | | +------+ +------------+ +------+ +-----------+ |
1223 * +-----------------------------------------------------------------------+
1226 gen_vis_element (GstPlayBin * play_bin)
1229 GstElement *element;
1237 GstElement *vqueue, *aqueue;
1240 /* errors are already posted when these fail. */
1241 asink = gen_audio_element (play_bin);
1244 vsink = gen_video_element (play_bin);
1246 gst_object_unref (asink);
1250 element = gst_bin_new ("visbin");
1251 tee = gst_element_factory_make ("tee", "tee");
1253 vqueue = gst_element_factory_make ("queue", "vqueue");
1254 aqueue = gst_element_factory_make ("queue", "aqueue");
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);
1262 conv = gst_element_factory_make ("audioconvert", "aconv");
1264 goto no_audioconvert;
1265 gst_bin_add (GST_BIN_CAST (element), conv);
1267 resamp = gst_element_factory_make ("audioresample", "aresamp");
1269 goto no_audioresample;
1270 gst_bin_add (GST_BIN_CAST (element), resamp);
1272 conv2 = gst_element_factory_make ("audioconvert", "aconv2");
1274 goto no_audioconvert;
1275 gst_bin_add (GST_BIN_CAST (element), conv2);
1277 if (play_bin->visualisation) {
1278 gst_object_ref (play_bin->visualisation);
1279 vis = play_bin->visualisation;
1281 vis = gst_element_factory_make ("goom", "vis");
1285 gst_bin_add (GST_BIN_CAST (element), vis);
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");
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");
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);
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);
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);
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);
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."),
1339 gst_object_unref (element);
1344 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
1345 (NULL), ("Failed to configure the visualisation element."));
1346 gst_object_unref (element);
1351 /* get rid of all installed sinks */
1353 remove_sinks (GstPlayBin * play_bin)
1357 GstElement *element;
1360 if (play_bin->cache == NULL)
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
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);
1376 pad = gst_element_get_static_pad (element, "sink");
1378 peer = gst_pad_get_peer (pad);
1380 gst_pad_unlink (peer, pad);
1381 gst_object_unref (peer);
1383 gst_object_unref (pad);
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);
1395 pad = gst_element_get_static_pad (element, "sink");
1397 peer = gst_pad_get_peer (pad);
1399 gst_pad_unlink (peer, pad);
1400 gst_object_unref (peer);
1402 gst_object_unref (pad);
1406 for (sinks = play_bin->sinks; sinks; sinks = g_list_next (sinks)) {
1407 GstElement *element = GST_ELEMENT_CAST (sinks->data);
1411 pad = gst_element_get_static_pad (element, "sink");
1413 GST_LOG ("removing sink %p", element);
1415 peer = gst_pad_get_peer (pad);
1417 gst_pad_unlink (peer, pad);
1418 gst_object_unref (peer);
1420 gst_object_unref (pad);
1422 gst_element_set_state (element, GST_STATE_NULL);
1423 gst_bin_remove (GST_BIN_CAST (play_bin), element);
1425 g_list_free (play_bin->sinks);
1426 play_bin->sinks = NULL;
1428 if (play_bin->visualisation) {
1429 GstElement *vis_bin;
1432 GST_ELEMENT_CAST (gst_element_get_parent (play_bin->visualisation));
1434 gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
1437 gst_bin_remove (GST_BIN_CAST (vis_bin), play_bin->visualisation);
1438 gst_object_unref (vis_bin);
1442 if (play_bin->frame) {
1443 gst_buffer_unref (play_bin->frame);
1444 play_bin->frame = NULL;
1447 if (play_bin->textoverlay_element) {
1448 gst_object_unref (play_bin->textoverlay_element);
1449 play_bin->textoverlay_element = NULL;
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.
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.
1462 * This function takes ownership of @sink.*
1465 add_sink (GstPlayBin * play_bin, GstElement * sink, GstPad * srcpad,
1466 GstPad * subtitle_pad)
1469 GstPadLinkReturn linkres;
1471 GstStateChangeReturn stateret;
1474 g_return_val_if_fail (sink != NULL, FALSE);
1476 state = GST_STATE_PAUSED;
1478 /* this is only for debugging */
1479 parent = gst_pad_get_parent_element (srcpad);
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);
1486 gst_bin_add (GST_BIN_CAST (play_bin), sink);
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)
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);
1499 /* try to link the pad of the sink to the stream */
1500 if (GST_PAD_LINK_FAILED (linkres))
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);
1509 /* try to link the subtitle pad of the sink to the stream, this is not
1511 if (GST_PAD_LINK_FAILED (linkres))
1512 goto subtitle_failed;
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);
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");
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);
1541 gst_caps_unref (caps);
1543 gst_element_set_state (sink, GST_STATE_NULL);
1544 gst_bin_remove (GST_BIN_CAST (play_bin), sink);
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);
1563 dummy_blocked_cb (GstPad * pad, gboolean blocked, gpointer user_data)
1568 setup_sinks (GstPlayBaseBin * play_base_bin, GstPlayBaseGroup * group)
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;
1577 gboolean res = TRUE;
1579 /* get rid of existing sinks */
1580 if (play_bin->sinks) {
1581 remove_sinks (play_bin);
1583 GST_DEBUG_OBJECT (play_base_bin, "setupsinks");
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);
1589 if (have_video && group->type[GST_STREAM_TYPE_TEXT - 1].npads > 0) {
1591 } else if (!have_video &&
1592 group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0 &&
1593 play_bin->visualisation != NULL) {
1597 /* now actually connect everything */
1600 if (group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0) {
1602 sink = gen_vis_element (play_bin);
1604 sink = gen_audio_element (play_bin);
1610 gst_element_get_static_pad (group->type[GST_STREAM_TYPE_AUDIO -
1612 res = add_sink (play_bin, sink, pad, NULL);
1613 gst_object_unref (pad);
1618 /* Create the video rendering bin, error is posted when this fails. */
1619 sink = gen_video_element (play_bin);
1623 sink = add_spu_element (play_bin, sink);
1627 GstObject *parent = NULL, *grandparent = NULL;
1628 GstPad *ghost = NULL;
1630 /* Add the subtitle overlay element into the video sink */
1631 sink = add_text_element (play_bin, sink);
1633 /* Link the incoming subtitle stream into the output bin */
1635 gst_element_get_static_pad (group->type[GST_STREAM_TYPE_TEXT -
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));
1642 GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no parent !");
1643 gst_object_unref (textsrcpad);
1648 grandparent = gst_object_get_parent (parent);
1650 GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no grandparent !");
1651 gst_object_unref (parent);
1652 gst_object_unref (textsrcpad);
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);
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 "
1671 gst_object_unref (parent);
1672 gst_object_unref (grandparent);
1673 gst_object_unref (textsrcpad);
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);
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);
1690 GST_DEBUG_OBJECT (textsrcpad, "this subtitle pad is from the demuxer "
1691 "no changes to hierarchy needed");
1694 gst_object_unref (parent);
1695 gst_object_unref (grandparent);
1701 gst_element_get_static_pad (group->type[GST_STREAM_TYPE_VIDEO -
1703 res = add_sink (play_bin, sink, pad, textsrcpad);
1704 gst_object_unref (pad);
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);
1712 /* If we have a DVD subpicture stream, link it to the SPU now */
1715 GstPad *spu_sink_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");
1728 gst_pad_set_blocked_async (subpic_pad, FALSE, dummy_blocked_cb, NULL);
1731 gst_object_unref (subpic_pad);
1733 gst_object_unref (spu_sink_pad);
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;
1749 playbin_set_subtitles_visible (GstPlayBaseBin * play_base_bin, gboolean visible)
1751 GstPlayBin *playbin = GST_PLAY_BIN (play_base_bin);
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);
1763 playbin_set_audio_mute (GstPlayBaseBin * play_base_bin, gboolean mute)
1765 GstPlayBin *playbin = GST_PLAY_BIN (play_base_bin);
1767 if (playbin->volume_element) {
1768 g_object_set (G_OBJECT (playbin->volume_element), "mute", mute, NULL);
1772 /* Send an event to our sinks until one of them works; don't then send to the
1773 * remaining sinks (unlike GstBin)
1776 gst_play_bin_send_event_to_sink (GstPlayBin * play_bin, GstEvent * event)
1778 GList *sinks = play_bin->sinks;
1779 gboolean res = TRUE;
1782 GstElement *sink = GST_ELEMENT_CAST (sinks->data);
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);
1790 GST_DEBUG_OBJECT (play_bin,
1791 "Event failed when sent to sink %" GST_PTR_FORMAT, sink);
1793 sinks = g_list_next (sinks);
1796 gst_event_unref (event);
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. */
1805 gst_play_bin_send_event (GstElement * element, GstEvent * event)
1807 gboolean res = FALSE;
1808 GstEventType event_type = GST_EVENT_TYPE (event);
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);
1816 res = parent_class->send_event (element, event);
1824 value_list_append_structure_list (GValue * list_val, GstStructure ** first,
1825 GList * structure_list)
1829 for (l = structure_list; l != NULL; l = l->next) {
1830 GValue val = { 0, };
1833 *first = gst_structure_copy ((GstStructure *) l->data);
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);
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 */
1846 gst_play_bin_handle_redirect_message (GstPlayBin * playbin, GstMessage * msg)
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, };
1854 GstPlayBaseBin *playbasebin = GST_PLAY_BASE_BIN (playbin);
1855 guint connection_speed = playbasebin->connection_speed;
1857 GST_DEBUG_OBJECT (playbin, "redirect message: %" GST_PTR_FORMAT, msg);
1858 GST_DEBUG_OBJECT (playbin, "connection speed: %u", connection_speed);
1860 if (connection_speed == 0 || msg->structure == NULL)
1863 locations_list = gst_structure_get_value (msg->structure, "locations");
1864 if (locations_list == NULL)
1867 size = gst_value_list_get_size (locations_list);
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;
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);
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);
1901 g_list_free (l_good);
1902 g_list_free (l_neutral);
1903 g_list_free (l_bad);
1905 new_msg = gst_message_new_element (msg->src, new_structure);
1906 gst_message_unref (msg);
1908 GST_DEBUG_OBJECT (playbin, "new redirect message: %" GST_PTR_FORMAT, new_msg);
1913 gst_play_bin_handle_message (GstBin * bin, GstMessage * msg)
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);
1920 GST_BIN_CLASS (parent_class)->handle_message (bin, msg);
1923 static GstStateChangeReturn
1924 gst_play_bin_change_state (GstElement * element, GstStateChange transition)
1926 GstStateChangeReturn ret;
1927 GstPlayBin *play_bin;
1929 play_bin = GST_PLAY_BIN (element);
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);
1945 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1946 if (ret == GST_STATE_CHANGE_FAILURE)
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);
1955 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1956 /* FIXME Release audio device when we implement that */
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;
1977 gst_play_bin_plugin_init (GstPlugin * plugin)
1979 GST_DEBUG_CATEGORY_INIT (gst_play_bin_debug, "playbin", 0, "play bin");
1981 return gst_element_register (plugin, "playbin", GST_RANK_NONE,