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.
27 * This element is deprecated and no longer supported. You should use
28 * the #playbin2 element instead.
31 * It can handle both audio and video files and features
34 * automatic file type recognition and based on that automatic
35 * selection and usage of the right audio/video/subtitle demuxers/decoders
38 * visualisations for audio files
41 * subtitle support for video files
44 * stream selection between different audio/subtitles streams
47 * meta info (tag) extraction
50 * easy access to the last video frame
53 * buffering when playing streams over a network
61 * <title>Usage</title>
63 * A playbin element can be created just like any other element using
64 * gst_element_factory_make(). The file/URI to play should be set via the #GstPlayBin:uri
65 * property. This must be an absolute URI, relative file paths are not allowed.
66 * Example URIs are file:///home/joe/movie.avi or http://www.joedoe.com/foo.ogg
68 * Playbin is a #GstPipeline. It will notify the application of everything
69 * that's happening (errors, end of stream, tags found, state changes, etc.)
70 * by posting messages on its #GstBus. The application needs to watch the
73 * Playback can be initiated by setting the element to PLAYING state using
74 * gst_element_set_state(). Note that the state change will take place in
75 * the background in a separate thread, when the function returns playback
76 * is probably not happening yet and any errors might not have occured yet.
77 * Applications using playbin should ideally be written to deal with things
78 * completely asynchroneous.
80 * When playback has finished (an EOS message has been received on the bus)
81 * or an error has occured (an ERROR message has been received on the bus) or
82 * the user wants to play a different track, playbin should be set back to
83 * READY or NULL state, then the #GstPlayBin:uri property should be set to the
84 * new location and then playbin be set to PLAYING state again.
86 * Seeking can be done using gst_element_seek_simple() or gst_element_seek()
87 * on the playbin element. Again, the seek will not be executed
88 * instantaneously, but will be done in a background thread. When the seek
89 * call returns the seek will most likely still be in process. An application
90 * may wait for the seek to finish (or fail) using gst_element_get_state() with
91 * -1 as the timeout, but this will block the user interface and is not
94 * Applications may query the current position and duration of the stream
95 * via gst_element_query_position() and gst_element_query_duration() and
96 * setting the format passed to GST_FORMAT_TIME. If the query was successful,
97 * the duration or position will have been returned in units of nanoseconds.
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 * #GstPlayBin:audio-sink or #GstPlayBin:video-sink property, playbin will use
105 * the autoaudiosink and autovideosink elements to find the first-best
106 * available output method.
107 * This should work in most cases, but is not always desirable. Often either
108 * the user or application might want to specify more explicitly what to use
109 * for audio and video output.
111 * If the application wants more control over how audio or video should be
112 * output, it may create the audio/video sink elements itself (for example
113 * using gst_element_factory_make()) and provide them to playbin using the
114 * #GstPlayBin:audio-sink or #GstPlayBin:video-sink property.
116 * GNOME-based applications, for example, will usually want to create
117 * gconfaudiosink and gconfvideosink elements and make playbin use those,
118 * so that output happens to whatever the user has configured in the GNOME
119 * Multimedia System Selector confinguration dialog.
121 * The sink elements do not necessarily need to be ready-made sinks. It is
122 * possible to create container elements that look like a sink to playbin,
123 * but in reality contain a number of custom elements linked together. This
124 * can be achieved by creating a #GstBin and putting elements in there and
125 * linking them, and then creating a sink #GstGhostPad for the bin and pointing
126 * it to the sink pad of the first element within the bin. This can be used
127 * for a number of purposes, for example to force output to a particular
128 * format or to modify or observe the data before it is output.
130 * It is also possible to 'suppress' audio and/or video output by using
131 * 'fakesink' elements (or capture it from there using the fakesink element's
132 * "handoff" signal, which, nota bene, is fired from the streaming thread!).
136 * <title>Retrieving Tags and Other Meta Data</title>
138 * Most of the common meta data (artist, title, etc.) can be retrieved by
139 * watching for TAG messages on the pipeline's bus (see above).
141 * Other more specific meta information like width/height/framerate of video
142 * streams or samplerate/number of channels of audio streams can be obtained
143 * using the #GstPlayBaseBin:stream-info property, which will return a GList of
144 * stream info objects, one for each stream. These are opaque objects that can
145 * only be accessed via the standard GObject property interface, ie. g_object_get().
146 * Each stream info object has the following properties:
148 * <listitem>"object" (GstObject) (the decoder source pad usually)</listitem>
149 * <listitem>"type" (enum) (if this is an audio/video/subtitle stream)</listitem>
150 * <listitem>"decoder" (string) (name of decoder used to decode this stream)</listitem>
151 * <listitem>"mute" (boolean) (to mute or unmute this stream)</listitem>
152 * <listitem>"caps" (GstCaps) (caps of the decoded stream)</listitem>
153 * <listitem>"language-code" (string) (ISO-639 language code for this stream, mostly used for audio/subtitle streams)</listitem>
154 * <listitem>"codec" (string) (format this stream was encoded in)</listitem>
156 * Stream information from the #GstPlayBaseBin:stream-info property is best queried once
157 * playbin has changed into PAUSED or PLAYING state (which can be detected
158 * via a state-changed message on the #GstBus where old_state=READY and
159 * new_state=PAUSED), since before that the list might not be complete yet or
160 * not contain all available information (like language-codes).
164 * <title>Buffering</title>
165 * Playbin handles buffering automatically for the most part, but applications
166 * need to handle parts of the buffering process as well. Whenever playbin is
167 * buffering, it will post BUFFERING messages on the bus with a percentage
168 * value that shows the progress of the buffering process. Applications need
169 * to set playbin to PLAYING or PAUSED state in response to these messages.
170 * They may also want to convey the buffering progress to the user in some
171 * way. Here is how to extract the percentage information from the message
172 * (requires GStreamer >= 0.10.11):
174 * switch (GST_MESSAGE_TYPE (msg)) {
175 * case GST_MESSAGE_BUFFERING: {
177 * gst_message_parse_buffering (msg, &percent);
178 * g_print ("Buffering (%%u percent done)", percent);
184 * Note that applications should keep/set the pipeline in the PAUSED state when
185 * a BUFFERING message is received with a buffer percent value < 100 and set
186 * the pipeline back to PLAYING state when a BUFFERING message with a value
187 * of 100 percent is received (if PLAYING is the desired state, that is).
190 * <title>Embedding the video window in your application</title>
191 * By default, playbin (or rather the video sinks used) will create their own
192 * window. Applications will usually want to force output to a window of their
193 * own, however. This can be done using the #GstXOverlay interface, which most
194 * video sinks implement. See the documentation there for more details.
197 * <title>Specifying which CD/DVD device to use</title>
198 * The device to use for CDs/DVDs needs to be set on the source element
199 * playbin creates before it is opened. The only way to do this at the moment
200 * is to connect to playbin's "notify::source" signal, which will be emitted
201 * by playbin when it has created the source element for a particular URI.
202 * In the signal callback you can check if the source element has a "device"
203 * property and set it appropriately. In future ways might be added to specify
204 * the device as part of the URI, but at the time of writing this is not
208 * <title>Examples</title>
210 * gst-launch -v playbin uri=file:///path/to/somefile.avi
211 * ]| This will play back the given AVI video file, given that the video and
212 * audio decoders required to decode the content are installed. Since no
213 * special audio sink or video sink is supplied (not possible via gst-launch),
214 * playbin will try to find a suitable audio and video sink automatically
215 * using the autoaudiosink and autovideosink elements.
217 * gst-launch -v playbin uri=cdda://4
218 * ]| This will play back track 4 on an audio CD in your disc drive (assuming
219 * the drive is detected automatically by the plugin).
221 * gst-launch -v playbin uri=dvd://1
222 * ]| This will play back title 1 of a DVD in your disc drive (assuming
223 * the drive is detected automatically by the plugin).
226 * Deprecated: use playbin2 instead
236 #include <gst/gst-i18n-plugin.h>
237 #include <gst/pbutils/pbutils.h>
239 #include "gstplaybasebin.h"
240 #include "gstplayback.h"
242 GST_DEBUG_CATEGORY_STATIC (gst_play_bin_debug);
243 #define GST_CAT_DEFAULT gst_play_bin_debug
245 #define GST_TYPE_PLAY_BIN (gst_play_bin_get_type())
246 #define GST_PLAY_BIN(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PLAY_BIN,GstPlayBin))
247 #define GST_PLAY_BIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PLAY_BIN,GstPlayBinClass))
248 #define GST_IS_PLAY_BIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PLAY_BIN))
249 #define GST_IS_PLAY_BIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PLAY_BIN))
251 #define VOLUME_MAX_DOUBLE 10.0
253 typedef struct _GstPlayBin GstPlayBin;
254 typedef struct _GstPlayBinClass GstPlayBinClass;
259 * High-level player element
263 GstPlayBaseBin parent;
265 /* the configurable elements */
266 GstElement *fakesink;
267 GstElement *audio_sink;
268 GstElement *video_sink;
269 GstElement *visualisation;
270 GstElement *pending_visualisation;
271 GstElement *volume_element;
272 GstElement *textoverlay_element;
273 GstElement *spu_element;
276 /* these are the currently active sinks */
279 /* the last captured frame for snapshots */
282 /* our cache for the sinks */
285 /* font description */
288 /* indication if the pipeline is live */
292 struct _GstPlayBinClass
294 GstPlayBaseBinClass parent_class;
315 static void gst_play_bin_class_init (GstPlayBinClass * klass);
316 static void gst_play_bin_init (GstPlayBin * play_bin);
317 static void gst_play_bin_dispose (GObject * object);
319 static gboolean setup_sinks (GstPlayBaseBin * play_base_bin,
320 GstPlayBaseGroup * group);
321 static void remove_sinks (GstPlayBin * play_bin);
322 static void playbin_set_subtitles_visible (GstPlayBaseBin * play_base_bin,
324 static void playbin_set_audio_mute (GstPlayBaseBin * play_base_bin,
327 static void gst_play_bin_set_property (GObject * object, guint prop_id,
328 const GValue * value, GParamSpec * spec);
329 static void gst_play_bin_get_property (GObject * object, guint prop_id,
330 GValue * value, GParamSpec * spec);
332 static gboolean gst_play_bin_send_event (GstElement * element,
334 static GstStateChangeReturn gst_play_bin_change_state (GstElement * element,
335 GstStateChange transition);
337 static void gst_play_bin_handle_message (GstBin * bin, GstMessage * message);
339 static GstElementClass *parent_class;
341 //static guint gst_play_bin_signals[LAST_SIGNAL] = { 0 };
344 gst_play_bin_get_type (void)
346 static GType gst_play_bin_type = 0;
348 if (!gst_play_bin_type) {
349 static const GTypeInfo gst_play_bin_info = {
350 sizeof (GstPlayBinClass),
353 (GClassInitFunc) gst_play_bin_class_init,
358 (GInstanceInitFunc) gst_play_bin_init,
362 gst_play_bin_type = g_type_register_static (GST_TYPE_PLAY_BASE_BIN,
363 "GstPlayBin", &gst_play_bin_info, 0);
366 return gst_play_bin_type;
370 gst_play_bin_class_init (GstPlayBinClass * klass)
372 GObjectClass *gobject_klass;
373 GstElementClass *gstelement_klass;
374 GstBinClass *gstbin_klass;
375 GstPlayBaseBinClass *playbasebin_klass;
377 gobject_klass = (GObjectClass *) klass;
378 gstelement_klass = (GstElementClass *) klass;
379 gstbin_klass = (GstBinClass *) klass;
380 playbasebin_klass = (GstPlayBaseBinClass *) klass;
382 parent_class = g_type_class_peek_parent (klass);
384 gobject_klass->set_property = gst_play_bin_set_property;
385 gobject_klass->get_property = gst_play_bin_get_property;
387 g_object_class_install_property (gobject_klass, ARG_VIDEO_SINK,
388 g_param_spec_object ("video-sink", "Video Sink",
389 "the video output element to use (NULL = default sink)",
390 GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
391 g_object_class_install_property (gobject_klass, ARG_AUDIO_SINK,
392 g_param_spec_object ("audio-sink", "Audio Sink",
393 "the audio output element to use (NULL = default sink)",
394 GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
395 g_object_class_install_property (gobject_klass, ARG_VIS_PLUGIN,
396 g_param_spec_object ("vis-plugin", "Vis plugin",
397 "the visualization element to use (NULL = none)",
398 GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
402 * Get or set the current audio stream volume. 1.0 means 100%,
403 * 0.0 means mute. This uses a linear volume scale.
406 g_object_class_install_property (gobject_klass, ARG_VOLUME,
407 g_param_spec_double ("volume", "volume", "volume",
408 0.0, VOLUME_MAX_DOUBLE, 1.0,
409 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
410 g_object_class_install_property (gobject_klass, ARG_FRAME,
411 gst_param_spec_mini_object ("frame", "Frame",
412 "The last frame (NULL = no video available)", GST_TYPE_BUFFER,
413 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
414 g_object_class_install_property (gobject_klass, ARG_FONT_DESC,
415 g_param_spec_string ("subtitle-font-desc", "Subtitle font description",
416 "Pango font description of font " "to be used for subtitle rendering",
417 NULL, G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS));
419 gobject_klass->dispose = gst_play_bin_dispose;
421 gst_element_class_set_details_simple (gstelement_klass,
422 "Player Bin", "Generic/Bin/Player",
423 "Autoplug and play media from an uri",
424 "Wim Taymans <wim.taymans@gmail.com>");
426 gstelement_klass->change_state =
427 GST_DEBUG_FUNCPTR (gst_play_bin_change_state);
428 gstelement_klass->send_event = GST_DEBUG_FUNCPTR (gst_play_bin_send_event);
430 gstbin_klass->handle_message =
431 GST_DEBUG_FUNCPTR (gst_play_bin_handle_message);
433 playbasebin_klass->setup_output_pads = setup_sinks;
434 playbasebin_klass->set_subtitles_visible = playbin_set_subtitles_visible;
435 playbasebin_klass->set_audio_mute = playbin_set_audio_mute;
439 gst_play_bin_init (GstPlayBin * play_bin)
441 play_bin->video_sink = NULL;
442 play_bin->audio_sink = NULL;
443 play_bin->visualisation = NULL;
444 play_bin->pending_visualisation = NULL;
445 play_bin->volume_element = NULL;
446 play_bin->textoverlay_element = NULL;
447 play_bin->spu_element = NULL;
448 play_bin->volume = 1.0;
449 play_bin->sinks = NULL;
450 play_bin->frame = NULL;
451 play_bin->font_desc = NULL;
452 play_bin->cache = g_hash_table_new_full (g_str_hash, g_str_equal,
453 NULL, (GDestroyNotify) gst_object_unref);
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 if (play_bin->volume_element) {
494 gst_object_unref (play_bin->volume_element);
495 play_bin->volume_element = NULL;
497 if (play_bin->spu_element != NULL) {
498 gst_object_unref (play_bin->spu_element);
499 play_bin->spu_element = NULL;
501 g_free (play_bin->font_desc);
502 play_bin->font_desc = NULL;
504 G_OBJECT_CLASS (parent_class)->dispose (object);
508 gst_play_bin_vis_unblocked (GstPad * tee_pad, gboolean blocked,
511 GstPlayBin *play_bin = GST_PLAY_BIN (user_data);
513 if (play_bin->pending_visualisation)
514 gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
519 gst_play_bin_vis_blocked (GstPad * tee_pad, gboolean blocked,
522 GstPlayBin *play_bin = GST_PLAY_BIN (user_data);
523 GstBin *vis_bin = NULL;
524 GstPad *vis_sink_pad = NULL, *vis_src_pad = NULL, *vqueue_pad = NULL;
526 GstElement *pending_visualisation;
528 GST_OBJECT_LOCK (play_bin);
529 pending_visualisation = play_bin->pending_visualisation;
530 play_bin->pending_visualisation = NULL;
531 GST_OBJECT_UNLOCK (play_bin);
533 /* We want to disable visualisation */
534 if (!GST_IS_ELEMENT (pending_visualisation)) {
535 /* Set visualisation element to READY */
536 gst_element_set_state (play_bin->visualisation, GST_STATE_READY);
541 GST_BIN_CAST (gst_object_get_parent (GST_OBJECT_CAST
542 (play_bin->visualisation)));
544 if (!GST_IS_BIN (vis_bin) || !GST_IS_PAD (tee_pad)) {
548 vis_src_pad = gst_element_get_static_pad (play_bin->visualisation, "src");
549 vis_sink_pad = gst_pad_get_peer (tee_pad);
551 /* Can be fakesink */
552 if (GST_IS_PAD (vis_src_pad)) {
553 vqueue_pad = gst_pad_get_peer (vis_src_pad);
556 if (!GST_IS_PAD (vis_sink_pad)) {
560 /* Check the bin's state */
561 GST_OBJECT_LOCK (vis_bin);
562 bin_state = GST_STATE (vis_bin);
563 GST_OBJECT_UNLOCK (vis_bin);
566 gst_pad_unlink (tee_pad, vis_sink_pad);
567 gst_object_unref (vis_sink_pad);
570 if (GST_IS_PAD (vqueue_pad)) {
571 gst_pad_unlink (vis_src_pad, vqueue_pad);
572 gst_object_unref (vis_src_pad);
576 /* Remove from vis_bin */
577 gst_bin_remove (vis_bin, play_bin->visualisation);
578 /* Set state to NULL */
579 gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
580 /* And loose our ref */
581 gst_object_unref (play_bin->visualisation);
583 if (pending_visualisation) {
584 /* Ref this new visualisation element before adding to the bin */
585 gst_object_ref (pending_visualisation);
586 /* Add the new one */
587 gst_bin_add (vis_bin, pending_visualisation);
588 /* Synchronizing state */
589 gst_element_set_state (pending_visualisation, bin_state);
591 vis_sink_pad = gst_element_get_static_pad (pending_visualisation, "sink");
592 vis_src_pad = gst_element_get_static_pad (pending_visualisation, "src");
594 if (!GST_IS_PAD (vis_sink_pad) || !GST_IS_PAD (vis_src_pad)) {
599 gst_pad_link (tee_pad, vis_sink_pad);
600 gst_pad_link (vis_src_pad, vqueue_pad);
604 gst_object_unref (play_bin->visualisation);
605 play_bin->visualisation = pending_visualisation;
609 gst_object_unref (vis_sink_pad);
612 gst_object_unref (vis_src_pad);
615 gst_object_unref (vqueue_pad);
618 gst_object_unref (vis_bin);
621 /* Unblock the pad */
622 gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
627 gst_play_bin_set_property (GObject * object, guint prop_id,
628 const GValue * value, GParamSpec * pspec)
630 GstPlayBin *play_bin;
632 play_bin = GST_PLAY_BIN (object);
636 if (play_bin->video_sink != NULL) {
637 gst_object_unref (play_bin->video_sink);
639 play_bin->video_sink = g_value_get_object (value);
640 if (play_bin->video_sink != NULL) {
641 gst_object_ref_sink (play_bin->video_sink);
643 /* when changing the videosink, we just remove the
644 * video pipeline from the cache so that it will be
645 * regenerated with the new sink element */
646 g_hash_table_remove (play_bin->cache, "vbin");
649 if (play_bin->audio_sink != NULL) {
650 gst_object_unref (play_bin->audio_sink);
652 if (play_bin->volume_element != NULL) {
653 gst_object_unref (play_bin->volume_element);
654 play_bin->volume_element = NULL;
656 play_bin->audio_sink = g_value_get_object (value);
657 if (play_bin->audio_sink != NULL) {
658 gst_object_ref_sink (play_bin->audio_sink);
660 g_hash_table_remove (play_bin->cache, "abin");
664 GstElement *pending_visualisation =
665 GST_ELEMENT_CAST (g_value_get_object (value));
668 if (pending_visualisation) {
669 gst_object_ref_sink (pending_visualisation);
672 /* Do we already have a visualisation change pending ? */
673 GST_OBJECT_LOCK (play_bin);
674 if (play_bin->pending_visualisation) {
675 gst_object_unref (play_bin->pending_visualisation);
676 play_bin->pending_visualisation = pending_visualisation;
677 GST_OBJECT_UNLOCK (play_bin);
679 GST_OBJECT_UNLOCK (play_bin);
680 /* Was there a visualisation already set ? */
681 if (play_bin->visualisation != NULL) {
682 GstBin *vis_bin = NULL;
685 GST_BIN_CAST (gst_object_get_parent (GST_OBJECT_CAST
686 (play_bin->visualisation)));
688 /* Check if the visualisation is already in a bin */
689 if (GST_IS_BIN (vis_bin)) {
690 GstPad *vis_sink_pad = NULL, *tee_pad = NULL;
692 /* Now get tee pad and block it async */
693 vis_sink_pad = gst_element_get_static_pad (play_bin->visualisation,
695 if (!GST_IS_PAD (vis_sink_pad)) {
698 tee_pad = gst_pad_get_peer (vis_sink_pad);
699 if (!GST_IS_PAD (tee_pad)) {
703 play_bin->pending_visualisation = pending_visualisation;
704 /* Block with callback */
705 gst_pad_set_blocked_async (tee_pad, TRUE, gst_play_bin_vis_blocked,
709 gst_object_unref (vis_sink_pad);
712 gst_object_unref (tee_pad);
714 gst_object_unref (vis_bin);
716 play_bin->visualisation = pending_visualisation;
719 play_bin->visualisation = pending_visualisation;
725 play_bin->volume = g_value_get_double (value);
726 if (play_bin->volume_element) {
727 g_object_set (G_OBJECT (play_bin->volume_element), "volume",
728 play_bin->volume, NULL);
732 g_free (play_bin->font_desc);
733 play_bin->font_desc = g_strdup (g_value_get_string (value));
734 if (play_bin->textoverlay_element) {
735 g_object_set (G_OBJECT (play_bin->textoverlay_element),
736 "font-desc", g_value_get_string (value), NULL);
740 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
746 gst_play_bin_get_property (GObject * object, guint prop_id, GValue * value,
749 GstPlayBin *play_bin;
751 play_bin = GST_PLAY_BIN (object);
755 g_value_set_object (value, play_bin->video_sink);
758 g_value_set_object (value, play_bin->audio_sink);
761 g_value_set_object (value, play_bin->visualisation);
764 g_value_set_double (value, play_bin->volume);
767 GstBuffer *cur_frame = NULL;
769 gst_buffer_replace (&cur_frame, play_bin->frame);
770 gst_value_take_buffer (value, cur_frame);
774 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
779 /* signal fired when the identity has received a new buffer. This is used for
780 * making screenshots.
783 handoff (GstElement * identity, GstBuffer * frame, gpointer data)
785 GstPlayBin *play_bin = GST_PLAY_BIN (data);
787 /* applications need to know the buffer caps,
788 * make sure they are always set on the frame */
789 if (GST_BUFFER_CAPS (frame) == NULL) {
792 if ((pad = gst_element_get_static_pad (identity, "sink"))) {
793 gst_buffer_set_caps (frame, GST_PAD_CAPS (pad));
794 gst_object_unref (pad);
798 gst_buffer_replace (&play_bin->frame, frame);
802 post_missing_element_message (GstPlayBin * playbin, const gchar * name)
806 msg = gst_missing_element_message_new (GST_ELEMENT_CAST (playbin), name);
807 gst_element_post_message (GST_ELEMENT_CAST (playbin), msg);
810 /* make the element (bin) that contains the elements needed to perform
811 * video display. We connect a handoff signal to identity so that we
812 * can grab snapshots. Identity's sinkpad is ghosted to vbin.
814 * +-------------------------------------------------------------+
816 * | +--------+ +----------+ +----------+ +---------+ |
817 * | |identity| |colorspace| |videoscale| |videosink| |
818 * | +-sink src-sink src-sink src-sink | |
819 * | | +---+----+ +----------+ +----------+ +---------+ |
821 * +----------|--------------------------------------------------+
825 gen_video_element (GstPlayBin * play_bin)
832 GstElement *identity;
835 /* first see if we have it in the cache */
836 element = g_hash_table_lookup (play_bin->cache, "vbin");
837 if (element != NULL) {
841 if (play_bin->video_sink) {
842 sink = play_bin->video_sink;
844 sink = gst_element_factory_make ("autovideosink", "videosink");
846 sink = gst_element_factory_make ("xvimagesink", "videosink");
851 gst_object_ref (sink);
852 g_hash_table_insert (play_bin->cache, (gpointer) "video_sink", sink);
854 /* create a bin to hold objects, as we create them we add them to this bin so
855 * that when something goes wrong we only need to unref the bin */
856 element = gst_bin_new ("vbin");
857 gst_bin_add (GST_BIN_CAST (element), sink);
859 conv = gst_element_factory_make ("ffmpegcolorspace", "vconv");
862 gst_bin_add (GST_BIN_CAST (element), conv);
864 scale = gst_element_factory_make ("videoscale", "vscale");
867 gst_bin_add (GST_BIN_CAST (element), scale);
869 identity = gst_element_factory_make ("identity", "id");
870 g_object_set (identity, "silent", TRUE, NULL);
871 g_signal_connect (identity, "handoff", G_CALLBACK (handoff), play_bin);
872 gst_bin_add (GST_BIN_CAST (element), identity);
874 gst_element_link_pads (identity, "src", conv, "sink");
875 gst_element_link_pads (conv, "src", scale, "sink");
876 /* be more careful with the pad from the custom sink element, it might not
878 if (!gst_element_link_pads (scale, "src", sink, NULL))
881 pad = gst_element_get_static_pad (identity, "sink");
882 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
883 gst_object_unref (pad);
885 gst_element_set_state (element, GST_STATE_READY);
887 /* since we're gonna add it to a bin but don't want to lose it,
888 * we keep a reference. */
889 gst_object_ref (element);
890 g_hash_table_insert (play_bin->cache, (gpointer) "vbin", element);
897 post_missing_element_message (play_bin, "autovideosink");
898 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
899 (_("Both autovideosink and xvimagesink elements are missing.")),
905 post_missing_element_message (play_bin, "ffmpegcolorspace");
906 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
907 (_("Missing element '%s' - check your GStreamer installation."),
908 "ffmpegcolorspace"), (NULL));
909 gst_object_unref (element);
915 post_missing_element_message (play_bin, "videoscale");
916 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
917 (_("Missing element '%s' - check your GStreamer installation."),
918 "videoscale"), ("possibly a liboil version mismatch?"));
919 gst_object_unref (element);
924 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
925 (NULL), ("Failed to configure the video sink."));
926 gst_object_unref (element);
931 /* make an element for playback of video with subtitles embedded.
933 * +--------------------------------------------------+
934 * | tbin +-------------+ |
935 * | +-----+ | textoverlay | +------+ |
936 * | | csp | +--video_sink | | vbin | |
937 * video_sink-sink src+ +-text_sink src---sink | |
938 * | +-----+ | +-------------+ +------+ |
939 * text_sink-------------+ |
940 * +--------------------------------------------------+
942 * If there is no subtitle renderer this function will simply return the
943 * videosink without the text_sink pad.
946 add_text_element (GstPlayBin * play_bin, GstElement * vbin)
948 GstElement *element, *csp, *overlay;
952 overlay = gst_element_factory_make ("textoverlay", "overlay");
954 /* If no overlay return the video bin without subtitle support. */
959 element = gst_bin_new ("textbin");
961 /* Set some parameters */
962 g_object_set (G_OBJECT (overlay),
963 "halign", "center", "valign", "bottom", NULL);
964 if (play_bin->font_desc) {
965 g_object_set (G_OBJECT (overlay), "font-desc", play_bin->font_desc, NULL);
969 play_bin->textoverlay_element = GST_ELEMENT_CAST (gst_object_ref (overlay));
971 /* we know this will succeed, as the video bin already created one before */
972 csp = gst_element_factory_make ("ffmpegcolorspace", "subtitlecsp");
974 /* Add our elements */
975 gst_bin_add_many (GST_BIN_CAST (element), csp, overlay, vbin, NULL);
978 gst_element_link_pads (csp, "src", overlay, "video_sink");
979 gst_element_link_pads (overlay, "src", vbin, "sink");
981 /* Add ghost pads on the subtitle bin */
982 pad = gst_element_get_static_pad (overlay, "text_sink");
983 gst_element_add_pad (element, gst_ghost_pad_new ("text_sink", pad));
984 gst_object_unref (pad);
986 pad = gst_element_get_static_pad (csp, "sink");
987 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
988 gst_object_unref (pad);
990 /* If the vbin provides a subpicture sink pad, ghost it too */
991 pad = gst_element_get_static_pad (vbin, "subpicture_sink");
993 gst_element_add_pad (element, gst_ghost_pad_new ("subpicture_sink", pad));
994 gst_object_unref (pad);
997 /* Set state to READY */
998 gst_element_set_state (element, GST_STATE_READY);
1005 post_missing_element_message (play_bin, "textoverlay");
1006 GST_WARNING_OBJECT (play_bin,
1007 "No overlay (pango) element, subtitles disabled");
1012 /* make an element for rendering DVD subpictures onto output video
1014 * +---------------------------------------------+
1015 * | tbin +--------+ |
1016 * | +-----+ | | +------+ |
1017 * | | csp | src-videosink | | vbin | |
1018 * video_sink-sink src+ | src-sink | |
1019 * | +-----+ +subpicture | +------+ |
1020 * subpicture_pad--------+ +--------+ |
1021 * +---------- ----------------------------------+
1025 add_spu_element (GstPlayBin * play_bin, GstElement * vbin)
1027 GstElement *element, *csp, *overlay;
1030 /* DVD spu overlay */
1031 GST_DEBUG_OBJECT (play_bin, "Attempting to insert DVD SPU element");
1033 overlay = gst_element_factory_make ("dvdspu", "overlay");
1035 /* If no overlay return the video bin without subpicture support. */
1039 /* Create our bin */
1040 element = gst_bin_new ("spubin");
1043 play_bin->spu_element = GST_ELEMENT_CAST (gst_object_ref (overlay));
1045 /* we know this will succeed, as the video bin already created one before */
1046 csp = gst_element_factory_make ("ffmpegcolorspace", "spucsp");
1048 /* Add our elements */
1049 gst_bin_add_many (GST_BIN_CAST (element), csp, overlay, vbin, NULL);
1052 gst_element_link_pads (csp, "src", overlay, "video");
1053 gst_element_link_pads (overlay, "src", vbin, "sink");
1055 /* Add ghost pad on the subpicture bin so it looks like vbin */
1056 pad = gst_element_get_static_pad (csp, "sink");
1057 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1058 gst_object_unref (pad);
1060 pad = gst_element_get_static_pad (overlay, "subpicture");
1061 gst_element_add_pad (element, gst_ghost_pad_new ("subpicture_sink", pad));
1062 gst_object_unref (pad);
1064 /* Set state to READY */
1065 gst_element_set_state (element, GST_STATE_READY);
1072 post_missing_element_message (play_bin, "dvdspu");
1073 GST_WARNING_OBJECT (play_bin,
1074 "No DVD overlay (dvdspu) element. "
1075 "menu highlight/subtitles unavailable");
1080 /* make the element (bin) that contains the elements needed to perform
1083 * +-------------------------------------------------------------+
1085 * | +---------+ +----------+ +---------+ +---------+ |
1086 * | |audioconv| |audioscale| | volume | |audiosink| |
1087 * | +-sink src-sink src-sink src-sink | |
1088 * | | +---------+ +----------+ +---------+ +---------+ |
1090 * +-------------------------------------------------------------+
1093 gen_audio_element (GstPlayBin * play_bin)
1096 GstElement *element;
1103 element = g_hash_table_lookup (play_bin->cache, "abin");
1104 if (element != NULL)
1107 if (play_bin->audio_sink) {
1108 sink = play_bin->audio_sink;
1110 sink = gst_element_factory_make ("autoaudiosink", "audiosink");
1112 sink = gst_element_factory_make ("alsasink", "audiosink");
1117 play_bin->audio_sink = GST_ELEMENT_CAST (gst_object_ref (sink));
1120 gst_object_ref (sink);
1121 g_hash_table_insert (play_bin->cache, (gpointer) "audio_sink", sink);
1123 element = gst_bin_new ("abin");
1124 gst_bin_add (GST_BIN_CAST (element), sink);
1126 conv = gst_element_factory_make ("audioconvert", "aconv");
1128 goto no_audioconvert;
1129 gst_bin_add (GST_BIN_CAST (element), conv);
1131 scale = gst_element_factory_make ("audioresample", "aresample");
1133 goto no_audioresample;
1134 gst_bin_add (GST_BIN_CAST (element), scale);
1136 volume = gst_element_factory_make ("volume", "volume");
1139 g_object_set (G_OBJECT (volume), "volume", play_bin->volume, NULL);
1140 play_bin->volume_element = GST_ELEMENT_CAST (gst_object_ref (volume));
1141 gst_bin_add (GST_BIN_CAST (element), volume);
1143 res = gst_element_link_pads (conv, "src", scale, "sink");
1144 res &= gst_element_link_pads (scale, "src", volume, "sink");
1145 res &= gst_element_link_pads (volume, "src", sink, NULL);
1149 pad = gst_element_get_static_pad (conv, "sink");
1150 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1151 gst_object_unref (pad);
1153 gst_element_set_state (element, GST_STATE_READY);
1155 /* since we're gonna add it to a bin but don't want to lose it,
1156 * we keep a reference. */
1157 gst_object_ref (element);
1158 g_hash_table_insert (play_bin->cache, (gpointer) "abin", element);
1165 post_missing_element_message (play_bin, "autoaudiosink");
1166 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1167 (_("Both autoaudiosink and alsasink elements are missing.")), (NULL));
1172 post_missing_element_message (play_bin, "audioconvert");
1173 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1174 (_("Missing element '%s' - check your GStreamer installation."),
1175 "audioconvert"), ("possibly a liboil version mismatch?"));
1176 gst_object_unref (element);
1181 post_missing_element_message (play_bin, "audioresample");
1182 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1183 (_("Missing element '%s' - check your GStreamer installation."),
1184 "audioresample"), ("possibly a liboil version mismatch?"));
1185 gst_object_unref (element);
1190 post_missing_element_message (play_bin, "volume");
1191 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1192 (_("Missing element '%s' - check your GStreamer installation."),
1193 "volume"), ("possibly a liboil version mismatch?"));
1194 gst_object_unref (element);
1199 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
1200 (NULL), ("Failed to configure the audio sink."));
1201 gst_object_unref (element);
1206 /* make the element (bin) that contains the elements needed to perform
1207 * visualisation ouput. The idea is to split the audio using tee, then
1208 * sending the output to the regular audio bin and the other output to
1209 * the vis plugin that transforms it into a video that is rendered with the
1210 * normal video bin. The video and audio bins are run in threads to make sure
1211 * they don't block eachother.
1213 * +-----------------------------------------------------------------------+
1215 * | +------+ +--------+ +----------------+ |
1216 * | | tee | | aqueue | | abin ... | |
1217 * | +-sink src-sink src-sink | |
1218 * | | | | +--------+ +----------------+ |
1220 * | | | | +------+ +------------+ +------+ +-----------+ |
1221 * | | | | |vqueue| | audioconv | | vis | | vbin ... | |
1222 * | | | src-sink src-sink + samp src-sink src-sink | |
1223 * | | | | +------+ +------------+ +------+ +-----------+ |
1227 * +-----------------------------------------------------------------------+
1230 gen_vis_element (GstPlayBin * play_bin)
1233 GstElement *element;
1241 GstElement *vqueue, *aqueue;
1244 /* errors are already posted when these fail. */
1245 asink = gen_audio_element (play_bin);
1248 vsink = gen_video_element (play_bin);
1250 gst_object_unref (asink);
1254 element = gst_bin_new ("visbin");
1255 tee = gst_element_factory_make ("tee", "tee");
1257 vqueue = gst_element_factory_make ("queue", "vqueue");
1258 aqueue = gst_element_factory_make ("queue", "aqueue");
1260 gst_bin_add (GST_BIN_CAST (element), asink);
1261 gst_bin_add (GST_BIN_CAST (element), vqueue);
1262 gst_bin_add (GST_BIN_CAST (element), aqueue);
1263 gst_bin_add (GST_BIN_CAST (element), vsink);
1264 gst_bin_add (GST_BIN_CAST (element), tee);
1266 conv = gst_element_factory_make ("audioconvert", "aconv");
1268 goto no_audioconvert;
1269 gst_bin_add (GST_BIN_CAST (element), conv);
1271 resamp = gst_element_factory_make ("audioresample", "aresamp");
1273 goto no_audioresample;
1274 gst_bin_add (GST_BIN_CAST (element), resamp);
1276 conv2 = gst_element_factory_make ("audioconvert", "aconv2");
1278 goto no_audioconvert;
1279 gst_bin_add (GST_BIN_CAST (element), conv2);
1281 if (play_bin->visualisation) {
1282 gst_object_ref (play_bin->visualisation);
1283 vis = play_bin->visualisation;
1285 vis = gst_element_factory_make ("goom", "vis");
1289 gst_bin_add (GST_BIN_CAST (element), vis);
1291 res = gst_element_link_pads (vqueue, "src", conv, "sink");
1292 res &= gst_element_link_pads (conv, "src", resamp, "sink");
1293 res &= gst_element_link_pads (resamp, "src", conv2, "sink");
1294 res &= gst_element_link_pads (conv2, "src", vis, "sink");
1295 res &= gst_element_link_pads (vis, "src", vsink, "sink");
1299 pad = gst_element_get_static_pad (aqueue, "sink");
1300 rpad = gst_element_get_request_pad (tee, "src%d");
1301 gst_pad_link (rpad, pad);
1302 gst_object_unref (rpad);
1303 gst_object_unref (pad);
1304 gst_element_link_pads (aqueue, "src", asink, "sink");
1306 pad = gst_element_get_static_pad (vqueue, "sink");
1307 rpad = gst_element_get_request_pad (tee, "src%d");
1308 gst_pad_link (rpad, pad);
1309 gst_object_unref (rpad);
1310 gst_object_unref (pad);
1312 pad = gst_element_get_static_pad (tee, "sink");
1313 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1314 gst_object_unref (pad);
1321 post_missing_element_message (play_bin, "audioconvert");
1322 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1323 (_("Missing element '%s' - check your GStreamer installation."),
1324 "audioconvert"), ("possibly a liboil version mismatch?"));
1325 gst_object_unref (element);
1330 post_missing_element_message (play_bin, "audioresample");
1331 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1332 (_("Missing element '%s' - check your GStreamer installation."),
1333 "audioresample"), (NULL));
1334 gst_object_unref (element);
1339 post_missing_element_message (play_bin, "goom");
1340 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1341 (_("Missing element '%s' - check your GStreamer installation."),
1343 gst_object_unref (element);
1348 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
1349 (NULL), ("Failed to configure the visualisation element."));
1350 gst_object_unref (element);
1355 /* get rid of all installed sinks */
1357 remove_sinks (GstPlayBin * play_bin)
1361 GstElement *element;
1364 if (play_bin->cache == NULL)
1367 GST_DEBUG ("removesinks");
1368 element = g_hash_table_lookup (play_bin->cache, "abin");
1369 if (element != NULL) {
1370 parent = gst_element_get_parent (element);
1371 if (parent != NULL) {
1372 /* we remove the element from the parent so that
1373 * there is no unwanted state change when the parent
1375 play_bin->sinks = g_list_remove (play_bin->sinks, element);
1376 gst_element_set_state (element, GST_STATE_NULL);
1377 gst_bin_remove (GST_BIN_CAST (parent), element);
1378 gst_object_unref (parent);
1380 pad = gst_element_get_static_pad (element, "sink");
1382 peer = gst_pad_get_peer (pad);
1384 gst_pad_unlink (peer, pad);
1385 gst_object_unref (peer);
1387 gst_object_unref (pad);
1390 element = g_hash_table_lookup (play_bin->cache, "vbin");
1391 if (element != NULL) {
1392 parent = gst_element_get_parent (element);
1393 if (parent != NULL) {
1394 play_bin->sinks = g_list_remove (play_bin->sinks, element);
1395 gst_element_set_state (element, GST_STATE_NULL);
1396 gst_bin_remove (GST_BIN_CAST (parent), element);
1397 gst_object_unref (parent);
1399 pad = gst_element_get_static_pad (element, "sink");
1401 peer = gst_pad_get_peer (pad);
1403 gst_pad_unlink (peer, pad);
1404 gst_object_unref (peer);
1406 gst_object_unref (pad);
1410 for (sinks = play_bin->sinks; sinks; sinks = g_list_next (sinks)) {
1411 GstElement *element = GST_ELEMENT_CAST (sinks->data);
1415 pad = gst_element_get_static_pad (element, "sink");
1417 GST_LOG ("removing sink %p", element);
1419 peer = gst_pad_get_peer (pad);
1421 gst_pad_unlink (peer, pad);
1422 gst_object_unref (peer);
1424 gst_object_unref (pad);
1426 gst_element_set_state (element, GST_STATE_NULL);
1427 gst_bin_remove (GST_BIN_CAST (play_bin), element);
1429 g_list_free (play_bin->sinks);
1430 play_bin->sinks = NULL;
1432 if (play_bin->visualisation) {
1433 GstElement *vis_bin;
1436 GST_ELEMENT_CAST (gst_element_get_parent (play_bin->visualisation));
1438 gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
1441 gst_bin_remove (GST_BIN_CAST (vis_bin), play_bin->visualisation);
1442 gst_object_unref (vis_bin);
1446 if (play_bin->frame) {
1447 gst_buffer_unref (play_bin->frame);
1448 play_bin->frame = NULL;
1451 if (play_bin->textoverlay_element) {
1452 gst_object_unref (play_bin->textoverlay_element);
1453 play_bin->textoverlay_element = NULL;
1457 /* loop over the streams and set up the pipeline to play this
1458 * media file. First we count the number of audio and video streams.
1459 * If there is no video stream but there exists an audio stream,
1460 * we install a visualisation pipeline.
1462 * Also make sure to only connect the first audio and video pad. FIXME
1463 * this should eventually be handled with a tuner interface so that
1464 * one can switch the streams.
1466 * This function takes ownership of @sink.*
1469 add_sink (GstPlayBin * play_bin, GstElement * sink, GstPad * srcpad,
1470 GstPad * subtitle_pad)
1473 GstPadLinkReturn linkres;
1475 GstStateChangeReturn stateret;
1478 g_return_val_if_fail (sink != NULL, FALSE);
1480 state = GST_STATE_PAUSED;
1482 /* this is only for debugging */
1483 parent = gst_pad_get_parent_element (srcpad);
1485 GST_DEBUG ("Adding sink %" GST_PTR_FORMAT
1486 " with state %d (parent: %d, peer: %d)", sink,
1487 GST_STATE (sink), GST_STATE (play_bin), GST_STATE (parent));
1488 gst_object_unref (parent);
1490 gst_bin_add (GST_BIN_CAST (play_bin), sink);
1492 /* bring it to the required state so we can link to the peer without
1493 * breaking the flow */
1494 stateret = gst_element_set_state (sink, state);
1495 if (stateret == GST_STATE_CHANGE_FAILURE)
1498 /* we found a sink for this stream, now try to install it */
1499 sinkpad = gst_element_get_static_pad (sink, "sink");
1500 linkres = gst_pad_link (srcpad, sinkpad);
1501 gst_object_unref (sinkpad);
1503 /* try to link the pad of the sink to the stream */
1504 if (GST_PAD_LINK_FAILED (linkres))
1507 if (GST_IS_PAD (subtitle_pad)) {
1508 sinkpad = gst_element_get_static_pad (sink, "text_sink");
1509 linkres = gst_pad_link (subtitle_pad, sinkpad);
1510 gst_object_unref (sinkpad);
1513 /* try to link the subtitle pad of the sink to the stream, this is not
1515 if (GST_PAD_LINK_FAILED (linkres))
1516 goto subtitle_failed;
1519 /* we got the sink succesfully linked, now keep the sink
1520 * in our internal list */
1521 play_bin->sinks = g_list_prepend (play_bin->sinks, sink);
1528 gst_element_set_state (sink, GST_STATE_NULL);
1529 gst_bin_remove (GST_BIN_CAST (play_bin), sink);
1530 GST_DEBUG_OBJECT (play_bin, "state change failure when adding sink");
1538 /* could not link this stream */
1539 caps = gst_pad_get_caps (srcpad);
1540 capsstr = gst_caps_to_string (caps);
1541 g_warning ("could not link %s: %d", capsstr, linkres);
1542 GST_DEBUG_OBJECT (play_bin,
1543 "link failed when adding sink, caps %s, reason %d", capsstr, linkres);
1545 gst_caps_unref (caps);
1547 gst_element_set_state (sink, GST_STATE_NULL);
1548 gst_bin_remove (GST_BIN_CAST (play_bin), sink);
1555 /* could not link this stream */
1556 caps = gst_pad_get_caps (subtitle_pad);
1557 GST_WARNING_OBJECT (play_bin, "subtitle link failed when adding sink, "
1558 "caps = %" GST_PTR_FORMAT ", reason %d", caps, linkres);
1559 gst_caps_unref (caps);
1567 dummy_blocked_cb (GstPad * pad, gboolean blocked, gpointer user_data)
1572 setup_sinks (GstPlayBaseBin * play_base_bin, GstPlayBaseGroup * group)
1574 GstPlayBin *play_bin = GST_PLAY_BIN (play_base_bin);
1575 gboolean have_video = FALSE;
1576 gboolean need_vis = FALSE;
1577 gboolean need_text = FALSE;
1578 gboolean need_spu = FALSE;
1579 GstPad *textsrcpad = NULL, *pad = NULL, *origtextsrcpad = NULL;
1581 gboolean res = TRUE;
1583 /* get rid of existing sinks */
1584 if (play_bin->sinks) {
1585 remove_sinks (play_bin);
1587 GST_DEBUG_OBJECT (play_base_bin, "setupsinks");
1589 /* find out what to do */
1590 have_video = (group->type[GST_STREAM_TYPE_VIDEO - 1].npads > 0);
1591 need_spu = (group->type[GST_STREAM_TYPE_SUBPICTURE - 1].npads != 0);
1593 if (have_video && group->type[GST_STREAM_TYPE_TEXT - 1].npads > 0) {
1595 } else if (!have_video &&
1596 group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0 &&
1597 play_bin->visualisation != NULL) {
1601 /* now actually connect everything */
1604 if (group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0) {
1606 sink = gen_vis_element (play_bin);
1608 sink = gen_audio_element (play_bin);
1614 gst_element_get_static_pad (group->type[GST_STREAM_TYPE_AUDIO -
1616 res = add_sink (play_bin, sink, pad, NULL);
1617 gst_object_unref (pad);
1622 /* Create the video rendering bin, error is posted when this fails. */
1623 sink = gen_video_element (play_bin);
1627 sink = add_spu_element (play_bin, sink);
1631 GstObject *parent = NULL, *grandparent = NULL;
1632 GstPad *ghost = NULL;
1634 /* Add the subtitle overlay element into the video sink */
1635 sink = add_text_element (play_bin, sink);
1637 /* Link the incoming subtitle stream into the output bin */
1639 gst_element_get_static_pad (group->type[GST_STREAM_TYPE_TEXT -
1642 /* This pad is from subtitle-bin, we need to create a ghost pad to have
1643 common grandparents */
1644 parent = gst_object_get_parent (GST_OBJECT_CAST (textsrcpad));
1646 GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no parent !");
1647 gst_object_unref (textsrcpad);
1652 grandparent = gst_object_get_parent (parent);
1654 GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no grandparent !");
1655 gst_object_unref (parent);
1656 gst_object_unref (textsrcpad);
1661 /* We ghost the pad on subtitle_bin only, if the text pad is from the
1662 media demuxer we keep it as it is */
1663 if (!GST_IS_PLAY_BIN (grandparent)) {
1664 GST_DEBUG_OBJECT (textsrcpad, "this subtitle pad is from a subtitle "
1665 "file, ghosting to a suitable hierarchy");
1666 /* Block the pad first, because as soon as we add a ghostpad, the queue
1667 * will try and start pushing */
1668 gst_pad_set_blocked_async (textsrcpad, TRUE, dummy_blocked_cb, NULL);
1669 origtextsrcpad = gst_object_ref (textsrcpad);
1671 ghost = gst_ghost_pad_new ("text_src", textsrcpad);
1672 if (!GST_IS_PAD (ghost)) {
1673 GST_WARNING_OBJECT (textsrcpad, "failed creating ghost pad for "
1675 gst_object_unref (parent);
1676 gst_object_unref (grandparent);
1677 gst_object_unref (textsrcpad);
1682 gst_pad_set_active (ghost, TRUE);
1683 if (gst_element_add_pad (GST_ELEMENT_CAST (grandparent), ghost)) {
1684 gst_object_unref (textsrcpad);
1685 textsrcpad = gst_object_ref (ghost);
1687 GST_WARNING_OBJECT (ghost, "failed adding ghost pad on subtitle-bin");
1688 gst_pad_set_active (ghost, FALSE);
1689 gst_object_unref (ghost);
1690 gst_object_unref (textsrcpad);
1694 GST_DEBUG_OBJECT (textsrcpad, "this subtitle pad is from the demuxer "
1695 "no changes to hierarchy needed");
1698 gst_object_unref (parent);
1699 gst_object_unref (grandparent);
1705 gst_element_get_static_pad (group->type[GST_STREAM_TYPE_VIDEO -
1707 res = add_sink (play_bin, sink, pad, textsrcpad);
1708 gst_object_unref (pad);
1710 gst_object_unref (textsrcpad);
1711 if (origtextsrcpad) {
1712 gst_pad_set_blocked_async (origtextsrcpad, FALSE, dummy_blocked_cb, NULL);
1713 gst_object_unref (origtextsrcpad);
1716 /* If we have a DVD subpicture stream, link it to the SPU now */
1719 GstPad *spu_sink_pad;
1722 gst_element_get_static_pad (group->type[GST_STREAM_TYPE_SUBPICTURE
1723 - 1].preroll, "src");
1724 spu_sink_pad = gst_element_get_static_pad (sink, "subpicture_sink");
1725 if (subpic_pad && spu_sink_pad) {
1726 GST_LOG_OBJECT (play_bin, "Linking DVD subpicture stream onto SPU");
1727 gst_pad_set_blocked_async (subpic_pad, TRUE, dummy_blocked_cb, NULL);
1728 if (gst_pad_link (subpic_pad, spu_sink_pad) != GST_PAD_LINK_OK) {
1729 GST_WARNING_OBJECT (play_bin,
1730 "Failed to link DVD subpicture stream onto SPU");
1732 gst_pad_set_blocked_async (subpic_pad, FALSE, dummy_blocked_cb, NULL);
1735 gst_object_unref (subpic_pad);
1737 gst_object_unref (spu_sink_pad);
1741 /* remove the sinks now, pipeline get_state will now wait for the
1742 * sinks to preroll */
1743 if (play_bin->fakesink) {
1744 gst_element_set_state (play_bin->fakesink, GST_STATE_NULL);
1745 gst_bin_remove (GST_BIN_CAST (play_bin), play_bin->fakesink);
1746 play_bin->fakesink = NULL;
1753 playbin_set_subtitles_visible (GstPlayBaseBin * play_base_bin, gboolean visible)
1755 GstPlayBin *playbin = GST_PLAY_BIN (play_base_bin);
1757 /* we're ignoring the case of someone setting the 'current-text' property
1758 * before textoverlay is set up (which is probably okay, since playbasebin
1759 * will just select the first subtitle stream as active stream regardless) */
1760 if (playbin->textoverlay_element != NULL) {
1761 GST_LOG_OBJECT (playbin, "setting subtitle visibility to %d", visible);
1762 g_object_set (playbin->textoverlay_element, "silent", !visible, NULL);
1767 playbin_set_audio_mute (GstPlayBaseBin * play_base_bin, gboolean mute)
1769 GstPlayBin *playbin = GST_PLAY_BIN (play_base_bin);
1771 if (playbin->volume_element) {
1772 g_object_set (G_OBJECT (playbin->volume_element), "mute", mute, NULL);
1776 /* Send an event to our sinks until one of them works; don't then send to the
1777 * remaining sinks (unlike GstBin)
1780 gst_play_bin_send_event_to_sink (GstPlayBin * play_bin, GstEvent * event)
1782 GList *sinks = play_bin->sinks;
1783 gboolean res = TRUE;
1786 GstElement *sink = GST_ELEMENT_CAST (sinks->data);
1788 gst_event_ref (event);
1789 if ((res = gst_element_send_event (sink, event))) {
1790 GST_DEBUG_OBJECT (play_bin,
1791 "Sent event succesfully to sink %" GST_PTR_FORMAT, sink);
1794 GST_DEBUG_OBJECT (play_bin,
1795 "Event failed when sent to sink %" GST_PTR_FORMAT, sink);
1797 sinks = g_list_next (sinks);
1800 gst_event_unref (event);
1805 /* We only want to send the event to a single sink (overriding GstBin's
1806 * behaviour), but we want to keep GstPipeline's behaviour - wrapping seek
1807 * events appropriately. So, this is a messy duplication of code. */
1809 gst_play_bin_send_event (GstElement * element, GstEvent * event)
1811 gboolean res = FALSE;
1812 GstEventType event_type = GST_EVENT_TYPE (event);
1814 switch (event_type) {
1815 case GST_EVENT_SEEK:
1816 GST_DEBUG_OBJECT (element, "Sending seek event to a sink");
1817 res = gst_play_bin_send_event_to_sink (GST_PLAY_BIN (element), event);
1820 res = parent_class->send_event (element, event);
1828 value_list_append_structure_list (GValue * list_val, GstStructure ** first,
1829 GList * structure_list)
1833 for (l = structure_list; l != NULL; l = l->next) {
1834 GValue val = { 0, };
1837 *first = gst_structure_copy ((GstStructure *) l->data);
1839 g_value_init (&val, GST_TYPE_STRUCTURE);
1840 g_value_take_boxed (&val, gst_structure_copy ((GstStructure *) l->data));
1841 gst_value_list_append_value (list_val, &val);
1842 g_value_unset (&val);
1846 /* if it's a redirect message with multiple redirect locations we might
1847 * want to pick a different 'best' location depending on the required
1848 * bitrates and the connection speed */
1850 gst_play_bin_handle_redirect_message (GstPlayBin * playbin, GstMessage * msg)
1852 const GValue *locations_list, *location_val;
1853 GstMessage *new_msg;
1854 GstStructure *new_structure = NULL;
1855 GList *l_good = NULL, *l_neutral = NULL, *l_bad = NULL;
1856 GValue new_list = { 0, };
1858 GstPlayBaseBin *playbasebin = GST_PLAY_BASE_BIN (playbin);
1859 guint connection_speed = playbasebin->connection_speed;
1861 GST_DEBUG_OBJECT (playbin, "redirect message: %" GST_PTR_FORMAT, msg);
1862 GST_DEBUG_OBJECT (playbin, "connection speed: %u", connection_speed);
1864 if (connection_speed == 0 || msg->structure == NULL)
1867 locations_list = gst_structure_get_value (msg->structure, "locations");
1868 if (locations_list == NULL)
1871 size = gst_value_list_get_size (locations_list);
1875 /* maintain existing order as much as possible, just sort references
1876 * with too high a bitrate to the end (the assumption being that if
1877 * bitrates are given they are given for all interesting streams and
1878 * that the you-need-at-least-version-xyz redirect has the same bitrate
1879 * as the lowest referenced redirect alternative) */
1880 for (i = 0; i < size; ++i) {
1881 const GstStructure *s;
1884 location_val = gst_value_list_get_value (locations_list, i);
1885 s = (const GstStructure *) g_value_get_boxed (location_val);
1886 if (!gst_structure_get_int (s, "minimum-bitrate", &bitrate) || bitrate <= 0) {
1887 GST_DEBUG_OBJECT (playbin, "no bitrate: %" GST_PTR_FORMAT, s);
1888 l_neutral = g_list_append (l_neutral, (gpointer) s);
1889 } else if (bitrate > connection_speed) {
1890 GST_DEBUG_OBJECT (playbin, "bitrate too high: %" GST_PTR_FORMAT, s);
1891 l_bad = g_list_append (l_bad, (gpointer) s);
1892 } else if (bitrate <= connection_speed) {
1893 GST_DEBUG_OBJECT (playbin, "bitrate OK: %" GST_PTR_FORMAT, s);
1894 l_good = g_list_append (l_good, (gpointer) s);
1898 g_value_init (&new_list, GST_TYPE_LIST);
1899 value_list_append_structure_list (&new_list, &new_structure, l_good);
1900 value_list_append_structure_list (&new_list, &new_structure, l_neutral);
1901 value_list_append_structure_list (&new_list, &new_structure, l_bad);
1902 gst_structure_set_value (new_structure, "locations", &new_list);
1903 g_value_unset (&new_list);
1905 g_list_free (l_good);
1906 g_list_free (l_neutral);
1907 g_list_free (l_bad);
1909 new_msg = gst_message_new_element (msg->src, new_structure);
1910 gst_message_unref (msg);
1912 GST_DEBUG_OBJECT (playbin, "new redirect message: %" GST_PTR_FORMAT, new_msg);
1917 gst_play_bin_handle_message (GstBin * bin, GstMessage * msg)
1919 if (GST_MESSAGE_TYPE (msg) == GST_MESSAGE_ELEMENT && msg->structure != NULL
1920 && gst_structure_has_name (msg->structure, "redirect")) {
1921 msg = gst_play_bin_handle_redirect_message (GST_PLAY_BIN (bin), msg);
1924 GST_BIN_CLASS (parent_class)->handle_message (bin, msg);
1927 static GstStateChangeReturn
1928 gst_play_bin_change_state (GstElement * element, GstStateChange transition)
1930 GstStateChangeReturn ret;
1931 GstPlayBin *play_bin;
1933 play_bin = GST_PLAY_BIN (element);
1936 switch (transition) {
1937 case GST_STATE_CHANGE_READY_TO_PAUSED:
1938 /* this really is the easiest way to make the state change return
1939 * ASYNC until we added the sinks */
1940 if (!play_bin->fakesink) {
1941 play_bin->fakesink = gst_element_factory_make ("fakesink", "test");
1942 gst_bin_add (GST_BIN_CAST (play_bin), play_bin->fakesink);
1949 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1950 if (ret == GST_STATE_CHANGE_FAILURE)
1953 switch (transition) {
1954 case GST_STATE_CHANGE_READY_TO_PAUSED:
1955 /* remember us being a live pipeline */
1956 play_bin->is_live = (ret == GST_STATE_CHANGE_NO_PREROLL);
1957 GST_DEBUG_OBJECT (play_bin, "is live: %d", play_bin->is_live);
1959 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1960 /* FIXME Release audio device when we implement that */
1962 case GST_STATE_CHANGE_PAUSED_TO_READY:
1963 case GST_STATE_CHANGE_READY_TO_NULL:
1964 /* remove sinks we added */
1965 remove_sinks (play_bin);
1966 /* and there might be a fakesink we need to clean up now */
1967 if (play_bin->fakesink) {
1968 gst_element_set_state (play_bin->fakesink, GST_STATE_NULL);
1969 gst_bin_remove (GST_BIN_CAST (play_bin), play_bin->fakesink);
1970 play_bin->fakesink = NULL;
1981 gst_play_bin_plugin_init (GstPlugin * plugin)
1983 GST_DEBUG_CATEGORY_INIT (gst_play_bin_debug, "playbin", 0, "play bin");
1985 return gst_element_register (plugin, "playbin", GST_RANK_NONE,