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
25 * Playbin provides a stand-alone everything-in-one abstraction for an
26 * audio and/or video player.
29 * It can handle both audio and video files and features
32 * automatic file type recognition and based on that automatic
33 * selection and usage of the right audio/video/subtitle demuxers/decoders
36 * visualisations for audio files
39 * subtitle support for video files
42 * stream selection between different audio/subtitles streams
45 * meta info (tag) extraction
48 * easy access to the last video frame
51 * buffering when playing streams over a network
58 * <title>Usage</title>
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
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
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.
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.
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
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.
101 * <title>Advanced Usage: specifying the audio and video sink</title>
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.
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.
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.
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.
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!).
137 * <title>Retrieving Tags and Other Meta Data</title>
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).
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:
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>
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).
164 * <title>Buffering</title>
166 * Playbin handles buffering automatically for the most part, but applications
167 * need to handle parts of the buffering process as well. Whenever playbin is
168 * buffering, it will post BUFFERING messages on the bus with a percentage
169 * value that shows the progress of the buffering process. Applications need
170 * to set playbin to PLAYING or PAUSED state in response to these messages.
171 * They may also want to convey the buffering progress to the user in some
172 * way. Here is how to extract the percentage information from the message
173 * (requires GStreamer >= 0.10.11):
177 * switch (GST_MESSAGE_TYPE (msg)) {
178 * case GST_MESSAGE_BUFFERING: {
180 * gst_message_parse_buffering (msg, &percent);
181 * g_print ("Buffering (%%u percent done)", percent);
187 * Note that applications should keep/set the pipeline in the PAUSED state when
188 * a BUFFERING message is received with a buffer percent value < 100 and set
189 * the pipeline back to PLAYING state when a BUFFERING message with a value
190 * of 100 percent is received (if PLAYING is the desired state, that is).
192 * <title>Embedding the video window in your application</title>
194 * By default, playbin (or rather the video sinks used) will create their own
195 * window. Applications will usually want to force output to a window of their
196 * own, however. This can be done using the GstXOverlay interface, which most
197 * video sinks implement. See the documentation there for more details.
199 * <title>Specifying which CD/DVD device to use</title>
201 * The device to use for CDs/DVDs needs to be set on the source element
202 * playbin creates before it is opened. The only way to do this at the moment
203 * is to connect to playbin's "notify::source" signal, which will be emitted
204 * by playbin when it has created the source element for a particular URI.
205 * In the signal callback you can check if the source element has a "device"
206 * property and set it appropriately. In future ways might be added to specify
207 * the device as part of the URI, but at the time of writing this is not
210 * <title>Examples</title>
212 * Here is a simple pipeline to play back a video or audio file:
214 * gst-launch -v playbin uri=file:///path/to/somefile.avi
216 * This will play back the given AVI video file, given that the video and
217 * audio decoders required to decode the content are installed. Since no
218 * special audio sink or video sink is supplied (not possible via gst-launch),
219 * playbin will try to find a suitable audio and video sink automatically
220 * using the autoaudiosink and autovideosink elements.
223 * Here is a another pipeline to play track 4 of an audio CD:
225 * gst-launch -v playbin uri=cdda://4
227 * This will play back track 4 on an audio CD in your disc drive (assuming
228 * the drive is detected automatically by the plugin).
231 * Here is a another pipeline to play title 1 of a DVD:
233 * gst-launch -v playbin uri=dvd://1
235 * This will play back title 1 of a DVD in your disc drive (assuming
236 * the drive is detected automatically by the plugin).
248 #include <gst/gst-i18n-plugin.h>
249 #include <gst/pbutils/pbutils.h>
251 #include "gstplaybasebin.h"
253 GST_DEBUG_CATEGORY_STATIC (gst_play_bin_debug);
254 #define GST_CAT_DEFAULT gst_play_bin_debug
256 #define GST_TYPE_PLAY_BIN (gst_play_bin_get_type())
257 #define GST_PLAY_BIN(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PLAY_BIN,GstPlayBin))
258 #define GST_PLAY_BIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PLAY_BIN,GstPlayBinClass))
259 #define GST_IS_PLAY_BIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PLAY_BIN))
260 #define GST_IS_PLAY_BIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PLAY_BIN))
262 #define VOLUME_MAX_DOUBLE 10.0
264 typedef struct _GstPlayBin GstPlayBin;
265 typedef struct _GstPlayBinClass GstPlayBinClass;
269 GstPlayBaseBin parent;
271 /* the configurable elements */
272 GstElement *fakesink;
273 GstElement *audio_sink;
274 GstElement *video_sink;
275 GstElement *visualisation;
276 GstElement *pending_visualisation;
277 GstElement *volume_element;
278 GstElement *textoverlay_element;
281 /* these are the currently active sinks */
284 /* the last captured frame for snapshots */
287 /* our cache for the sinks */
290 /* font description */
293 /* indication if the pipeline is live */
297 struct _GstPlayBinClass
299 GstPlayBaseBinClass parent_class;
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);
324 static gboolean setup_sinks (GstPlayBaseBin * play_base_bin,
325 GstPlayBaseGroup * group);
326 static void remove_sinks (GstPlayBin * play_bin);
327 static void playbin_set_subtitles_visible (GstPlayBaseBin * play_base_bin,
329 static void playbin_set_audio_mute (GstPlayBaseBin * play_base_bin,
332 static void gst_play_bin_set_property (GObject * object, guint prop_id,
333 const GValue * value, GParamSpec * spec);
334 static void gst_play_bin_get_property (GObject * object, guint prop_id,
335 GValue * value, GParamSpec * spec);
337 static gboolean gst_play_bin_send_event (GstElement * element,
339 static GstStateChangeReturn gst_play_bin_change_state (GstElement * element,
340 GstStateChange transition);
342 static void gst_play_bin_handle_message (GstBin * bin, GstMessage * message);
344 static GstElementClass *parent_class;
346 //static guint gst_play_bin_signals[LAST_SIGNAL] = { 0 };
348 static const GstElementDetails gst_play_bin_details =
349 GST_ELEMENT_DETAILS ("Player Bin",
350 "Generic/Bin/Player",
351 "Autoplug and play media from an uri",
352 "Wim Taymans <wim.taymans@gmail.com>");
355 gst_play_bin_get_type (void)
357 static GType gst_play_bin_type = 0;
359 if (!gst_play_bin_type) {
360 static const GTypeInfo gst_play_bin_info = {
361 sizeof (GstPlayBinClass),
364 (GClassInitFunc) gst_play_bin_class_init,
369 (GInstanceInitFunc) gst_play_bin_init,
373 gst_play_bin_type = g_type_register_static (GST_TYPE_PLAY_BASE_BIN,
374 "GstPlayBin", &gst_play_bin_info, 0);
377 return gst_play_bin_type;
381 gst_play_bin_class_init (GstPlayBinClass * klass)
383 GObjectClass *gobject_klass;
384 GstElementClass *gstelement_klass;
385 GstBinClass *gstbin_klass;
386 GstPlayBaseBinClass *playbasebin_klass;
388 gobject_klass = (GObjectClass *) klass;
389 gstelement_klass = (GstElementClass *) klass;
390 gstbin_klass = (GstBinClass *) klass;
391 playbasebin_klass = (GstPlayBaseBinClass *) klass;
393 parent_class = g_type_class_peek_parent (klass);
395 gobject_klass->set_property = gst_play_bin_set_property;
396 gobject_klass->get_property = gst_play_bin_get_property;
398 g_object_class_install_property (gobject_klass, ARG_VIDEO_SINK,
399 g_param_spec_object ("video-sink", "Video Sink",
400 "the video output element to use (NULL = default sink)",
401 GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
402 g_object_class_install_property (gobject_klass, ARG_AUDIO_SINK,
403 g_param_spec_object ("audio-sink", "Audio Sink",
404 "the audio output element to use (NULL = default sink)",
405 GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
406 g_object_class_install_property (gobject_klass, ARG_VIS_PLUGIN,
407 g_param_spec_object ("vis-plugin", "Vis plugin",
408 "the visualization element to use (NULL = none)",
409 GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
410 g_object_class_install_property (gobject_klass, ARG_VOLUME,
411 g_param_spec_double ("volume", "volume", "volume",
412 0.0, VOLUME_MAX_DOUBLE, 1.0,
413 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
414 g_object_class_install_property (gobject_klass, ARG_FRAME,
415 gst_param_spec_mini_object ("frame", "Frame",
416 "The last frame (NULL = no video available)", GST_TYPE_BUFFER,
417 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
418 g_object_class_install_property (gobject_klass, ARG_FONT_DESC,
419 g_param_spec_string ("subtitle-font-desc", "Subtitle font description",
420 "Pango font description of font " "to be used for subtitle rendering",
421 NULL, G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS));
423 gobject_klass->dispose = GST_DEBUG_FUNCPTR (gst_play_bin_dispose);
425 gst_element_class_set_details (gstelement_klass, &gst_play_bin_details);
427 gstelement_klass->change_state =
428 GST_DEBUG_FUNCPTR (gst_play_bin_change_state);
429 gstelement_klass->send_event = GST_DEBUG_FUNCPTR (gst_play_bin_send_event);
431 gstbin_klass->handle_message =
432 GST_DEBUG_FUNCPTR (gst_play_bin_handle_message);
434 playbasebin_klass->setup_output_pads = setup_sinks;
435 playbasebin_klass->set_subtitles_visible = playbin_set_subtitles_visible;
436 playbasebin_klass->set_audio_mute = playbin_set_audio_mute;
440 gst_play_bin_init (GstPlayBin * play_bin)
442 play_bin->video_sink = NULL;
443 play_bin->audio_sink = NULL;
444 play_bin->visualisation = NULL;
445 play_bin->pending_visualisation = NULL;
446 play_bin->volume_element = NULL;
447 play_bin->textoverlay_element = NULL;
448 play_bin->volume = 1.0;
449 play_bin->sinks = NULL;
450 play_bin->frame = NULL;
451 play_bin->font_desc = NULL;
452 play_bin->cache = g_hash_table_new_full (g_str_hash, g_str_equal,
453 NULL, (GDestroyNotify) gst_object_unref);
457 gst_play_bin_dispose (GObject * object)
459 GstPlayBin *play_bin;
461 play_bin = GST_PLAY_BIN (object);
463 if (play_bin->cache != NULL) {
464 remove_sinks (play_bin);
465 g_hash_table_destroy (play_bin->cache);
466 play_bin->cache = NULL;
469 if (play_bin->audio_sink != NULL) {
470 gst_element_set_state (play_bin->audio_sink, GST_STATE_NULL);
471 gst_object_unref (play_bin->audio_sink);
472 play_bin->audio_sink = NULL;
474 if (play_bin->video_sink != NULL) {
475 gst_element_set_state (play_bin->video_sink, GST_STATE_NULL);
476 gst_object_unref (play_bin->video_sink);
477 play_bin->video_sink = NULL;
479 if (play_bin->visualisation != NULL) {
480 gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
481 gst_object_unref (play_bin->visualisation);
482 play_bin->visualisation = NULL;
484 if (play_bin->pending_visualisation != NULL) {
485 gst_element_set_state (play_bin->pending_visualisation, GST_STATE_NULL);
486 gst_object_unref (play_bin->pending_visualisation);
487 play_bin->pending_visualisation = NULL;
489 if (play_bin->textoverlay_element != NULL) {
490 gst_object_unref (play_bin->textoverlay_element);
491 play_bin->textoverlay_element = NULL;
493 g_free (play_bin->font_desc);
494 play_bin->font_desc = NULL;
496 G_OBJECT_CLASS (parent_class)->dispose (object);
500 gst_play_bin_vis_unblocked (GstPad * tee_pad, gboolean blocked,
503 GstPlayBin *play_bin = GST_PLAY_BIN (user_data);
505 if (play_bin->pending_visualisation)
506 gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
511 gst_play_bin_vis_blocked (GstPad * tee_pad, gboolean blocked,
514 GstPlayBin *play_bin = GST_PLAY_BIN (user_data);
515 GstBin *vis_bin = NULL;
516 GstPad *vis_sink_pad = NULL, *vis_src_pad = NULL, *vqueue_pad = NULL;
518 GstElement *pending_visualisation;
520 GST_OBJECT_LOCK (play_bin);
521 pending_visualisation = play_bin->pending_visualisation;
522 play_bin->pending_visualisation = NULL;
523 GST_OBJECT_UNLOCK (play_bin);
525 /* We want to disable visualisation */
526 if (!GST_IS_ELEMENT (pending_visualisation)) {
527 /* Set visualisation element to READY */
528 gst_element_set_state (play_bin->visualisation, GST_STATE_READY);
533 GST_BIN_CAST (gst_object_get_parent (GST_OBJECT_CAST (play_bin->
536 if (!GST_IS_BIN (vis_bin) || !GST_IS_PAD (tee_pad)) {
540 vis_src_pad = gst_element_get_pad (play_bin->visualisation, "src");
541 vis_sink_pad = gst_pad_get_peer (tee_pad);
543 /* Can be fakesink */
544 if (GST_IS_PAD (vis_src_pad)) {
545 vqueue_pad = gst_pad_get_peer (vis_src_pad);
548 if (!GST_IS_PAD (vis_sink_pad)) {
552 /* Check the bin's state */
553 GST_OBJECT_LOCK (vis_bin);
554 bin_state = GST_STATE (vis_bin);
555 GST_OBJECT_UNLOCK (vis_bin);
558 gst_pad_unlink (tee_pad, vis_sink_pad);
559 gst_object_unref (vis_sink_pad);
562 if (GST_IS_PAD (vqueue_pad)) {
563 gst_pad_unlink (vis_src_pad, vqueue_pad);
564 gst_object_unref (vis_src_pad);
568 /* Remove from vis_bin */
569 gst_bin_remove (vis_bin, play_bin->visualisation);
570 /* Set state to NULL */
571 gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
572 /* And loose our ref */
573 gst_object_unref (play_bin->visualisation);
575 if (pending_visualisation) {
576 /* Ref this new visualisation element before adding to the bin */
577 gst_object_ref (pending_visualisation);
578 /* Add the new one */
579 gst_bin_add (vis_bin, pending_visualisation);
580 /* Synchronizing state */
581 gst_element_set_state (pending_visualisation, bin_state);
583 vis_sink_pad = gst_element_get_pad (pending_visualisation, "sink");
584 vis_src_pad = gst_element_get_pad (pending_visualisation, "src");
586 if (!GST_IS_PAD (vis_sink_pad) || !GST_IS_PAD (vis_src_pad)) {
591 gst_pad_link (tee_pad, vis_sink_pad);
592 gst_pad_link (vis_src_pad, vqueue_pad);
596 gst_object_unref (play_bin->visualisation);
597 play_bin->visualisation = pending_visualisation;
601 gst_object_unref (vis_sink_pad);
604 gst_object_unref (vis_src_pad);
607 gst_object_unref (vqueue_pad);
610 gst_object_unref (vis_bin);
613 /* Unblock the pad */
614 gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
619 gst_play_bin_set_property (GObject * object, guint prop_id,
620 const GValue * value, GParamSpec * pspec)
622 GstPlayBin *play_bin;
624 play_bin = GST_PLAY_BIN (object);
628 if (play_bin->video_sink != NULL) {
629 gst_object_unref (play_bin->video_sink);
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));
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");
642 if (play_bin->audio_sink != NULL) {
643 gst_object_unref (play_bin->audio_sink);
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));
650 g_hash_table_remove (play_bin->cache, "abin");
654 GstElement *pending_visualisation =
655 GST_ELEMENT_CAST (g_value_get_object (value));
658 if (pending_visualisation) {
659 gst_object_ref (pending_visualisation);
660 gst_object_sink (pending_visualisation);
663 /* Do we already have a visualisation change pending ? */
664 GST_OBJECT_LOCK (play_bin);
665 if (play_bin->pending_visualisation) {
666 gst_object_unref (play_bin->pending_visualisation);
667 play_bin->pending_visualisation = pending_visualisation;
668 GST_OBJECT_UNLOCK (play_bin);
670 GST_OBJECT_UNLOCK (play_bin);
671 /* Was there a visualisation already set ? */
672 if (play_bin->visualisation != NULL) {
673 GstBin *vis_bin = NULL;
676 GST_BIN_CAST (gst_object_get_parent (GST_OBJECT_CAST (play_bin->
679 /* Check if the visualisation is already in a bin */
680 if (GST_IS_BIN (vis_bin)) {
681 GstPad *vis_sink_pad = NULL, *tee_pad = NULL;
683 /* Now get tee pad and block it async */
684 vis_sink_pad = gst_element_get_pad (play_bin->visualisation,
686 if (!GST_IS_PAD (vis_sink_pad)) {
689 tee_pad = gst_pad_get_peer (vis_sink_pad);
690 if (!GST_IS_PAD (tee_pad)) {
694 play_bin->pending_visualisation = pending_visualisation;
695 /* Block with callback */
696 gst_pad_set_blocked_async (tee_pad, TRUE, gst_play_bin_vis_blocked,
700 gst_object_unref (vis_sink_pad);
703 gst_object_unref (tee_pad);
705 gst_object_unref (vis_bin);
707 play_bin->visualisation = pending_visualisation;
710 play_bin->visualisation = pending_visualisation;
716 play_bin->volume = g_value_get_double (value);
717 if (play_bin->volume_element) {
718 g_object_set (G_OBJECT (play_bin->volume_element), "volume",
719 play_bin->volume, NULL);
723 g_free (play_bin->font_desc);
724 play_bin->font_desc = g_strdup (g_value_get_string (value));
725 if (play_bin->textoverlay_element) {
726 g_object_set (G_OBJECT (play_bin->textoverlay_element),
727 "font-desc", g_value_get_string (value), NULL);
731 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
737 gst_play_bin_get_property (GObject * object, guint prop_id, GValue * value,
740 GstPlayBin *play_bin;
742 play_bin = GST_PLAY_BIN (object);
746 g_value_set_object (value, play_bin->video_sink);
749 g_value_set_object (value, play_bin->audio_sink);
752 g_value_set_object (value, play_bin->visualisation);
755 g_value_set_double (value, play_bin->volume);
758 GstBuffer *cur_frame = NULL;
760 gst_buffer_replace (&cur_frame, play_bin->frame);
761 gst_value_take_buffer (value, cur_frame);
765 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
770 /* signal fired when the identity has received a new buffer. This is used for
771 * making screenshots.
774 handoff (GstElement * identity, GstBuffer * frame, gpointer data)
776 GstPlayBin *play_bin = GST_PLAY_BIN (data);
778 /* applications need to know the buffer caps,
779 * make sure they are always set on the frame */
780 if (GST_BUFFER_CAPS (frame) == NULL) {
783 if ((pad = gst_element_get_pad (identity, "sink"))) {
784 gst_buffer_set_caps (frame, GST_PAD_CAPS (pad));
785 gst_object_unref (pad);
789 gst_buffer_replace (&play_bin->frame, frame);
793 post_missing_element_message (GstPlayBin * playbin, const gchar * name)
797 msg = gst_missing_element_message_new (GST_ELEMENT_CAST (playbin), name);
798 gst_element_post_message (GST_ELEMENT_CAST (playbin), msg);
801 /* make the element (bin) that contains the elements needed to perform
802 * video display. We connect a handoff signal to identity so that we
803 * can grab snapshots. Identity's sinkpad is ghosted to vbin.
805 * +-------------------------------------------------------------+
807 * | +--------+ +----------+ +----------+ +---------+ |
808 * | |identity| |colorspace| |videoscale| |videosink| |
809 * | +-sink src-sink src-sink src-sink | |
810 * | | +---+----+ +----------+ +----------+ +---------+ |
812 * +----------|--------------------------------------------------+
816 gen_video_element (GstPlayBin * play_bin)
823 GstElement *identity;
826 /* first see if we have it in the cache */
827 element = g_hash_table_lookup (play_bin->cache, "vbin");
828 if (element != NULL) {
832 if (play_bin->video_sink) {
833 sink = play_bin->video_sink;
835 sink = gst_element_factory_make ("autovideosink", "videosink");
837 sink = gst_element_factory_make ("xvimagesink", "videosink");
842 gst_object_ref (sink);
843 g_hash_table_insert (play_bin->cache, "video_sink", sink);
845 /* create a bin to hold objects, as we create them we add them to this bin so
846 * that when something goes wrong we only need to unref the bin */
847 element = gst_bin_new ("vbin");
848 gst_bin_add (GST_BIN_CAST (element), sink);
850 conv = gst_element_factory_make ("ffmpegcolorspace", "vconv");
853 gst_bin_add (GST_BIN_CAST (element), conv);
855 scale = gst_element_factory_make ("videoscale", "vscale");
858 gst_bin_add (GST_BIN_CAST (element), scale);
860 identity = gst_element_factory_make ("identity", "id");
861 g_object_set (identity, "silent", TRUE, NULL);
862 g_signal_connect (identity, "handoff", G_CALLBACK (handoff), play_bin);
863 gst_bin_add (GST_BIN_CAST (element), identity);
865 gst_element_link_pads (identity, "src", conv, "sink");
866 gst_element_link_pads (conv, "src", scale, "sink");
867 /* be more careful with the pad from the custom sink element, it might not
869 if (!gst_element_link_pads (scale, "src", sink, NULL))
872 pad = gst_element_get_pad (identity, "sink");
873 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
874 gst_object_unref (pad);
876 gst_element_set_state (element, GST_STATE_READY);
878 /* since we're gonna add it to a bin but don't want to lose it,
879 * we keep a reference. */
880 gst_object_ref (element);
881 g_hash_table_insert (play_bin->cache, "vbin", element);
888 post_missing_element_message (play_bin, "autovideosink");
889 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
890 (_("Both autovideosink and xvimagesink elements are missing.")),
896 post_missing_element_message (play_bin, "ffmpegcolorspace");
897 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
898 (_("Missing element '%s' - check your GStreamer installation."),
899 "ffmpegcolorspace"), (NULL));
900 gst_object_unref (element);
906 post_missing_element_message (play_bin, "videoscale");
907 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
908 (_("Missing element '%s' - check your GStreamer installation."),
909 "videoscale"), ("possibly a liboil version mismatch?"));
910 gst_object_unref (element);
915 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
916 (NULL), ("Failed to configure the video sink."));
917 gst_object_unref (element);
922 /* make an element for playback of video with subtitles embedded.
924 * +--------------------------------------------------+
925 * | tbin +-------------+ |
926 * | +-----+ | textoverlay | +------+ |
927 * | | csp | +--video_sink | | vbin | |
928 * video_sink-sink src+ +-text_sink src-sink | |
929 * | +-----+ | +-------------+ +------+ |
930 * text_sink-------------+ |
931 * +--------------------------------------------------+
933 * If there is no subtitle renderer this function will simply return the
934 * videosink without the text_sink pad.
937 gen_text_element (GstPlayBin * play_bin)
939 GstElement *element, *csp, *overlay, *vbin;
942 /* Create the video rendering bin, error is posted when this fails. */
943 vbin = gen_video_element (play_bin);
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_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_pad (csp, "sink");
983 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
984 gst_object_unref (pad);
986 /* Set state to READY */
987 gst_element_set_state (element, GST_STATE_READY);
994 post_missing_element_message (play_bin, "textoverlay");
995 GST_WARNING_OBJECT (play_bin,
996 "No overlay (pango) element, subtitles disabled");
1001 /* make the element (bin) that contains the elements needed to perform
1004 * +-------------------------------------------------------------+
1006 * | +---------+ +----------+ +---------+ +---------+ |
1007 * | |audioconv| |audioscale| | volume | |audiosink| |
1008 * | +-sink src-sink src-sink src-sink | |
1009 * | | +---------+ +----------+ +---------+ +---------+ |
1011 * +-------------------------------------------------------------+
1014 gen_audio_element (GstPlayBin * play_bin)
1017 GstElement *element;
1024 element = g_hash_table_lookup (play_bin->cache, "abin");
1025 if (element != NULL)
1028 if (play_bin->audio_sink) {
1029 sink = play_bin->audio_sink;
1031 sink = gst_element_factory_make ("autoaudiosink", "audiosink");
1033 sink = gst_element_factory_make ("alsasink", "audiosink");
1038 play_bin->audio_sink = GST_ELEMENT_CAST (gst_object_ref (sink));
1041 gst_object_ref (sink);
1042 g_hash_table_insert (play_bin->cache, "audio_sink", sink);
1044 element = gst_bin_new ("abin");
1045 gst_bin_add (GST_BIN_CAST (element), sink);
1047 conv = gst_element_factory_make ("audioconvert", "aconv");
1049 goto no_audioconvert;
1050 gst_bin_add (GST_BIN_CAST (element), conv);
1052 scale = gst_element_factory_make ("audioresample", "aresample");
1054 goto no_audioresample;
1055 gst_bin_add (GST_BIN_CAST (element), scale);
1057 volume = gst_element_factory_make ("volume", "volume");
1060 g_object_set (G_OBJECT (volume), "volume", play_bin->volume, NULL);
1061 play_bin->volume_element = volume;
1062 gst_bin_add (GST_BIN_CAST (element), volume);
1064 res = gst_element_link_pads (conv, "src", scale, "sink");
1065 res &= gst_element_link_pads (scale, "src", volume, "sink");
1066 res &= gst_element_link_pads (volume, "src", sink, NULL);
1070 pad = gst_element_get_pad (conv, "sink");
1071 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1072 gst_object_unref (pad);
1074 gst_element_set_state (element, GST_STATE_READY);
1076 /* since we're gonna add it to a bin but don't want to lose it,
1077 * we keep a reference. */
1078 gst_object_ref (element);
1079 g_hash_table_insert (play_bin->cache, "abin", element);
1086 post_missing_element_message (play_bin, "autoaudiosink");
1087 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1088 (_("Both autoaudiosink and alsasink elements are missing.")), (NULL));
1093 post_missing_element_message (play_bin, "audioconvert");
1094 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1095 (_("Missing element '%s' - check your GStreamer installation."),
1096 "audioconvert"), ("possibly a liboil version mismatch?"));
1097 gst_object_unref (element);
1102 post_missing_element_message (play_bin, "audioresample");
1103 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1104 (_("Missing element '%s' - check your GStreamer installation."),
1105 "audioresample"), ("possibly a liboil version mismatch?"));
1106 gst_object_unref (element);
1111 post_missing_element_message (play_bin, "volume");
1112 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1113 (_("Missing element '%s' - check your GStreamer installation."),
1114 "volume"), ("possibly a liboil version mismatch?"));
1115 gst_object_unref (element);
1120 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
1121 (NULL), ("Failed to configure the audio sink."));
1122 gst_object_unref (element);
1127 /* make the element (bin) that contains the elements needed to perform
1128 * visualisation ouput. The idea is to split the audio using tee, then
1129 * sending the output to the regular audio bin and the other output to
1130 * the vis plugin that transforms it into a video that is rendered with the
1131 * normal video bin. The video and audio bins are run in threads to make sure
1132 * they don't block eachother.
1134 * +-----------------------------------------------------------------------+
1136 * | +------+ +--------+ +----------------+ |
1137 * | | tee | | aqueue | | abin ... | |
1138 * | +-sink src-sink src-sink | |
1139 * | | | | +--------+ +----------------+ |
1141 * | | | | +------+ +------------+ +------+ +-----------+ |
1142 * | | | | |vqueue| | audioconv | | vis | | vbin ... | |
1143 * | | | src-sink src-sink + samp src-sink src-sink | |
1144 * | | | | +------+ +------------+ +------+ +-----------+ |
1148 * +-----------------------------------------------------------------------+
1151 gen_vis_element (GstPlayBin * play_bin)
1154 GstElement *element;
1162 GstElement *vqueue, *aqueue;
1165 /* errors are already posted when these fail. */
1166 asink = gen_audio_element (play_bin);
1169 vsink = gen_video_element (play_bin);
1171 gst_object_unref (asink);
1175 element = gst_bin_new ("visbin");
1176 tee = gst_element_factory_make ("tee", "tee");
1178 vqueue = gst_element_factory_make ("queue", "vqueue");
1179 aqueue = gst_element_factory_make ("queue", "aqueue");
1181 gst_bin_add (GST_BIN_CAST (element), asink);
1182 gst_bin_add (GST_BIN_CAST (element), vqueue);
1183 gst_bin_add (GST_BIN_CAST (element), aqueue);
1184 gst_bin_add (GST_BIN_CAST (element), vsink);
1185 gst_bin_add (GST_BIN_CAST (element), tee);
1187 conv = gst_element_factory_make ("audioconvert", "aconv");
1189 goto no_audioconvert;
1190 gst_bin_add (GST_BIN_CAST (element), conv);
1192 resamp = gst_element_factory_make ("audioresample", "aresamp");
1194 goto no_audioresample;
1195 gst_bin_add (GST_BIN_CAST (element), resamp);
1197 conv2 = gst_element_factory_make ("audioconvert", "aconv2");
1199 goto no_audioconvert;
1200 gst_bin_add (GST_BIN_CAST (element), conv2);
1202 if (play_bin->visualisation) {
1203 gst_object_ref (play_bin->visualisation);
1204 vis = play_bin->visualisation;
1206 vis = gst_element_factory_make ("goom", "vis");
1210 gst_bin_add (GST_BIN_CAST (element), vis);
1212 res = gst_element_link_pads (vqueue, "src", conv, "sink");
1213 res &= gst_element_link_pads (conv, "src", resamp, "sink");
1214 res &= gst_element_link_pads (resamp, "src", conv2, "sink");
1215 res &= gst_element_link_pads (conv2, "src", vis, "sink");
1216 res &= gst_element_link_pads (vis, "src", vsink, "sink");
1220 pad = gst_element_get_pad (aqueue, "sink");
1221 rpad = gst_element_get_request_pad (tee, "src%d");
1222 gst_pad_link (rpad, pad);
1223 gst_object_unref (rpad);
1224 gst_object_unref (pad);
1225 gst_element_link_pads (aqueue, "src", asink, "sink");
1227 pad = gst_element_get_pad (vqueue, "sink");
1228 rpad = gst_element_get_request_pad (tee, "src%d");
1229 gst_pad_link (rpad, pad);
1230 gst_object_unref (rpad);
1231 gst_object_unref (pad);
1233 pad = gst_element_get_pad (tee, "sink");
1234 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1235 gst_object_unref (pad);
1242 post_missing_element_message (play_bin, "audioconvert");
1243 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1244 (_("Missing element '%s' - check your GStreamer installation."),
1245 "audioconvert"), ("possibly a liboil version mismatch?"));
1246 gst_object_unref (element);
1251 post_missing_element_message (play_bin, "audioresample");
1252 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1253 (_("Missing element '%s' - check your GStreamer installation."),
1254 "audioresample"), (NULL));
1255 gst_object_unref (element);
1260 post_missing_element_message (play_bin, "goom");
1261 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1262 (_("Missing element '%s' - check your GStreamer installation."),
1264 gst_object_unref (element);
1269 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
1270 (NULL), ("Failed to configure the visualisation element."));
1271 gst_object_unref (element);
1276 /* get rid of all installed sinks */
1278 remove_sinks (GstPlayBin * play_bin)
1282 GstElement *element;
1285 if (play_bin->cache == NULL)
1288 GST_DEBUG ("removesinks");
1289 element = g_hash_table_lookup (play_bin->cache, "abin");
1290 if (element != NULL) {
1291 parent = gst_element_get_parent (element);
1292 if (parent != NULL) {
1293 /* we remove the element from the parent so that
1294 * there is no unwanted state change when the parent
1296 play_bin->sinks = g_list_remove (play_bin->sinks, element);
1297 gst_element_set_state (element, GST_STATE_NULL);
1298 gst_bin_remove (GST_BIN_CAST (parent), element);
1299 gst_object_unref (parent);
1301 pad = gst_element_get_pad (element, "sink");
1303 peer = gst_pad_get_peer (pad);
1305 gst_pad_unlink (peer, pad);
1306 gst_object_unref (peer);
1308 gst_object_unref (pad);
1311 element = g_hash_table_lookup (play_bin->cache, "vbin");
1312 if (element != NULL) {
1313 parent = gst_element_get_parent (element);
1314 if (parent != NULL) {
1315 play_bin->sinks = g_list_remove (play_bin->sinks, element);
1316 gst_element_set_state (element, GST_STATE_NULL);
1317 gst_bin_remove (GST_BIN_CAST (parent), element);
1318 gst_object_unref (parent);
1320 pad = gst_element_get_pad (element, "sink");
1322 peer = gst_pad_get_peer (pad);
1324 gst_pad_unlink (peer, pad);
1325 gst_object_unref (peer);
1327 gst_object_unref (pad);
1331 for (sinks = play_bin->sinks; sinks; sinks = g_list_next (sinks)) {
1332 GstElement *element = GST_ELEMENT_CAST (sinks->data);
1336 pad = gst_element_get_pad (element, "sink");
1338 GST_LOG ("removing sink %p", element);
1340 peer = gst_pad_get_peer (pad);
1342 gst_pad_unlink (peer, pad);
1343 gst_object_unref (peer);
1345 gst_object_unref (pad);
1347 gst_element_set_state (element, GST_STATE_NULL);
1348 gst_bin_remove (GST_BIN_CAST (play_bin), element);
1350 g_list_free (play_bin->sinks);
1351 play_bin->sinks = NULL;
1353 if (play_bin->visualisation) {
1354 GstElement *vis_bin;
1357 GST_ELEMENT_CAST (gst_element_get_parent (play_bin->visualisation));
1359 gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
1362 gst_bin_remove (GST_BIN_CAST (vis_bin), play_bin->visualisation);
1363 gst_object_unref (vis_bin);
1367 if (play_bin->frame) {
1368 gst_buffer_unref (play_bin->frame);
1369 play_bin->frame = NULL;
1372 if (play_bin->textoverlay_element) {
1373 gst_object_unref (play_bin->textoverlay_element);
1374 play_bin->textoverlay_element = NULL;
1378 /* loop over the streams and set up the pipeline to play this
1379 * media file. First we count the number of audio and video streams.
1380 * If there is no video stream but there exists an audio stream,
1381 * we install a visualisation pipeline.
1383 * Also make sure to only connect the first audio and video pad. FIXME
1384 * this should eventually be handled with a tuner interface so that
1385 * one can switch the streams.
1387 * This function takes ownership of @sink.*
1390 add_sink (GstPlayBin * play_bin, GstElement * sink, GstPad * srcpad,
1391 GstPad * subtitle_pad)
1394 GstPadLinkReturn linkres;
1396 GstStateChangeReturn stateret;
1399 g_return_val_if_fail (sink != NULL, FALSE);
1401 state = GST_STATE_PAUSED;
1403 /* this is only for debugging */
1404 parent = gst_pad_get_parent_element (srcpad);
1406 GST_DEBUG ("Adding sink %" GST_PTR_FORMAT
1407 " with state %d (parent: %d, peer: %d)", sink,
1408 GST_STATE (sink), GST_STATE (play_bin), GST_STATE (parent));
1409 gst_object_unref (parent);
1411 gst_bin_add (GST_BIN_CAST (play_bin), sink);
1413 /* bring it to the required state so we can link to the peer without
1414 * breaking the flow */
1415 stateret = gst_element_set_state (sink, state);
1416 if (stateret == GST_STATE_CHANGE_FAILURE)
1419 /* we found a sink for this stream, now try to install it */
1420 sinkpad = gst_element_get_pad (sink, "sink");
1421 linkres = gst_pad_link (srcpad, sinkpad);
1422 gst_object_unref (sinkpad);
1424 /* try to link the pad of the sink to the stream */
1425 if (GST_PAD_LINK_FAILED (linkres))
1428 if (GST_IS_PAD (subtitle_pad)) {
1429 sinkpad = gst_element_get_pad (sink, "text_sink");
1430 linkres = gst_pad_link (subtitle_pad, sinkpad);
1431 gst_object_unref (sinkpad);
1434 /* try to link the subtitle pad of the sink to the stream, this is not
1436 if (GST_PAD_LINK_FAILED (linkres))
1437 goto subtitle_failed;
1440 /* we got the sink succesfully linked, now keep the sink
1441 * in our internal list */
1442 play_bin->sinks = g_list_prepend (play_bin->sinks, sink);
1449 gst_element_set_state (sink, GST_STATE_NULL);
1450 gst_bin_remove (GST_BIN_CAST (play_bin), sink);
1451 GST_DEBUG_OBJECT (play_bin, "state change failure when adding sink");
1459 /* could not link this stream */
1460 caps = gst_pad_get_caps (srcpad);
1461 capsstr = gst_caps_to_string (caps);
1462 g_warning ("could not link %s: %d", capsstr, linkres);
1463 GST_DEBUG_OBJECT (play_bin,
1464 "link failed when adding sink, caps %s, reason %d", capsstr, linkres);
1466 gst_caps_unref (caps);
1468 gst_element_set_state (sink, GST_STATE_NULL);
1469 gst_bin_remove (GST_BIN_CAST (play_bin), sink);
1476 /* could not link this stream */
1477 caps = gst_pad_get_caps (subtitle_pad);
1478 GST_WARNING_OBJECT (play_bin, "subtitle link failed when adding sink, "
1479 "caps = %" GST_PTR_FORMAT ", reason %d", caps, linkres);
1480 gst_caps_unref (caps);
1488 dummy_blocked_cb (GstPad * pad, gboolean blocked, gpointer user_data)
1493 setup_sinks (GstPlayBaseBin * play_base_bin, GstPlayBaseGroup * group)
1495 GstPlayBin *play_bin = GST_PLAY_BIN (play_base_bin);
1496 gboolean need_vis = FALSE;
1497 gboolean need_text = FALSE;
1498 GstPad *textsrcpad = NULL, *pad = NULL, *origtextsrcpad = NULL;
1500 gboolean res = TRUE;
1502 /* get rid of existing sinks */
1503 if (play_bin->sinks) {
1504 remove_sinks (play_bin);
1506 GST_DEBUG_OBJECT (play_base_bin, "setupsinks");
1508 /* find out what to do */
1509 if (group->type[GST_STREAM_TYPE_VIDEO - 1].npads > 0 &&
1510 group->type[GST_STREAM_TYPE_TEXT - 1].npads > 0) {
1512 } else if (group->type[GST_STREAM_TYPE_VIDEO - 1].npads == 0 &&
1513 group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0 &&
1514 play_bin->visualisation != NULL) {
1518 /* now actually connect everything */
1521 if (group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0) {
1523 sink = gen_vis_element (play_bin);
1525 sink = gen_audio_element (play_bin);
1530 pad = gst_element_get_pad (group->type[GST_STREAM_TYPE_AUDIO - 1].preroll,
1532 res = add_sink (play_bin, sink, pad, NULL);
1533 gst_object_unref (pad);
1537 if (group->type[GST_STREAM_TYPE_VIDEO - 1].npads > 0) {
1539 GstObject *parent = NULL, *grandparent = NULL;
1540 GstPad *ghost = NULL;
1542 sink = gen_text_element (play_bin);
1544 gst_element_get_pad (group->type[GST_STREAM_TYPE_TEXT - 1].preroll,
1547 /* This pad is from subtitle-bin, we need to create a ghost pad to have
1548 common grandparents */
1549 parent = gst_object_get_parent (GST_OBJECT_CAST (textsrcpad));
1551 GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no parent !");
1552 gst_object_unref (textsrcpad);
1557 grandparent = gst_object_get_parent (parent);
1559 GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no grandparent !");
1560 gst_object_unref (parent);
1561 gst_object_unref (textsrcpad);
1566 /* We ghost the pad on subtitle_bin only, if the text pad is from the
1567 media demuxer we keep it as it is */
1568 if (!GST_IS_PLAY_BIN (grandparent)) {
1569 GST_DEBUG_OBJECT (textsrcpad, "this subtitle pad is from a subtitle "
1570 "file, ghosting to a suitable hierarchy");
1571 /* Block the pad first, because as soon as we add a ghostpad, the queue
1572 * will try and start pushing */
1573 gst_pad_set_blocked_async (textsrcpad, TRUE, dummy_blocked_cb, NULL);
1574 origtextsrcpad = gst_object_ref (textsrcpad);
1576 ghost = gst_ghost_pad_new ("text_src", textsrcpad);
1577 if (!GST_IS_PAD (ghost)) {
1578 GST_WARNING_OBJECT (textsrcpad, "failed creating ghost pad for "
1580 gst_object_unref (parent);
1581 gst_object_unref (grandparent);
1582 gst_object_unref (textsrcpad);
1587 gst_pad_set_active (ghost, TRUE);
1588 if (gst_element_add_pad (GST_ELEMENT_CAST (grandparent), ghost)) {
1589 gst_object_unref (textsrcpad);
1590 textsrcpad = gst_object_ref (ghost);
1592 GST_WARNING_OBJECT (ghost, "failed adding ghost pad on subtitle-bin");
1593 gst_pad_set_active (ghost, FALSE);
1594 gst_object_unref (ghost);
1595 gst_object_unref (textsrcpad);
1599 GST_DEBUG_OBJECT (textsrcpad, "this subtitle pad is from the demuxer "
1600 "no changes to hierarchy needed");
1603 gst_object_unref (parent);
1604 gst_object_unref (grandparent);
1606 sink = gen_video_element (play_bin);
1611 pad = gst_element_get_pad (group->type[GST_STREAM_TYPE_VIDEO - 1].preroll,
1613 res = add_sink (play_bin, sink, pad, textsrcpad);
1614 gst_object_unref (pad);
1616 gst_object_unref (textsrcpad);
1617 if (origtextsrcpad) {
1618 gst_pad_set_blocked_async (origtextsrcpad, FALSE, dummy_blocked_cb, NULL);
1619 gst_object_unref (origtextsrcpad);
1623 /* remove the sinks now, pipeline get_state will now wait for the
1624 * sinks to preroll */
1625 if (play_bin->fakesink) {
1626 gst_element_set_state (play_bin->fakesink, GST_STATE_NULL);
1627 gst_bin_remove (GST_BIN_CAST (play_bin), play_bin->fakesink);
1628 play_bin->fakesink = NULL;
1635 playbin_set_subtitles_visible (GstPlayBaseBin * play_base_bin, gboolean visible)
1637 GstPlayBin *playbin = GST_PLAY_BIN (play_base_bin);
1639 /* we're ignoring the case of someone setting the 'current-text' property
1640 * before textoverlay is set up (which is probably okay, since playbasebin
1641 * will just select the first subtitle stream as active stream regardless) */
1642 if (playbin->textoverlay_element != NULL) {
1643 GST_LOG_OBJECT (playbin, "setting subtitle visibility to %d", visible);
1644 g_object_set (playbin->textoverlay_element, "silent", !visible, NULL);
1649 playbin_set_audio_mute (GstPlayBaseBin * play_base_bin, gboolean mute)
1651 GstPlayBin *playbin = GST_PLAY_BIN (play_base_bin);
1653 if (playbin->volume_element) {
1654 g_object_set (G_OBJECT (playbin->volume_element), "mute", mute, NULL);
1658 /* Send an event to our sinks until one of them works; don't then send to the
1659 * remaining sinks (unlike GstBin)
1662 gst_play_bin_send_event_to_sink (GstPlayBin * play_bin, GstEvent * event)
1664 GList *sinks = play_bin->sinks;
1665 gboolean res = TRUE;
1668 GstElement *sink = GST_ELEMENT_CAST (sinks->data);
1670 gst_event_ref (event);
1671 if ((res = gst_element_send_event (sink, event))) {
1672 GST_DEBUG_OBJECT (play_bin,
1673 "Sent event succesfully to sink %" GST_PTR_FORMAT, sink);
1676 GST_DEBUG_OBJECT (play_bin,
1677 "Event failed when sent to sink %" GST_PTR_FORMAT, sink);
1679 sinks = g_list_next (sinks);
1682 gst_event_unref (event);
1687 /* We only want to send the event to a single sink (overriding GstBin's
1688 * behaviour), but we want to keep GstPipeline's behaviour - wrapping seek
1689 * events appropriately. So, this is a messy duplication of code. */
1691 gst_play_bin_send_event (GstElement * element, GstEvent * event)
1693 gboolean res = FALSE;
1694 GstEventType event_type = GST_EVENT_TYPE (event);
1696 switch (event_type) {
1697 case GST_EVENT_SEEK:
1698 GST_DEBUG_OBJECT (element, "Sending seek event to a sink");
1699 res = gst_play_bin_send_event_to_sink (GST_PLAY_BIN (element), event);
1702 res = parent_class->send_event (element, event);
1710 value_list_append_structure_list (GValue * list_val, GstStructure ** first,
1711 GList * structure_list)
1715 for (l = structure_list; l != NULL; l = l->next) {
1716 GValue val = { 0, };
1719 *first = gst_structure_copy ((GstStructure *) l->data);
1721 g_value_init (&val, GST_TYPE_STRUCTURE);
1722 g_value_take_boxed (&val, gst_structure_copy ((GstStructure *) l->data));
1723 gst_value_list_append_value (list_val, &val);
1724 g_value_unset (&val);
1728 /* if it's a redirect message with multiple redirect locations we might
1729 * want to pick a different 'best' location depending on the required
1730 * bitrates and the connection speed */
1732 gst_play_bin_handle_redirect_message (GstPlayBin * playbin, GstMessage * msg)
1734 const GValue *locations_list, *location_val;
1735 GstMessage *new_msg;
1736 GstStructure *new_structure = NULL;
1737 GList *l_good = NULL, *l_neutral = NULL, *l_bad = NULL;
1738 GValue new_list = { 0, };
1740 GstPlayBaseBin *playbasebin = GST_PLAY_BASE_BIN (playbin);
1741 guint connection_speed = playbasebin->connection_speed;
1743 GST_DEBUG_OBJECT (playbin, "redirect message: %" GST_PTR_FORMAT, msg);
1744 GST_DEBUG_OBJECT (playbin, "connection speed: %u", connection_speed);
1746 if (connection_speed == 0 || msg->structure == NULL)
1749 locations_list = gst_structure_get_value (msg->structure, "locations");
1750 if (locations_list == NULL)
1753 size = gst_value_list_get_size (locations_list);
1757 /* maintain existing order as much as possible, just sort references
1758 * with too high a bitrate to the end (the assumption being that if
1759 * bitrates are given they are given for all interesting streams and
1760 * that the you-need-at-least-version-xyz redirect has the same bitrate
1761 * as the lowest referenced redirect alternative) */
1762 for (i = 0; i < size; ++i) {
1763 const GstStructure *s;
1766 location_val = gst_value_list_get_value (locations_list, i);
1767 s = (const GstStructure *) g_value_get_boxed (location_val);
1768 if (!gst_structure_get_int (s, "minimum-bitrate", &bitrate) || bitrate <= 0) {
1769 GST_DEBUG_OBJECT (playbin, "no bitrate: %" GST_PTR_FORMAT, s);
1770 l_neutral = g_list_append (l_neutral, (gpointer) s);
1771 } else if (bitrate > connection_speed) {
1772 GST_DEBUG_OBJECT (playbin, "bitrate too high: %" GST_PTR_FORMAT, s);
1773 l_bad = g_list_append (l_bad, (gpointer) s);
1774 } else if (bitrate <= connection_speed) {
1775 GST_DEBUG_OBJECT (playbin, "bitrate OK: %" GST_PTR_FORMAT, s);
1776 l_good = g_list_append (l_good, (gpointer) s);
1780 g_value_init (&new_list, GST_TYPE_LIST);
1781 value_list_append_structure_list (&new_list, &new_structure, l_good);
1782 value_list_append_structure_list (&new_list, &new_structure, l_neutral);
1783 value_list_append_structure_list (&new_list, &new_structure, l_bad);
1784 gst_structure_set_value (new_structure, "locations", &new_list);
1785 g_value_unset (&new_list);
1787 g_list_free (l_good);
1788 g_list_free (l_neutral);
1789 g_list_free (l_bad);
1791 new_msg = gst_message_new_element (msg->src, new_structure);
1792 gst_message_unref (msg);
1794 GST_DEBUG_OBJECT (playbin, "new redirect message: %" GST_PTR_FORMAT, new_msg);
1799 gst_play_bin_handle_message (GstBin * bin, GstMessage * msg)
1801 if (GST_MESSAGE_TYPE (msg) == GST_MESSAGE_ELEMENT && msg->structure != NULL
1802 && gst_structure_has_name (msg->structure, "redirect")) {
1803 msg = gst_play_bin_handle_redirect_message (GST_PLAY_BIN (bin), msg);
1806 GST_BIN_CLASS (parent_class)->handle_message (bin, msg);
1809 static GstStateChangeReturn
1810 gst_play_bin_change_state (GstElement * element, GstStateChange transition)
1812 GstStateChangeReturn ret;
1813 GstPlayBin *play_bin;
1815 play_bin = GST_PLAY_BIN (element);
1818 switch (transition) {
1819 case GST_STATE_CHANGE_READY_TO_PAUSED:
1820 /* this really is the easiest way to make the state change return
1821 * ASYNC until we added the sinks */
1822 if (!play_bin->fakesink) {
1823 play_bin->fakesink = gst_element_factory_make ("fakesink", "test");
1824 gst_bin_add (GST_BIN_CAST (play_bin), play_bin->fakesink);
1831 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1832 if (ret == GST_STATE_CHANGE_FAILURE)
1835 switch (transition) {
1836 case GST_STATE_CHANGE_READY_TO_PAUSED:
1837 /* remember us being a live pipeline */
1838 play_bin->is_live = (ret == GST_STATE_CHANGE_NO_PREROLL);
1839 GST_DEBUG_OBJECT (play_bin, "is live: %d", play_bin->is_live);
1841 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1842 /* FIXME Release audio device when we implement that */
1844 case GST_STATE_CHANGE_PAUSED_TO_READY:
1845 case GST_STATE_CHANGE_READY_TO_NULL:
1846 /* remove sinks we added */
1847 remove_sinks (play_bin);
1848 /* and there might be a fakesink we need to clean up now */
1849 if (play_bin->fakesink) {
1850 gst_element_set_state (play_bin->fakesink, GST_STATE_NULL);
1851 gst_bin_remove (GST_BIN_CAST (play_bin), play_bin->fakesink);
1852 play_bin->fakesink = NULL;
1863 gst_play_bin_plugin_init (GstPlugin * plugin)
1865 GST_DEBUG_CATEGORY_INIT (gst_play_bin_debug, "playbin", 0, "play bin");
1867 return gst_element_register (plugin, "playbin", GST_RANK_NONE,