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
263 #define CONNECTION_SPEED_DEFAULT 0
265 typedef struct _GstPlayBin GstPlayBin;
266 typedef struct _GstPlayBinClass GstPlayBinClass;
270 GstPlayBaseBin parent;
272 /* the configurable elements */
273 GstElement *fakesink;
274 GstElement *audio_sink;
275 GstElement *video_sink;
276 GstElement *visualisation;
277 GstElement *pending_visualisation;
278 GstElement *volume_element;
279 GstElement *textoverlay_element;
282 /* these are the currently active sinks */
285 /* the last captured frame for snapshots */
288 /* our cache for the sinks */
291 /* font description */
294 /* connection speed in bits/sec (0 = unknown) */
295 guint connection_speed;
297 /* indication if the pipeline is live */
301 struct _GstPlayBinClass
303 GstPlayBaseBinClass parent_class;
325 static void gst_play_bin_class_init (GstPlayBinClass * klass);
326 static void gst_play_bin_init (GstPlayBin * play_bin);
327 static void gst_play_bin_dispose (GObject * object);
329 static gboolean setup_sinks (GstPlayBaseBin * play_base_bin,
330 GstPlayBaseGroup * group);
331 static void remove_sinks (GstPlayBin * play_bin);
333 static void gst_play_bin_set_property (GObject * object, guint prop_id,
334 const GValue * value, GParamSpec * spec);
335 static void gst_play_bin_get_property (GObject * object, guint prop_id,
336 GValue * value, GParamSpec * spec);
338 static gboolean gst_play_bin_send_event (GstElement * element,
340 static gboolean gst_play_bin_set_clock_func (GstElement * element,
342 static GstStateChangeReturn gst_play_bin_change_state (GstElement * element,
343 GstStateChange transition);
345 static void gst_play_bin_handle_message (GstBin * bin, GstMessage * message);
347 static GstElementClass *parent_class;
349 //static guint gst_play_bin_signals[LAST_SIGNAL] = { 0 };
351 static const GstElementDetails gst_play_bin_details =
352 GST_ELEMENT_DETAILS ("Player Bin",
353 "Generic/Bin/Player",
354 "Autoplug and play media from an uri",
355 "Wim Taymans <wim@fluendo.com>");
358 gst_play_bin_get_type (void)
360 static GType gst_play_bin_type = 0;
362 if (!gst_play_bin_type) {
363 static const GTypeInfo gst_play_bin_info = {
364 sizeof (GstPlayBinClass),
367 (GClassInitFunc) gst_play_bin_class_init,
372 (GInstanceInitFunc) gst_play_bin_init,
376 gst_play_bin_type = g_type_register_static (GST_TYPE_PLAY_BASE_BIN,
377 "GstPlayBin", &gst_play_bin_info, 0);
380 return gst_play_bin_type;
384 gst_play_bin_class_init (GstPlayBinClass * klass)
386 GObjectClass *gobject_klass;
387 GstElementClass *gstelement_klass;
388 GstBinClass *gstbin_klass;
389 GstPlayBaseBinClass *playbasebin_klass;
391 gobject_klass = (GObjectClass *) klass;
392 gstelement_klass = (GstElementClass *) klass;
393 gstbin_klass = (GstBinClass *) klass;
394 playbasebin_klass = (GstPlayBaseBinClass *) klass;
396 parent_class = g_type_class_peek_parent (klass);
398 gobject_klass->set_property = gst_play_bin_set_property;
399 gobject_klass->get_property = gst_play_bin_get_property;
401 g_object_class_install_property (gobject_klass, ARG_VIDEO_SINK,
402 g_param_spec_object ("video-sink", "Video Sink",
403 "the video output element to use (NULL = default sink)",
404 GST_TYPE_ELEMENT, G_PARAM_READWRITE));
405 g_object_class_install_property (gobject_klass, ARG_AUDIO_SINK,
406 g_param_spec_object ("audio-sink", "Audio Sink",
407 "the audio output element to use (NULL = default sink)",
408 GST_TYPE_ELEMENT, G_PARAM_READWRITE));
409 g_object_class_install_property (gobject_klass, ARG_VIS_PLUGIN,
410 g_param_spec_object ("vis-plugin", "Vis plugin",
411 "the visualization element to use (NULL = none)",
412 GST_TYPE_ELEMENT, G_PARAM_READWRITE));
413 g_object_class_install_property (gobject_klass, ARG_VOLUME,
414 g_param_spec_double ("volume", "volume", "volume",
415 0.0, VOLUME_MAX_DOUBLE, 1.0, G_PARAM_READWRITE));
416 g_object_class_install_property (gobject_klass, ARG_FRAME,
417 gst_param_spec_mini_object ("frame", "Frame",
418 "The last frame (NULL = no video available)",
419 GST_TYPE_BUFFER, G_PARAM_READABLE));
420 g_object_class_install_property (gobject_klass, ARG_FONT_DESC,
421 g_param_spec_string ("subtitle-font-desc",
422 "Subtitle font description",
423 "Pango font description of font "
424 "to be used for subtitle rendering", NULL, G_PARAM_WRITABLE));
426 * GstPlayBin::connection-speed
428 * Network connection speed in kbps (0 = unknown)
432 g_object_class_install_property (gobject_klass, ARG_CONNECTION_SPEED,
433 g_param_spec_uint ("connection-speed", "Connection Speed",
434 "Network connection speed in kbps (0 = unknown)",
435 0, G_MAXUINT, CONNECTION_SPEED_DEFAULT, G_PARAM_READWRITE));
437 gobject_klass->dispose = GST_DEBUG_FUNCPTR (gst_play_bin_dispose);
439 gst_element_class_set_details (gstelement_klass, &gst_play_bin_details);
441 gstelement_klass->change_state =
442 GST_DEBUG_FUNCPTR (gst_play_bin_change_state);
443 gstelement_klass->send_event = GST_DEBUG_FUNCPTR (gst_play_bin_send_event);
444 gstelement_klass->set_clock = GST_DEBUG_FUNCPTR (gst_play_bin_set_clock_func);
446 gstbin_klass->handle_message =
447 GST_DEBUG_FUNCPTR (gst_play_bin_handle_message);
449 playbasebin_klass->setup_output_pads = setup_sinks;
453 gst_play_bin_init (GstPlayBin * play_bin)
455 play_bin->video_sink = NULL;
456 play_bin->audio_sink = NULL;
457 play_bin->visualisation = NULL;
458 play_bin->pending_visualisation = NULL;
459 play_bin->volume_element = NULL;
460 play_bin->textoverlay_element = NULL;
461 play_bin->volume = 1.0;
462 play_bin->sinks = NULL;
463 play_bin->frame = NULL;
464 play_bin->font_desc = NULL;
465 play_bin->cache = g_hash_table_new_full (g_str_hash, g_str_equal,
466 NULL, (GDestroyNotify) gst_object_unref);
470 gst_play_bin_dispose (GObject * object)
472 GstPlayBin *play_bin;
474 play_bin = GST_PLAY_BIN (object);
476 if (play_bin->cache != NULL) {
477 remove_sinks (play_bin);
478 g_hash_table_destroy (play_bin->cache);
479 play_bin->cache = NULL;
482 if (play_bin->audio_sink != NULL) {
483 gst_element_set_state (play_bin->audio_sink, GST_STATE_NULL);
484 gst_object_unref (play_bin->audio_sink);
485 play_bin->audio_sink = NULL;
487 if (play_bin->video_sink != NULL) {
488 gst_element_set_state (play_bin->video_sink, GST_STATE_NULL);
489 gst_object_unref (play_bin->video_sink);
490 play_bin->video_sink = NULL;
492 if (play_bin->visualisation != NULL) {
493 gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
494 gst_object_unref (play_bin->visualisation);
495 play_bin->visualisation = NULL;
497 if (play_bin->pending_visualisation != NULL) {
498 gst_element_set_state (play_bin->pending_visualisation, GST_STATE_NULL);
499 gst_object_unref (play_bin->pending_visualisation);
500 play_bin->pending_visualisation = NULL;
502 if (play_bin->textoverlay_element != NULL) {
503 gst_object_unref (play_bin->textoverlay_element);
504 play_bin->textoverlay_element = NULL;
506 g_free (play_bin->font_desc);
507 play_bin->font_desc = NULL;
509 G_OBJECT_CLASS (parent_class)->dispose (object);
513 gst_play_bin_vis_unblocked (GstPad * tee_pad, gboolean blocked,
516 GstPlayBin *play_bin = GST_PLAY_BIN (user_data);
518 if (play_bin->pending_visualisation)
519 gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
524 gst_play_bin_vis_blocked (GstPad * tee_pad, gboolean blocked,
527 GstPlayBin *play_bin = GST_PLAY_BIN (user_data);
528 GstBin *vis_bin = NULL;
529 GstPad *vis_sink_pad = NULL, *vis_src_pad = NULL, *vqueue_pad = NULL;
531 GstElement *pending_visualisation;
533 GST_OBJECT_LOCK (play_bin);
534 pending_visualisation = play_bin->pending_visualisation;
535 play_bin->pending_visualisation = NULL;
536 GST_OBJECT_UNLOCK (play_bin);
538 /* We want to disable visualisation */
539 if (!GST_IS_ELEMENT (pending_visualisation)) {
540 /* Set visualisation element to READY */
541 gst_element_set_state (play_bin->visualisation, GST_STATE_READY);
546 GST_BIN_CAST (gst_object_get_parent (GST_OBJECT_CAST (play_bin->
549 if (!GST_IS_BIN (vis_bin) || !GST_IS_PAD (tee_pad)) {
553 vis_src_pad = gst_element_get_pad (play_bin->visualisation, "src");
554 vis_sink_pad = gst_pad_get_peer (tee_pad);
556 /* Can be fakesink */
557 if (GST_IS_PAD (vis_src_pad)) {
558 vqueue_pad = gst_pad_get_peer (vis_src_pad);
561 if (!GST_IS_PAD (vis_sink_pad)) {
565 /* Check the bin's state */
566 GST_OBJECT_LOCK (vis_bin);
567 bin_state = GST_STATE (vis_bin);
568 GST_OBJECT_UNLOCK (vis_bin);
571 gst_pad_unlink (tee_pad, vis_sink_pad);
572 gst_object_unref (vis_sink_pad);
575 if (GST_IS_PAD (vqueue_pad)) {
576 gst_pad_unlink (vis_src_pad, vqueue_pad);
577 gst_object_unref (vis_src_pad);
581 /* Remove from vis_bin */
582 gst_bin_remove (vis_bin, play_bin->visualisation);
583 /* Set state to NULL */
584 gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
585 /* And loose our ref */
586 gst_object_unref (play_bin->visualisation);
588 if (pending_visualisation) {
589 /* Ref this new visualisation element before adding to the bin */
590 gst_object_ref (pending_visualisation);
591 /* Add the new one */
592 gst_bin_add (vis_bin, pending_visualisation);
593 /* Synchronizing state */
594 gst_element_set_state (pending_visualisation, bin_state);
596 vis_sink_pad = gst_element_get_pad (pending_visualisation, "sink");
597 vis_src_pad = gst_element_get_pad (pending_visualisation, "src");
599 if (!GST_IS_PAD (vis_sink_pad) || !GST_IS_PAD (vis_src_pad)) {
604 gst_pad_link (tee_pad, vis_sink_pad);
605 gst_pad_link (vis_src_pad, vqueue_pad);
609 gst_object_unref (play_bin->visualisation);
610 play_bin->visualisation = pending_visualisation;
614 gst_object_unref (vis_sink_pad);
617 gst_object_unref (vis_src_pad);
620 gst_object_unref (vqueue_pad);
623 gst_object_unref (vis_bin);
626 /* Unblock the pad */
627 gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
632 gst_play_bin_set_property (GObject * object, guint prop_id,
633 const GValue * value, GParamSpec * pspec)
635 GstPlayBin *play_bin;
637 play_bin = GST_PLAY_BIN (object);
641 if (play_bin->video_sink != NULL) {
642 gst_object_unref (play_bin->video_sink);
644 play_bin->video_sink = g_value_get_object (value);
645 if (play_bin->video_sink != NULL) {
646 gst_object_ref (play_bin->video_sink);
647 gst_object_sink (GST_OBJECT_CAST (play_bin->video_sink));
649 /* when changing the videosink, we just remove the
650 * video pipeline from the cache so that it will be
651 * regenerated with the new sink element */
652 g_hash_table_remove (play_bin->cache, "vbin");
655 if (play_bin->audio_sink != NULL) {
656 gst_object_unref (play_bin->audio_sink);
658 play_bin->audio_sink = g_value_get_object (value);
659 if (play_bin->audio_sink != NULL) {
660 gst_object_ref (play_bin->audio_sink);
661 gst_object_sink (GST_OBJECT_CAST (play_bin->audio_sink));
663 g_hash_table_remove (play_bin->cache, "abin");
667 GstElement *pending_visualisation =
668 GST_ELEMENT_CAST (g_value_get_object (value));
671 if (pending_visualisation) {
672 gst_object_ref (pending_visualisation);
673 gst_object_sink (pending_visualisation);
676 /* Do we already have a visualisation change pending ? */
677 GST_OBJECT_LOCK (play_bin);
678 if (play_bin->pending_visualisation) {
679 gst_object_unref (play_bin->pending_visualisation);
680 play_bin->pending_visualisation = pending_visualisation;
681 GST_OBJECT_UNLOCK (play_bin);
683 GST_OBJECT_UNLOCK (play_bin);
684 /* Was there a visualisation already set ? */
685 if (play_bin->visualisation != NULL) {
686 GstBin *vis_bin = NULL;
689 GST_BIN_CAST (gst_object_get_parent (GST_OBJECT_CAST (play_bin->
692 /* Check if the visualisation is already in a bin */
693 if (GST_IS_BIN (vis_bin)) {
694 GstPad *vis_sink_pad = NULL, *tee_pad = NULL;
696 /* Now get tee pad and block it async */
697 vis_sink_pad = gst_element_get_pad (play_bin->visualisation,
699 if (!GST_IS_PAD (vis_sink_pad)) {
702 tee_pad = gst_pad_get_peer (vis_sink_pad);
703 if (!GST_IS_PAD (tee_pad)) {
707 play_bin->pending_visualisation = pending_visualisation;
708 /* Block with callback */
709 gst_pad_set_blocked_async (tee_pad, TRUE, gst_play_bin_vis_blocked,
713 gst_object_unref (vis_sink_pad);
716 gst_object_unref (tee_pad);
718 gst_object_unref (vis_bin);
720 play_bin->visualisation = pending_visualisation;
723 play_bin->visualisation = pending_visualisation;
729 play_bin->volume = g_value_get_double (value);
730 if (play_bin->volume_element) {
731 g_object_set (G_OBJECT (play_bin->volume_element), "volume",
732 play_bin->volume, NULL);
736 g_free (play_bin->font_desc);
737 play_bin->font_desc = g_strdup (g_value_get_string (value));
738 if (play_bin->textoverlay_element) {
739 g_object_set (G_OBJECT (play_bin->textoverlay_element),
740 "font-desc", g_value_get_string (value), NULL);
743 case ARG_CONNECTION_SPEED:
744 play_bin->connection_speed = g_value_get_uint (value) * 1000;
747 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
753 gst_play_bin_get_property (GObject * object, guint prop_id, GValue * value,
756 GstPlayBin *play_bin;
758 play_bin = GST_PLAY_BIN (object);
762 g_value_set_object (value, play_bin->video_sink);
765 g_value_set_object (value, play_bin->audio_sink);
768 g_value_set_object (value, play_bin->visualisation);
771 g_value_set_double (value, play_bin->volume);
774 GstBuffer *cur_frame = NULL;
776 gst_buffer_replace (&cur_frame, play_bin->frame);
777 gst_value_take_buffer (value, cur_frame);
780 case ARG_CONNECTION_SPEED:
781 g_value_set_uint (value, play_bin->connection_speed / 1000);
784 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
789 /* signal fired when the identity has received a new buffer. This is used for
790 * making screenshots.
793 handoff (GstElement * identity, GstBuffer * frame, gpointer data)
795 GstPlayBin *play_bin = GST_PLAY_BIN (data);
797 /* applications need to know the buffer caps,
798 * make sure they are always set on the frame */
799 if (GST_BUFFER_CAPS (frame) == NULL) {
802 if ((pad = gst_element_get_pad (identity, "sink"))) {
803 gst_buffer_set_caps (frame, GST_PAD_CAPS (pad));
804 gst_object_unref (pad);
808 gst_buffer_replace (&play_bin->frame, frame);
812 post_missing_element_message (GstPlayBin * playbin, const gchar * name)
816 msg = gst_missing_element_message_new (GST_ELEMENT_CAST (playbin), name);
817 gst_element_post_message (GST_ELEMENT_CAST (playbin), msg);
820 /* make the element (bin) that contains the elements needed to perform
821 * video display. We connect a handoff signal to identity so that we
822 * can grab snapshots. Identity's sinkpad is ghosted to vbin.
824 * +-------------------------------------------------------------+
826 * | +--------+ +----------+ +----------+ +---------+ |
827 * | |identity| |colorspace| |videoscale| |videosink| |
828 * | +-sink src-sink src-sink src-sink | |
829 * | | +---+----+ +----------+ +----------+ +---------+ |
831 * +----------|--------------------------------------------------+
835 gen_video_element (GstPlayBin * play_bin)
842 GstElement *identity;
845 /* first see if we have it in the cache */
846 element = g_hash_table_lookup (play_bin->cache, "vbin");
847 if (element != NULL) {
851 if (play_bin->video_sink) {
852 sink = play_bin->video_sink;
854 sink = gst_element_factory_make ("autovideosink", "videosink");
856 sink = gst_element_factory_make ("xvimagesink", "videosink");
861 gst_object_ref (sink);
862 g_hash_table_insert (play_bin->cache, "video_sink", sink);
864 /* create a bin to hold objects, as we create them we add them to this bin so
865 * that when something goes wrong we only need to unref the bin */
866 element = gst_bin_new ("vbin");
867 gst_bin_add (GST_BIN_CAST (element), sink);
869 conv = gst_element_factory_make ("ffmpegcolorspace", "vconv");
872 gst_bin_add (GST_BIN_CAST (element), conv);
874 scale = gst_element_factory_make ("videoscale", "vscale");
877 gst_bin_add (GST_BIN_CAST (element), scale);
879 identity = gst_element_factory_make ("identity", "id");
880 g_object_set (identity, "silent", TRUE, NULL);
881 g_signal_connect (identity, "handoff", G_CALLBACK (handoff), play_bin);
882 gst_bin_add (GST_BIN_CAST (element), identity);
884 gst_element_link_pads (identity, "src", conv, "sink");
885 gst_element_link_pads (conv, "src", scale, "sink");
886 /* be more careful with the pad from the custom sink element, it might not
888 if (!gst_element_link_pads (scale, "src", sink, NULL))
891 pad = gst_element_get_pad (identity, "sink");
892 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
893 gst_object_unref (pad);
895 gst_element_set_state (element, GST_STATE_READY);
897 /* since we're gonna add it to a bin but don't want to lose it,
898 * we keep a reference. */
899 gst_object_ref (element);
900 g_hash_table_insert (play_bin->cache, "vbin", element);
907 post_missing_element_message (play_bin, "autovideosink");
908 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
909 (_("Both autovideosink and xvimagesink elements are missing.")),
915 post_missing_element_message (play_bin, "ffmpegcolorspace");
916 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
917 (_("Missing element '%s' - check your GStreamer installation."),
918 "ffmpegcolorspace"), (NULL));
919 gst_object_unref (element);
925 post_missing_element_message (play_bin, "videoscale");
926 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
927 (_("Missing element '%s' - check your GStreamer installation."),
928 "videoscale"), ("possibly a liboil version mismatch?"));
929 gst_object_unref (element);
934 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
935 (NULL), ("Failed to configure the video sink."));
936 gst_object_unref (element);
941 /* make an element for playback of video with subtitles embedded.
943 * +--------------------------------------------------+
944 * | tbin +-------------+ |
945 * | +-----+ | textoverlay | +------+ |
946 * | | csp | +--video_sink | | vbin | |
947 * video_sink-sink src+ +-text_sink src-sink | |
948 * | +-----+ | +-------------+ +------+ |
949 * text_sink-------------+ |
950 * +--------------------------------------------------+
952 * If there is no subtitle renderer this function will simply return the
953 * videosink without the text_sink pad.
956 gen_text_element (GstPlayBin * play_bin)
958 GstElement *element, *csp, *overlay, *vbin;
961 /* Create the video rendering bin, error is posted when this fails. */
962 vbin = gen_video_element (play_bin);
967 overlay = gst_element_factory_make ("textoverlay", "overlay");
969 /* If no overlay return the video bin without subtitle support. */
974 element = gst_bin_new ("textbin");
976 /* Set some parameters */
977 g_object_set (G_OBJECT (overlay),
978 "halign", "center", "valign", "bottom", NULL);
979 if (play_bin->font_desc) {
980 g_object_set (G_OBJECT (overlay), "font-desc", play_bin->font_desc, NULL);
984 play_bin->textoverlay_element = GST_ELEMENT_CAST (gst_object_ref (overlay));
986 /* we know this will succeed, as the video bin already created one before */
987 csp = gst_element_factory_make ("ffmpegcolorspace", "subtitlecsp");
989 /* Add our elements */
990 gst_bin_add_many (GST_BIN_CAST (element), csp, overlay, vbin, NULL);
993 gst_element_link_pads (csp, "src", overlay, "video_sink");
994 gst_element_link_pads (overlay, "src", vbin, "sink");
996 /* Add ghost pads on the subtitle bin */
997 pad = gst_element_get_pad (overlay, "text_sink");
998 gst_element_add_pad (element, gst_ghost_pad_new ("text_sink", pad));
999 gst_object_unref (pad);
1001 pad = gst_element_get_pad (csp, "sink");
1002 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1003 gst_object_unref (pad);
1005 /* Set state to READY */
1006 gst_element_set_state (element, GST_STATE_READY);
1013 post_missing_element_message (play_bin, "textoverlay");
1014 GST_WARNING_OBJECT (play_bin,
1015 "No overlay (pango) element, subtitles disabled");
1020 /* make the element (bin) that contains the elements needed to perform
1023 * +-------------------------------------------------------------+
1025 * | +---------+ +----------+ +---------+ +---------+ |
1026 * | |audioconv| |audioscale| | volume | |audiosink| |
1027 * | +-sink src-sink src-sink src-sink | |
1028 * | | +---------+ +----------+ +---------+ +---------+ |
1030 * +-------------------------------------------------------------+
1033 gen_audio_element (GstPlayBin * play_bin)
1036 GstElement *element;
1043 element = g_hash_table_lookup (play_bin->cache, "abin");
1044 if (element != NULL)
1047 if (play_bin->audio_sink) {
1048 sink = play_bin->audio_sink;
1050 sink = gst_element_factory_make ("autoaudiosink", "audiosink");
1052 sink = gst_element_factory_make ("alsasink", "audiosink");
1057 play_bin->audio_sink = GST_ELEMENT_CAST (gst_object_ref (sink));
1060 gst_object_ref (sink);
1061 g_hash_table_insert (play_bin->cache, "audio_sink", sink);
1063 element = gst_bin_new ("abin");
1064 gst_bin_add (GST_BIN_CAST (element), sink);
1066 conv = gst_element_factory_make ("audioconvert", "aconv");
1068 goto no_audioconvert;
1069 gst_bin_add (GST_BIN_CAST (element), conv);
1071 scale = gst_element_factory_make ("audioresample", "aresample");
1073 goto no_audioresample;
1074 gst_bin_add (GST_BIN_CAST (element), scale);
1076 volume = gst_element_factory_make ("volume", "volume");
1077 g_object_set (G_OBJECT (volume), "volume", play_bin->volume, NULL);
1078 play_bin->volume_element = volume;
1079 gst_bin_add (GST_BIN_CAST (element), volume);
1081 res = gst_element_link_pads (conv, "src", scale, "sink");
1082 res &= gst_element_link_pads (scale, "src", volume, "sink");
1083 res &= gst_element_link_pads (volume, "src", sink, NULL);
1087 pad = gst_element_get_pad (conv, "sink");
1088 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1089 gst_object_unref (pad);
1091 gst_element_set_state (element, GST_STATE_READY);
1093 /* since we're gonna add it to a bin but don't want to lose it,
1094 * we keep a reference. */
1095 gst_object_ref (element);
1096 g_hash_table_insert (play_bin->cache, "abin", element);
1103 post_missing_element_message (play_bin, "autoaudiosink");
1104 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1105 (_("Both autoaudiosink and alsasink elements are missing.")), (NULL));
1110 post_missing_element_message (play_bin, "audioconvert");
1111 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1112 (_("Missing element '%s' - check your GStreamer installation."),
1113 "audioconvert"), ("possibly a liboil version mismatch?"));
1114 gst_object_unref (element);
1120 post_missing_element_message (play_bin, "audioresample");
1121 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1122 (_("Missing element '%s' - check your GStreamer installation."),
1123 "audioresample"), ("possibly a liboil version mismatch?"));
1124 gst_object_unref (element);
1129 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
1130 (NULL), ("Failed to configure the audio sink."));
1131 gst_object_unref (element);
1136 /* make the element (bin) that contains the elements needed to perform
1137 * visualisation ouput. The idea is to split the audio using tee, then
1138 * sending the output to the regular audio bin and the other output to
1139 * the vis plugin that transforms it into a video that is rendered with the
1140 * normal video bin. The video and audio bins are run in threads to make sure
1141 * they don't block eachother.
1143 * +-----------------------------------------------------------------------+
1145 * | +------+ +--------+ +----------------+ |
1146 * | | tee | | aqueue | | abin ... | |
1147 * | +-sink src-sink src-sink | |
1148 * | | | | +--------+ +----------------+ |
1150 * | | | | +------+ +------------+ +------+ +-----------+ |
1151 * | | | | |vqueue| | audioconv | | vis | | vbin ... | |
1152 * | | | src-sink src-sink + samp src-sink src-sink | |
1153 * | | | | +------+ +------------+ +------+ +-----------+ |
1157 * +-----------------------------------------------------------------------+
1160 gen_vis_element (GstPlayBin * play_bin)
1163 GstElement *element;
1171 GstElement *vqueue, *aqueue;
1174 /* errors are already posted when these fail. */
1175 asink = gen_audio_element (play_bin);
1178 vsink = gen_video_element (play_bin);
1180 gst_object_unref (asink);
1184 element = gst_bin_new ("visbin");
1185 tee = gst_element_factory_make ("tee", "tee");
1187 vqueue = gst_element_factory_make ("queue", "vqueue");
1188 aqueue = gst_element_factory_make ("queue", "aqueue");
1190 gst_bin_add (GST_BIN_CAST (element), asink);
1191 gst_bin_add (GST_BIN_CAST (element), vqueue);
1192 gst_bin_add (GST_BIN_CAST (element), aqueue);
1193 gst_bin_add (GST_BIN_CAST (element), vsink);
1194 gst_bin_add (GST_BIN_CAST (element), tee);
1196 conv = gst_element_factory_make ("audioconvert", "aconv");
1198 goto no_audioconvert;
1199 gst_bin_add (GST_BIN_CAST (element), conv);
1201 resamp = gst_element_factory_make ("audioresample", "aresamp");
1203 goto no_audioresample;
1204 gst_bin_add (GST_BIN_CAST (element), resamp);
1206 conv2 = gst_element_factory_make ("audioconvert", "aconv2");
1208 goto no_audioconvert;
1209 gst_bin_add (GST_BIN_CAST (element), conv2);
1211 if (play_bin->visualisation) {
1212 gst_object_ref (play_bin->visualisation);
1213 vis = play_bin->visualisation;
1215 vis = gst_element_factory_make ("goom", "vis");
1219 gst_bin_add (GST_BIN_CAST (element), vis);
1221 res = gst_element_link_pads (vqueue, "src", conv, "sink");
1222 res &= gst_element_link_pads (conv, "src", resamp, "sink");
1223 res &= gst_element_link_pads (resamp, "src", conv2, "sink");
1224 res &= gst_element_link_pads (conv2, "src", vis, "sink");
1225 res &= gst_element_link_pads (vis, "src", vsink, "sink");
1229 pad = gst_element_get_pad (aqueue, "sink");
1230 rpad = gst_element_get_request_pad (tee, "src%d");
1231 gst_pad_link (rpad, pad);
1232 gst_object_unref (rpad);
1233 gst_object_unref (pad);
1234 gst_element_link_pads (aqueue, "src", asink, "sink");
1236 pad = gst_element_get_pad (vqueue, "sink");
1237 rpad = gst_element_get_request_pad (tee, "src%d");
1238 gst_pad_link (rpad, pad);
1239 gst_object_unref (rpad);
1240 gst_object_unref (pad);
1242 pad = gst_element_get_pad (tee, "sink");
1243 gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
1244 gst_object_unref (pad);
1251 post_missing_element_message (play_bin, "audioconvert");
1252 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1253 (_("Missing element '%s' - check your GStreamer installation."),
1254 "audioconvert"), ("possibly a liboil version mismatch?"));
1255 gst_object_unref (element);
1260 post_missing_element_message (play_bin, "audioresample");
1261 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1262 (_("Missing element '%s' - check your GStreamer installation."),
1263 "audioresample"), (NULL));
1264 gst_object_unref (element);
1269 post_missing_element_message (play_bin, "goom");
1270 GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
1271 (_("Missing element '%s' - check your GStreamer installation."),
1273 gst_object_unref (element);
1278 GST_ELEMENT_ERROR (play_bin, CORE, PAD,
1279 (NULL), ("Failed to configure the visualisation element."));
1280 gst_object_unref (element);
1285 /* get rid of all installed sinks */
1287 remove_sinks (GstPlayBin * play_bin)
1291 GstElement *element;
1294 if (play_bin->cache == NULL)
1297 GST_DEBUG ("removesinks");
1298 element = g_hash_table_lookup (play_bin->cache, "abin");
1299 if (element != NULL) {
1300 parent = gst_element_get_parent (element);
1301 if (parent != NULL) {
1302 /* we remove the element from the parent so that
1303 * there is no unwanted state change when the parent
1305 play_bin->sinks = g_list_remove (play_bin->sinks, element);
1306 gst_element_set_state (element, GST_STATE_NULL);
1307 gst_bin_remove (GST_BIN_CAST (parent), element);
1308 gst_object_unref (parent);
1310 pad = gst_element_get_pad (element, "sink");
1312 peer = gst_pad_get_peer (pad);
1314 gst_pad_unlink (peer, pad);
1315 gst_object_unref (peer);
1317 gst_object_unref (pad);
1320 element = g_hash_table_lookup (play_bin->cache, "vbin");
1321 if (element != NULL) {
1322 parent = gst_element_get_parent (element);
1323 if (parent != NULL) {
1324 play_bin->sinks = g_list_remove (play_bin->sinks, element);
1325 gst_element_set_state (element, GST_STATE_NULL);
1326 gst_bin_remove (GST_BIN_CAST (parent), element);
1327 gst_object_unref (parent);
1329 pad = gst_element_get_pad (element, "sink");
1331 peer = gst_pad_get_peer (pad);
1333 gst_pad_unlink (peer, pad);
1334 gst_object_unref (peer);
1336 gst_object_unref (pad);
1340 for (sinks = play_bin->sinks; sinks; sinks = g_list_next (sinks)) {
1341 GstElement *element = GST_ELEMENT_CAST (sinks->data);
1345 pad = gst_element_get_pad (element, "sink");
1347 GST_LOG ("removing sink %p", element);
1349 peer = gst_pad_get_peer (pad);
1351 gst_pad_unlink (peer, pad);
1352 gst_object_unref (peer);
1354 gst_object_unref (pad);
1356 gst_element_set_state (element, GST_STATE_NULL);
1357 gst_bin_remove (GST_BIN_CAST (play_bin), element);
1359 g_list_free (play_bin->sinks);
1360 play_bin->sinks = NULL;
1362 if (play_bin->visualisation) {
1363 GstElement *vis_bin;
1366 GST_ELEMENT_CAST (gst_element_get_parent (play_bin->visualisation));
1368 gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
1371 gst_bin_remove (GST_BIN_CAST (vis_bin), play_bin->visualisation);
1372 gst_object_unref (vis_bin);
1376 if (play_bin->frame) {
1377 gst_buffer_unref (play_bin->frame);
1378 play_bin->frame = NULL;
1381 if (play_bin->textoverlay_element) {
1382 gst_object_unref (play_bin->textoverlay_element);
1383 play_bin->textoverlay_element = NULL;
1387 /* loop over the streams and set up the pipeline to play this
1388 * media file. First we count the number of audio and video streams.
1389 * If there is no video stream but there exists an audio stream,
1390 * we install a visualisation pipeline.
1392 * Also make sure to only connect the first audio and video pad. FIXME
1393 * this should eventually be handled with a tuner interface so that
1394 * one can switch the streams.
1396 * This function takes ownership of @sink.*
1399 add_sink (GstPlayBin * play_bin, GstElement * sink, GstPad * srcpad,
1400 GstPad * subtitle_pad)
1403 GstPadLinkReturn linkres;
1405 GstStateChangeReturn stateret;
1408 g_return_val_if_fail (sink != NULL, FALSE);
1410 state = GST_STATE_PAUSED;
1412 /* this is only for debugging */
1413 parent = gst_pad_get_parent_element (srcpad);
1415 GST_DEBUG ("Adding sink with state %d (parent: %d, peer: %d)",
1416 GST_STATE (sink), GST_STATE (play_bin), GST_STATE (parent));
1417 gst_object_unref (parent);
1419 gst_bin_add (GST_BIN_CAST (play_bin), sink);
1421 /* for live pipelines, disable the sync in the sinks until core handles this
1423 if (play_bin->is_live) {
1424 gst_pipeline_use_clock (GST_PIPELINE (play_bin), NULL);
1425 gst_element_set_clock (sink, NULL);
1428 /* bring it to the required state so we can link to the peer without
1429 * breaking the flow */
1430 stateret = gst_element_set_state (sink, state);
1431 if (stateret == GST_STATE_CHANGE_FAILURE)
1434 /* we found a sink for this stream, now try to install it */
1435 sinkpad = gst_element_get_pad (sink, "sink");
1436 linkres = gst_pad_link (srcpad, sinkpad);
1437 gst_object_unref (sinkpad);
1439 /* try to link the pad of the sink to the stream */
1440 if (GST_PAD_LINK_FAILED (linkres))
1443 if (GST_IS_PAD (subtitle_pad)) {
1444 sinkpad = gst_element_get_pad (sink, "text_sink");
1445 linkres = gst_pad_link (subtitle_pad, sinkpad);
1446 gst_object_unref (sinkpad);
1449 /* try to link the subtitle pad of the sink to the stream, this is not
1451 if (GST_PAD_LINK_FAILED (linkres))
1452 goto subtitle_failed;
1455 /* we got the sink succesfully linked, now keep the sink
1456 * in our internal list */
1457 play_bin->sinks = g_list_prepend (play_bin->sinks, sink);
1464 gst_element_set_state (sink, GST_STATE_NULL);
1465 gst_bin_remove (GST_BIN_CAST (play_bin), sink);
1466 GST_DEBUG_OBJECT (play_bin, "state change failure when adding sink");
1474 /* could not link this stream */
1475 caps = gst_pad_get_caps (srcpad);
1476 capsstr = gst_caps_to_string (caps);
1477 g_warning ("could not link %s: %d", capsstr, linkres);
1478 GST_DEBUG_OBJECT (play_bin,
1479 "link failed when adding sink, caps %s, reason %d", capsstr, linkres);
1481 gst_caps_unref (caps);
1483 gst_element_set_state (sink, GST_STATE_NULL);
1484 gst_bin_remove (GST_BIN_CAST (play_bin), sink);
1491 /* could not link this stream */
1492 caps = gst_pad_get_caps (subtitle_pad);
1493 GST_WARNING_OBJECT (play_bin, "subtitle link failed when adding sink, "
1494 "caps = %" GST_PTR_FORMAT ", reason %d", caps, linkres);
1495 gst_caps_unref (caps);
1503 setup_sinks (GstPlayBaseBin * play_base_bin, GstPlayBaseGroup * group)
1505 GstPlayBin *play_bin = GST_PLAY_BIN (play_base_bin);
1506 GList *streaminfo = NULL, *s;
1507 gboolean need_vis = FALSE;
1508 gboolean need_text = FALSE;
1509 GstPad *textsrcpad = NULL, *pad = NULL;
1511 gboolean res = TRUE;
1513 /* get rid of existing sinks */
1514 if (play_bin->sinks) {
1515 remove_sinks (play_bin);
1517 GST_DEBUG_OBJECT (play_base_bin, "setupsinks");
1519 /* find out what to do */
1520 if (group->type[GST_STREAM_TYPE_VIDEO - 1].npads > 0 &&
1521 group->type[GST_STREAM_TYPE_TEXT - 1].npads > 0) {
1523 } else if (group->type[GST_STREAM_TYPE_VIDEO - 1].npads == 0 &&
1524 group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0 &&
1525 play_bin->visualisation != NULL) {
1529 /* now actually connect everything */
1530 g_object_get (G_OBJECT (play_base_bin), "stream-info", &streaminfo, NULL);
1531 for (s = streaminfo; s; s = g_list_next (s)) {
1532 GObject *obj = G_OBJECT (s->data);
1536 g_object_get (obj, "type", &type, NULL);
1537 g_object_get (obj, "object", &object, NULL);
1541 if (group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0) {
1543 sink = gen_vis_element (play_bin);
1545 sink = gen_audio_element (play_bin);
1550 pad = gst_element_get_pad (group->type[GST_STREAM_TYPE_AUDIO - 1].preroll,
1552 res = add_sink (play_bin, sink, pad, NULL);
1553 gst_object_unref (pad);
1557 if (group->type[GST_STREAM_TYPE_VIDEO - 1].npads > 0) {
1559 GstObject *parent = NULL, *grandparent = NULL;
1560 GstPad *ghost = NULL;
1562 sink = gen_text_element (play_bin);
1564 gst_element_get_pad (group->type[GST_STREAM_TYPE_TEXT - 1].preroll,
1566 /* This pad is from subtitle-bin, we need to create a ghost pad to have
1567 common grandparents */
1568 parent = gst_object_get_parent (GST_OBJECT_CAST (textsrcpad));
1570 GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no parent !");
1571 gst_object_unref (textsrcpad);
1576 grandparent = gst_object_get_parent (parent);
1578 GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no grandparent !");
1579 gst_object_unref (parent);
1580 gst_object_unref (textsrcpad);
1585 /* We ghost the pad on subtitle_bin only, if the text pad is from the
1586 media demuxer we keep it as it is */
1587 if (!GST_IS_PLAY_BIN (grandparent)) {
1588 GST_DEBUG_OBJECT (textsrcpad, "this subtitle pad is from a subtitle "
1589 "file, ghosting to a suitable hierarchy");
1590 ghost = gst_ghost_pad_new ("text_src", textsrcpad);
1591 if (!GST_IS_PAD (ghost)) {
1592 GST_WARNING_OBJECT (textsrcpad, "failed creating ghost pad for "
1594 gst_object_unref (parent);
1595 gst_object_unref (grandparent);
1596 gst_object_unref (textsrcpad);
1601 gst_pad_set_active (ghost, TRUE);
1602 if (gst_element_add_pad (GST_ELEMENT_CAST (grandparent), ghost)) {
1603 gst_object_unref (textsrcpad);
1604 textsrcpad = gst_object_ref (ghost);
1606 GST_WARNING_OBJECT (ghost, "failed adding ghost pad on subtitle-bin");
1607 gst_pad_set_active (ghost, FALSE);
1608 gst_object_unref (ghost);
1609 gst_object_unref (textsrcpad);
1613 GST_DEBUG_OBJECT (textsrcpad, "this subtitle pad is from the demuxer "
1614 "no changes to hierarchy needed");
1617 gst_object_unref (parent);
1618 gst_object_unref (grandparent);
1620 sink = gen_video_element (play_bin);
1625 pad = gst_element_get_pad (group->type[GST_STREAM_TYPE_VIDEO - 1].preroll,
1627 res = add_sink (play_bin, sink, pad, textsrcpad);
1628 gst_object_unref (pad);
1630 gst_object_unref (textsrcpad);
1633 /* remove the sinks now, pipeline get_state will now wait for the
1634 * sinks to preroll */
1635 if (play_bin->fakesink) {
1636 gst_element_set_state (play_bin->fakesink, GST_STATE_NULL);
1637 gst_bin_remove (GST_BIN_CAST (play_bin), play_bin->fakesink);
1638 play_bin->fakesink = NULL;
1644 /* Send an event to our sinks until one of them works; don't then send to the
1645 * remaining sinks (unlike GstBin)
1648 gst_play_bin_send_event_to_sink (GstPlayBin * play_bin, GstEvent * event)
1650 GList *sinks = play_bin->sinks;
1651 gboolean res = TRUE;
1654 GstElement *sink = GST_ELEMENT_CAST (sinks->data);
1656 gst_event_ref (event);
1657 if ((res = gst_element_send_event (sink, event))) {
1658 GST_DEBUG_OBJECT (play_bin,
1659 "Sent event succesfully to sink %" GST_PTR_FORMAT, sink);
1662 GST_DEBUG_OBJECT (play_bin,
1663 "Event failed when sent to sink %" GST_PTR_FORMAT, sink);
1665 sinks = g_list_next (sinks);
1668 gst_event_unref (event);
1673 /* We only want to send the event to a single sink (overriding GstBin's
1674 * behaviour), but we want to keep GstPipeline's behaviour - wrapping seek
1675 * events appropriately. So, this is a messy duplication of code. */
1677 gst_play_bin_send_event (GstElement * element, GstEvent * event)
1679 gboolean res = FALSE;
1680 GstEventType event_type = GST_EVENT_TYPE (event);
1682 switch (event_type) {
1683 case GST_EVENT_SEEK:
1684 GST_DEBUG_OBJECT (element, "Sending seek event to a sink");
1685 res = gst_play_bin_send_event_to_sink (GST_PLAY_BIN (element), event);
1688 res = parent_class->send_event (element, event);
1695 /* Override the set_clock function, we don't want to set a clock on the sinks
1696 * when we are live pipeline so that they don't synchronize until this is
1699 gst_play_bin_set_clock_func (GstElement * element, GstClock * clock)
1703 GstPlayBin *play_bin;
1704 gboolean res = TRUE;
1705 GstElement *asink, *vsink;
1707 bin = GST_BIN (element);
1708 play_bin = GST_PLAY_BIN (element);
1710 asink = g_hash_table_lookup (play_bin->cache, "audio_sink");
1711 vsink = g_hash_table_lookup (play_bin->cache, "video_sink");
1713 GST_DEBUG_OBJECT (play_bin, "setting clock, is_live %d", play_bin->is_live);
1715 GST_OBJECT_LOCK (bin);
1716 if (element->clock != clock) {
1717 for (children = bin->children; children; children = g_list_next (children)) {
1718 GstElement *child = GST_ELEMENT (children->data);
1720 if (play_bin->is_live && (child == asink || child == vsink))
1721 res &= gst_element_set_clock (child, NULL);
1723 res &= gst_element_set_clock (child, clock);
1726 GST_OBJECT_UNLOCK (bin);
1732 value_list_append_structure_list (GValue * list_val, GstStructure ** first,
1733 GList * structure_list)
1737 for (l = structure_list; l != NULL; l = l->next) {
1738 GValue val = { 0, };
1741 *first = gst_structure_copy ((GstStructure *) l->data);
1743 g_value_init (&val, GST_TYPE_STRUCTURE);
1744 g_value_take_boxed (&val, gst_structure_copy ((GstStructure *) l->data));
1745 gst_value_list_append_value (list_val, &val);
1746 g_value_unset (&val);
1750 /* if it's a redirect message with multiple redirect locations we might
1751 * want to pick a different 'best' location depending on the required
1752 * bitrates and the connection speed */
1754 gst_play_bin_handle_redirect_message (GstPlayBin * playbin, GstMessage * msg)
1756 const GValue *locations_list, *location_val;
1757 GstMessage *new_msg;
1758 GstStructure *new_structure = NULL;
1759 GList *l_good = NULL, *l_neutral = NULL, *l_bad = NULL;
1760 GValue new_list = { 0, };
1763 GST_DEBUG_OBJECT (playbin, "redirect message: %" GST_PTR_FORMAT, msg);
1764 GST_DEBUG_OBJECT (playbin, "connection speed: %u", playbin->connection_speed);
1766 if (playbin->connection_speed == 0 || msg->structure == NULL)
1769 locations_list = gst_structure_get_value (msg->structure, "locations");
1770 if (locations_list == NULL)
1773 size = gst_value_list_get_size (locations_list);
1777 /* maintain existing order as much as possible, just sort references
1778 * with too high a bitrate to the end (the assumption being that if
1779 * bitrates are given they are given for all interesting streams and
1780 * that the you-need-at-least-version-xyz redirect has the same bitrate
1781 * as the lowest referenced redirect alternative) */
1782 for (i = 0; i < size; ++i) {
1783 const GstStructure *s;
1786 location_val = gst_value_list_get_value (locations_list, i);
1787 s = (const GstStructure *) g_value_get_boxed (location_val);
1788 if (!gst_structure_get_int (s, "minimum-bitrate", &bitrate) || bitrate <= 0) {
1789 GST_DEBUG_OBJECT (playbin, "no bitrate: %" GST_PTR_FORMAT, s);
1790 l_neutral = g_list_append (l_neutral, (gpointer) s);
1791 } else if (bitrate > playbin->connection_speed) {
1792 GST_DEBUG_OBJECT (playbin, "bitrate too high: %" GST_PTR_FORMAT, s);
1793 l_bad = g_list_append (l_bad, (gpointer) s);
1794 } else if (bitrate <= playbin->connection_speed) {
1795 GST_DEBUG_OBJECT (playbin, "bitrate OK: %" GST_PTR_FORMAT, s);
1796 l_good = g_list_append (l_good, (gpointer) s);
1800 g_value_init (&new_list, GST_TYPE_LIST);
1801 value_list_append_structure_list (&new_list, &new_structure, l_good);
1802 value_list_append_structure_list (&new_list, &new_structure, l_neutral);
1803 value_list_append_structure_list (&new_list, &new_structure, l_bad);
1804 gst_structure_set_value (new_structure, "locations", &new_list);
1805 g_value_unset (&new_list);
1807 g_list_free (l_good);
1808 g_list_free (l_neutral);
1809 g_list_free (l_bad);
1811 new_msg = gst_message_new_element (msg->src, new_structure);
1812 gst_message_unref (msg);
1814 GST_DEBUG_OBJECT (playbin, "new redirect message: %" GST_PTR_FORMAT, new_msg);
1819 gst_play_bin_handle_message (GstBin * bin, GstMessage * msg)
1821 if (GST_MESSAGE_TYPE (msg) == GST_MESSAGE_ELEMENT && msg->structure != NULL
1822 && gst_structure_has_name (msg->structure, "redirect")) {
1823 msg = gst_play_bin_handle_redirect_message (GST_PLAY_BIN (bin), msg);
1826 GST_BIN_CLASS (parent_class)->handle_message (bin, msg);
1829 static GstStateChangeReturn
1830 gst_play_bin_change_state (GstElement * element, GstStateChange transition)
1832 GstStateChangeReturn ret;
1833 GstPlayBin *play_bin;
1835 play_bin = GST_PLAY_BIN (element);
1838 switch (transition) {
1839 case GST_STATE_CHANGE_READY_TO_PAUSED:
1840 gst_pipeline_auto_clock (GST_PIPELINE (play_bin));
1841 /* this really is the easiest way to make the state change return
1842 * ASYNC until we added the sinks */
1843 if (!play_bin->fakesink) {
1844 play_bin->fakesink = gst_element_factory_make ("fakesink", "test");
1845 gst_bin_add (GST_BIN_CAST (play_bin), play_bin->fakesink);
1852 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1853 if (ret == GST_STATE_CHANGE_FAILURE)
1856 switch (transition) {
1857 case GST_STATE_CHANGE_READY_TO_PAUSED:
1858 /* remember us being a live pipeline */
1859 play_bin->is_live = (ret == GST_STATE_CHANGE_NO_PREROLL);
1860 GST_DEBUG_OBJECT (play_bin, "is live: %d", play_bin->is_live);
1862 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1863 /* FIXME Release audio device when we implement that */
1865 case GST_STATE_CHANGE_PAUSED_TO_READY:
1866 /* remove sinks we added */
1867 remove_sinks (play_bin);
1868 /* and there might be a fakesink we need to clean up now */
1869 if (play_bin->fakesink) {
1870 gst_element_set_state (play_bin->fakesink, GST_STATE_NULL);
1871 gst_bin_remove (GST_BIN_CAST (play_bin), play_bin->fakesink);
1872 play_bin->fakesink = NULL;
1883 plugin_init (GstPlugin * plugin)
1885 GST_DEBUG_CATEGORY_INIT (gst_play_bin_debug, "playbin", 0, "play bin");
1887 gst_pb_utils_init ();
1890 GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
1892 bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
1893 #endif /* ENABLE_NLS */
1895 return gst_element_register (plugin, "playbin", GST_RANK_NONE,
1899 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
1902 "player bin", plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME,