gst/playback/: Implement subtitles.
[platform/upstream/gstreamer.git] / gst / playback / gstplaybin.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include <string.h>
25 #include <gst/gst.h>
26
27 #include <gst/gst-i18n-plugin.h>
28
29 #include "gstplaybasebin.h"
30
31 GST_DEBUG_CATEGORY_STATIC (gst_play_bin_debug);
32 #define GST_CAT_DEFAULT gst_play_bin_debug
33
34 #define GST_TYPE_PLAY_BIN               (gst_play_bin_get_type())
35 #define GST_PLAY_BIN(obj)               (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PLAY_BIN,GstPlayBin))
36 #define GST_PLAY_BIN_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PLAY_BIN,GstPlayBinClass))
37 #define GST_IS_PLAY_BIN(obj)            (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PLAY_BIN))
38 #define GST_IS_PLAY_BIN_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PLAY_BIN))
39
40 #define VOLUME_MAX_DOUBLE 4.0
41
42 #ifndef GST_HAVE_GLIB_2_8
43 #define _gst_gvalue_set_gstobject(gvalue,obj)  \
44       if (obj != NULL) {                       \
45         gst_object_ref (obj);                  \
46         g_value_set_object (gvalue, obj);      \
47         g_object_unref (obj);                  \
48       } else {                                 \
49         g_value_set_object (gvalue, NULL);     \
50       }
51 #else
52 #define _gst_gvalue_set_gstobject(gvalue,obj)  \
53       g_value_set_object (gvalue, obj);
54 #endif
55
56 typedef struct _GstPlayBin GstPlayBin;
57 typedef struct _GstPlayBinClass GstPlayBinClass;
58
59 struct _GstPlayBin
60 {
61   GstPlayBaseBin parent;
62
63   /* the configurable elements */
64   GstElement *fakesink;
65   GstElement *audio_sink;
66   GstElement *video_sink;
67   GstElement *visualisation;
68   GstElement *pending_visualisation;
69   GstElement *volume_element;
70   GstElement *textoverlay_element;
71   gfloat volume;
72
73   /* these are the currently active sinks */
74   GList *sinks;
75
76   /* the last captured frame for snapshots */
77   GstBuffer *frame;
78
79   /* our cache for the sinks */
80   GHashTable *cache;
81
82   /* font description */
83   gchar *font_desc;
84 };
85
86 struct _GstPlayBinClass
87 {
88   GstPlayBaseBinClass parent_class;
89 };
90
91 /* props */
92 enum
93 {
94   ARG_0,
95   ARG_AUDIO_SINK,
96   ARG_VIDEO_SINK,
97   ARG_VIS_PLUGIN,
98   ARG_VOLUME,
99   ARG_FRAME,
100   ARG_FONT_DESC
101 };
102
103 /* signals */
104 enum
105 {
106   LAST_SIGNAL
107 };
108
109 static void gst_play_bin_class_init (GstPlayBinClass * klass);
110 static void gst_play_bin_init (GstPlayBin * play_bin);
111 static void gst_play_bin_dispose (GObject * object);
112
113 static gboolean setup_sinks (GstPlayBaseBin * play_base_bin,
114     GstPlayBaseGroup * group);
115 static void remove_sinks (GstPlayBin * play_bin);
116
117 static void gst_play_bin_set_property (GObject * object, guint prop_id,
118     const GValue * value, GParamSpec * spec);
119 static void gst_play_bin_get_property (GObject * object, guint prop_id,
120     GValue * value, GParamSpec * spec);
121
122 static gboolean gst_play_bin_send_event (GstElement * element,
123     GstEvent * event);
124 static GstStateChangeReturn gst_play_bin_change_state (GstElement * element,
125     GstStateChange transition);
126
127 static GstElementClass *parent_class;
128
129 //static guint gst_play_bin_signals[LAST_SIGNAL] = { 0 };
130
131 static GstElementDetails gst_play_bin_details = {
132   "Player Bin",
133   "Generic/Bin/Player",
134   "Autoplug and play media from an uri",
135   "Wim Taymans <wim@fluendo.com>"
136 };
137
138 static GType
139 gst_play_bin_get_type (void)
140 {
141   static GType gst_play_bin_type = 0;
142
143   if (!gst_play_bin_type) {
144     static const GTypeInfo gst_play_bin_info = {
145       sizeof (GstPlayBinClass),
146       NULL,
147       NULL,
148       (GClassInitFunc) gst_play_bin_class_init,
149       NULL,
150       NULL,
151       sizeof (GstPlayBin),
152       0,
153       (GInstanceInitFunc) gst_play_bin_init,
154       NULL
155     };
156
157     gst_play_bin_type = g_type_register_static (GST_TYPE_PLAY_BASE_BIN,
158         "GstPlayBin", &gst_play_bin_info, 0);
159   }
160
161   return gst_play_bin_type;
162 }
163
164 static void
165 gst_play_bin_class_init (GstPlayBinClass * klass)
166 {
167   GObjectClass *gobject_klass;
168   GstElementClass *gstelement_klass;
169   GstBinClass *gstbin_klass;
170   GstPlayBaseBinClass *playbasebin_klass;
171
172   gobject_klass = (GObjectClass *) klass;
173   gstelement_klass = (GstElementClass *) klass;
174   gstbin_klass = (GstBinClass *) klass;
175   playbasebin_klass = (GstPlayBaseBinClass *) klass;
176
177   parent_class = g_type_class_ref (gst_play_base_bin_get_type ());
178
179   gobject_klass->set_property = gst_play_bin_set_property;
180   gobject_klass->get_property = gst_play_bin_get_property;
181
182   g_object_class_install_property (gobject_klass, ARG_VIDEO_SINK,
183       g_param_spec_object ("video-sink", "Video Sink",
184           "the video output element to use (NULL = default sink)",
185           GST_TYPE_ELEMENT, G_PARAM_READWRITE));
186   g_object_class_install_property (gobject_klass, ARG_AUDIO_SINK,
187       g_param_spec_object ("audio-sink", "Audio Sink",
188           "the audio output element to use (NULL = default sink)",
189           GST_TYPE_ELEMENT, G_PARAM_READWRITE));
190   g_object_class_install_property (gobject_klass, ARG_VIS_PLUGIN,
191       g_param_spec_object ("vis-plugin", "Vis plugin",
192           "the visualization element to use (NULL = none)",
193           GST_TYPE_ELEMENT, G_PARAM_READWRITE));
194   g_object_class_install_property (gobject_klass, ARG_VOLUME,
195       g_param_spec_double ("volume", "volume", "volume",
196           0.0, VOLUME_MAX_DOUBLE, 1.0, G_PARAM_READWRITE));
197   g_object_class_install_property (gobject_klass, ARG_FRAME,
198       gst_param_spec_mini_object ("frame", "Frame",
199           "The last frame (NULL = no video available)",
200           GST_TYPE_BUFFER, G_PARAM_READABLE));
201   g_object_class_install_property (gobject_klass, ARG_FONT_DESC,
202       g_param_spec_string ("subtitle-font-desc",
203           "Subtitle font description",
204           "Pango font description of font "
205           "to be used for subtitle rendering", NULL, G_PARAM_WRITABLE));
206
207   gobject_klass->dispose = GST_DEBUG_FUNCPTR (gst_play_bin_dispose);
208
209   gst_element_class_set_details (gstelement_klass, &gst_play_bin_details);
210
211   gstelement_klass->change_state =
212       GST_DEBUG_FUNCPTR (gst_play_bin_change_state);
213   gstelement_klass->send_event = GST_DEBUG_FUNCPTR (gst_play_bin_send_event);
214
215   playbasebin_klass->setup_output_pads = setup_sinks;
216 }
217
218 static void
219 gst_play_bin_init (GstPlayBin * play_bin)
220 {
221   play_bin->video_sink = NULL;
222   play_bin->audio_sink = NULL;
223   play_bin->visualisation = NULL;
224   play_bin->pending_visualisation = NULL;
225   play_bin->volume_element = NULL;
226   play_bin->textoverlay_element = NULL;
227   play_bin->volume = 1.0;
228   play_bin->sinks = NULL;
229   play_bin->frame = NULL;
230   play_bin->font_desc = NULL;
231   play_bin->cache = g_hash_table_new_full (g_str_hash, g_str_equal,
232       NULL, (GDestroyNotify) gst_object_unref);
233 }
234
235 static void
236 gst_play_bin_dispose (GObject * object)
237 {
238   GstPlayBin *play_bin;
239
240   play_bin = GST_PLAY_BIN (object);
241
242   if (play_bin->cache != NULL) {
243     remove_sinks (play_bin);
244     g_hash_table_destroy (play_bin->cache);
245     play_bin->cache = NULL;
246   }
247
248   if (play_bin->audio_sink != NULL) {
249     gst_element_set_state (play_bin->audio_sink, GST_STATE_NULL);
250     gst_object_unref (play_bin->audio_sink);
251     play_bin->audio_sink = NULL;
252   }
253   if (play_bin->video_sink != NULL) {
254     gst_element_set_state (play_bin->video_sink, GST_STATE_NULL);
255     gst_object_unref (play_bin->video_sink);
256     play_bin->video_sink = NULL;
257   }
258   if (play_bin->visualisation != NULL) {
259     gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
260     gst_object_unref (play_bin->visualisation);
261     play_bin->visualisation = NULL;
262   }
263   if (play_bin->pending_visualisation != NULL) {
264     gst_element_set_state (play_bin->pending_visualisation, GST_STATE_NULL);
265     gst_object_unref (play_bin->pending_visualisation);
266     play_bin->pending_visualisation = NULL;
267   }
268   if (play_bin->textoverlay_element != NULL) {
269     gst_object_unref (play_bin->textoverlay_element);
270     play_bin->textoverlay_element = NULL;
271   }
272   g_free (play_bin->font_desc);
273   play_bin->font_desc = NULL;
274
275   G_OBJECT_CLASS (parent_class)->dispose (object);
276 }
277
278 static void
279 gst_play_bin_vis_unblocked (GstPad * tee_pad, gboolean blocked,
280     gpointer user_data)
281 {
282   /* Unblocked */
283 }
284
285 static void
286 gst_play_bin_vis_blocked (GstPad * tee_pad, gboolean blocked,
287     gpointer user_data)
288 {
289   GstPlayBin *play_bin = GST_PLAY_BIN (user_data);
290   GstBin *vis_bin = NULL;
291   GstPad *vis_sink_pad = NULL, *vis_src_pad = NULL, *vqueue_pad = NULL;
292   GstState bin_state;
293
294   /* We want to disable visualisation */
295   if (!GST_IS_ELEMENT (play_bin->pending_visualisation)) {
296     /* Set visualisation element to READY */
297     gst_element_set_state (play_bin->visualisation, GST_STATE_READY);
298     goto beach;
299   }
300
301   vis_bin =
302       GST_BIN (gst_object_get_parent (GST_OBJECT (play_bin->visualisation)));
303
304   if (!GST_IS_BIN (vis_bin) || !GST_IS_PAD (tee_pad)) {
305     goto beach;
306   }
307
308   vis_src_pad = gst_element_get_pad (play_bin->visualisation, "src");
309   vis_sink_pad = gst_pad_get_peer (tee_pad);
310
311   /* Can be fakesink */
312   if (GST_IS_PAD (vis_src_pad)) {
313     vqueue_pad = gst_pad_get_peer (vis_src_pad);
314   }
315
316   if (!GST_IS_PAD (vis_sink_pad)) {
317     goto beach;
318   }
319
320   /* Check the bin's state */
321   GST_OBJECT_LOCK (vis_bin);
322   bin_state = GST_STATE (vis_bin);
323   GST_OBJECT_UNLOCK (vis_bin);
324
325   /* Unlink */
326   gst_pad_unlink (tee_pad, vis_sink_pad);
327   gst_object_unref (vis_sink_pad);
328   vis_sink_pad = NULL;
329
330   if (GST_IS_PAD (vqueue_pad)) {
331     gst_pad_unlink (vis_src_pad, vqueue_pad);
332     gst_object_unref (vis_src_pad);
333     vis_src_pad = NULL;
334   }
335
336   /* Remove from vis_bin */
337   gst_bin_remove (vis_bin, play_bin->visualisation);
338   /* Set state to NULL */
339   gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
340   /* And loose our ref */
341   gst_object_unref (play_bin->visualisation);
342
343   if (play_bin->pending_visualisation) {
344     /* Ref this new visualisation element before adding to the bin */
345     gst_object_ref (play_bin->pending_visualisation);
346     /* Add the new one */
347     gst_bin_add (vis_bin, play_bin->pending_visualisation);
348     /* Synchronizing state */
349     gst_element_set_state (play_bin->pending_visualisation, bin_state);
350
351     vis_sink_pad = gst_element_get_pad (play_bin->pending_visualisation,
352         "sink");
353     vis_src_pad = gst_element_get_pad (play_bin->pending_visualisation, "src");
354
355     if (!GST_IS_PAD (vis_sink_pad) || !GST_IS_PAD (vis_src_pad)) {
356       goto beach;
357     }
358
359     /* Link */
360     gst_pad_link (tee_pad, vis_sink_pad);
361     gst_pad_link (vis_src_pad, vqueue_pad);
362   }
363
364   /* We are done */
365   gst_object_unref (play_bin->visualisation);
366   play_bin->visualisation = play_bin->pending_visualisation;
367   play_bin->pending_visualisation = NULL;
368
369 beach:
370   if (vis_sink_pad) {
371     gst_object_unref (vis_sink_pad);
372   }
373   if (vis_src_pad) {
374     gst_object_unref (vis_src_pad);
375   }
376   if (vqueue_pad) {
377     gst_object_unref (vqueue_pad);
378   }
379   if (vis_bin) {
380     gst_object_unref (vis_bin);
381   }
382
383   /* Unblock the pad */
384   gst_pad_set_blocked_async (tee_pad, FALSE, gst_play_bin_vis_unblocked,
385       play_bin);
386 }
387
388 static void
389 gst_play_bin_set_property (GObject * object, guint prop_id,
390     const GValue * value, GParamSpec * pspec)
391 {
392   GstPlayBin *play_bin;
393
394   g_return_if_fail (GST_IS_PLAY_BIN (object));
395
396   play_bin = GST_PLAY_BIN (object);
397
398   switch (prop_id) {
399     case ARG_VIDEO_SINK:
400       if (play_bin->video_sink != NULL) {
401         gst_object_unref (play_bin->video_sink);
402       }
403       play_bin->video_sink = g_value_get_object (value);
404       if (play_bin->video_sink != NULL) {
405         gst_object_ref (play_bin->video_sink);
406         gst_object_sink (GST_OBJECT (play_bin->video_sink));
407       }
408       /* when changing the videosink, we just remove the
409        * video pipeline from the cache so that it will be 
410        * regenerated with the new sink element */
411       g_hash_table_remove (play_bin->cache, "vbin");
412       break;
413     case ARG_AUDIO_SINK:
414       if (play_bin->audio_sink != NULL) {
415         gst_object_unref (play_bin->audio_sink);
416       }
417       play_bin->audio_sink = g_value_get_object (value);
418       if (play_bin->audio_sink != NULL) {
419         gst_object_ref (play_bin->audio_sink);
420         gst_object_sink (GST_OBJECT (play_bin->audio_sink));
421       }
422       g_hash_table_remove (play_bin->cache, "abin");
423       break;
424     case ARG_VIS_PLUGIN:
425     {
426       /* Do we already have a visualisation change pending ? */
427       if (play_bin->pending_visualisation) {
428         gst_object_unref (play_bin->pending_visualisation);
429         play_bin->pending_visualisation = g_value_get_object (value);
430         /* Take ownership */
431         if (play_bin->pending_visualisation) {
432           gst_object_ref (play_bin->pending_visualisation);
433           gst_object_sink (GST_OBJECT (play_bin->pending_visualisation));
434         }
435       } else {
436         play_bin->pending_visualisation = g_value_get_object (value);
437
438         /* Take ownership */
439         if (play_bin->pending_visualisation) {
440           gst_object_ref (play_bin->pending_visualisation);
441           gst_object_sink (GST_OBJECT (play_bin->pending_visualisation));
442         }
443
444         /* Was there a visualisation already set ? */
445         if (play_bin->visualisation != NULL) {
446           GstBin *vis_bin = NULL;
447
448           vis_bin =
449               GST_BIN (gst_object_get_parent (GST_OBJECT (play_bin->
450                       visualisation)));
451
452           /* Check if the visualisation is already in a bin */
453           if (GST_IS_BIN (vis_bin)) {
454             GstPad *vis_sink_pad = NULL, *tee_pad = NULL;
455
456             /* Now get tee pad and block it async */
457             vis_sink_pad = gst_element_get_pad (play_bin->visualisation,
458                 "sink");
459             if (!GST_IS_PAD (vis_sink_pad)) {
460               goto beach;
461             }
462             tee_pad = gst_pad_get_peer (vis_sink_pad);
463             if (!GST_IS_PAD (tee_pad)) {
464               goto beach;
465             }
466
467             /* Block with callback */
468             gst_pad_set_blocked_async (tee_pad, TRUE, gst_play_bin_vis_blocked,
469                 play_bin);
470           beach:
471             if (vis_sink_pad) {
472               gst_object_unref (vis_sink_pad);
473             }
474             if (tee_pad) {
475               gst_object_unref (tee_pad);
476             }
477             gst_object_unref (vis_bin);
478           } else {
479             play_bin->visualisation = play_bin->pending_visualisation;
480             play_bin->pending_visualisation = NULL;
481           }
482         } else {
483           play_bin->visualisation = play_bin->pending_visualisation;
484           play_bin->pending_visualisation = NULL;
485         }
486       }
487       break;
488     }
489     case ARG_VOLUME:
490       play_bin->volume = g_value_get_double (value);
491       if (play_bin->volume_element) {
492         g_object_set (G_OBJECT (play_bin->volume_element), "volume",
493             play_bin->volume, NULL);
494       }
495       break;
496     case ARG_FONT_DESC:
497       g_free (play_bin->font_desc);
498       play_bin->font_desc = g_strdup (g_value_get_string (value));
499       if (play_bin->textoverlay_element) {
500         g_object_set (G_OBJECT (play_bin->textoverlay_element),
501             "font-desc", g_value_get_string (value), NULL);
502       }
503       break;
504     default:
505       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
506       break;
507   }
508 }
509
510 static void
511 gst_play_bin_get_property (GObject * object, guint prop_id, GValue * value,
512     GParamSpec * pspec)
513 {
514   GstPlayBin *play_bin;
515
516   g_return_if_fail (GST_IS_PLAY_BIN (object));
517
518   play_bin = GST_PLAY_BIN (object);
519
520   switch (prop_id) {
521     case ARG_VIDEO_SINK:
522       _gst_gvalue_set_gstobject (value, play_bin->video_sink);
523       break;
524     case ARG_AUDIO_SINK:
525       _gst_gvalue_set_gstobject (value, play_bin->audio_sink);
526       break;
527     case ARG_VIS_PLUGIN:
528       _gst_gvalue_set_gstobject (value, play_bin->visualisation);
529       break;
530     case ARG_VOLUME:
531       g_value_set_double (value, play_bin->volume);
532       break;
533     case ARG_FRAME:
534       gst_value_set_mini_object (value, GST_MINI_OBJECT (play_bin->frame));
535       break;
536     default:
537       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
538       break;
539   }
540 }
541
542 /* signal fired when the identity has received a new buffer. This is used for
543  * making screenshots.
544  */
545 static void
546 handoff (GstElement * identity, GstBuffer * frame, gpointer data)
547 {
548   GstPlayBin *play_bin = GST_PLAY_BIN (data);
549
550   gst_mini_object_replace ((GstMiniObject **) & play_bin->frame,
551       GST_MINI_OBJECT_CAST (frame));
552
553   /* applications need to know the buffer caps,
554    * make sure they are always set on the frame */
555   if (GST_BUFFER_CAPS (play_bin->frame) == NULL) {
556     GstPad *pad;
557
558     if ((pad = gst_element_get_pad (identity, "sink"))) {
559       gst_buffer_set_caps (play_bin->frame, GST_PAD_CAPS (pad));
560       gst_object_unref (pad);
561     }
562   }
563 }
564
565 /* make the element (bin) that contains the elements needed to perform
566  * video display. We connect a handoff signal to identity so that we
567  * can grab snapshots. Identity's sinkpad is ghosted to vbin.
568  *
569  *  +-------------------------------------------------------------+
570  *  | vbin                                                        |
571  *  |      +--------+   +----------+   +----------+   +---------+ |
572  *  |      |identity|   |colorspace|   |videoscale|   |videosink| |
573  *  |   +-sink     src-sink       src-sink       src-sink       | |
574  *  |   |  +---+----+   +----------+   +----------+   +---------+ |
575  * sink-+      |                                                  |
576  *  +----------|--------------------------------------------------+
577  *           handoff
578  */
579 /* FIXME: this might return NULL if no videosink was found, handle
580  * this in callers */
581 static GstElement *
582 gen_video_element (GstPlayBin * play_bin)
583 {
584   GstElement *element;
585   GstElement *conv;
586
587   GstElement *scale;
588   GstElement *sink;
589   GstElement *identity;
590   GstPad *pad;
591
592   /* first see if we have it in the cache */
593   element = g_hash_table_lookup (play_bin->cache, "vbin");
594   if (element != NULL) {
595     return element;
596   }
597
598   if (play_bin->video_sink) {
599     sink = play_bin->video_sink;
600   } else {
601     sink = gst_element_factory_make ("autovideosink", "videosink");
602     if (sink == NULL) {
603       sink = gst_element_factory_make ("xvimagesink", "videosink");
604     }
605     /* FIXME: this warrants adding a CORE error category for missing
606      * elements/plugins */
607     if (sink == NULL) {
608       GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
609           (_("Both autovideosink and xvimagesink elements are missing.")),
610           (NULL));
611       return NULL;
612     }
613   }
614   gst_object_ref (sink);
615   g_hash_table_insert (play_bin->cache, "video_sink", sink);
616
617
618   element = gst_bin_new ("vbin");
619   identity = gst_element_factory_make ("identity", "id");
620   g_object_set (identity, "silent", TRUE, NULL);
621   g_signal_connect (identity, "handoff", G_CALLBACK (handoff), play_bin);
622   conv = gst_element_factory_make ("ffmpegcolorspace", "vconv");
623   scale = gst_element_factory_make ("videoscale", "vscale");
624   gst_bin_add (GST_BIN (element), identity);
625   gst_bin_add (GST_BIN (element), conv);
626   gst_bin_add (GST_BIN (element), scale);
627   gst_bin_add (GST_BIN (element), sink);
628   gst_element_link_pads (identity, "src", conv, "sink");
629   gst_element_link_pads (conv, "src", scale, "sink");
630   gst_element_link_pads (scale, "src", sink, "sink");
631
632   pad = gst_element_get_pad (identity, "sink");
633   gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
634   gst_object_unref (pad);
635
636   gst_element_set_state (element, GST_STATE_READY);
637
638   /* since we're gonna add it to a bin but don't want to lose it,
639    * we keep a reference. */
640   gst_object_ref (element);
641   g_hash_table_insert (play_bin->cache, "vbin", element);
642
643   return element;
644 }
645
646 /* make an element for playback of video with subtitles embedded.
647  *
648  *  +--------------------------------------------------+
649  *  | tbin                  +-------------+            |
650  *  |          +-----+      | textoverlay |   +------+ |
651  *  |          | csp | +--video_sink      |   | vbin | |
652  * video_sink-sink  src+ +-text_sink     src-sink    | |
653  *  |          +-----+   |  +-------------+   +------+ |
654  * text_sink-------------+                             |
655  *  +--------------------------------------------------+
656  */
657
658 static GstElement *
659 gen_text_element (GstPlayBin * play_bin)
660 {
661   GstElement *element, *csp, *overlay, *vbin;
662   GstPad *pad;
663
664   /* Create our bin */
665   element = gst_bin_new ("textbin");
666
667   /* Text overlay */
668   overlay = gst_element_factory_make ("textoverlay", "overlay");
669
670   /* Create the video rendering bin */
671   vbin = gen_video_element (play_bin);
672
673   /* If no overlay return the video bin */
674   if (!overlay) {
675     GST_WARNING ("No overlay (pango) element, subtitles disabled");
676     return vbin;
677   }
678
679   /* Set some parameters */
680   g_object_set (G_OBJECT (overlay),
681       "halign", "center", "valign", "bottom", NULL);
682   if (play_bin->font_desc) {
683     g_object_set (G_OBJECT (play_bin->textoverlay_element),
684         "font-desc", play_bin->font_desc, NULL);
685   }
686
687   /* Take a ref */
688   play_bin->textoverlay_element = GST_ELEMENT (gst_object_ref (overlay));
689
690   csp = gst_element_factory_make ("ffmpegcolorspace", "subtitlecsp");
691
692   /* Add our elements */
693   gst_bin_add_many (GST_BIN (element), csp, overlay, vbin, NULL);
694
695   /* Link */
696   gst_element_link_pads (csp, "src", overlay, "video_sink");
697   gst_element_link_pads (overlay, "src", vbin, "sink");
698
699   /* Add ghost pads on the subtitle bin */
700   pad = gst_element_get_pad (overlay, "text_sink");
701   gst_element_add_pad (element, gst_ghost_pad_new ("text_sink", pad));
702   gst_object_unref (pad);
703
704   pad = gst_element_get_pad (csp, "sink");
705   gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
706   gst_object_unref (pad);
707
708   /* Set state to READY */
709   gst_element_set_state (element, GST_STATE_READY);
710
711   return element;
712 }
713
714 /* make the element (bin) that contains the elements needed to perform
715  * audio playback.
716  *
717  *  +-------------------------------------------------------------+
718  *  | abin                                                        |
719  *  |      +---------+   +----------+   +---------+   +---------+ |
720  *  |      |audioconv|   |audioscale|   | volume  |   |audiosink| |
721  *  |   +-sink      src-sink       src-sink      src-sink       | |
722  *  |   |  +---------+   +----------+   +---------+   +---------+ |
723  * sink-+                                                         |
724  *  +-------------------------------------------------------------+
725  *
726  */
727 static GstElement *
728 gen_audio_element (GstPlayBin * play_bin)
729 {
730   GstElement *element;
731   GstElement *conv;
732   GstElement *sink;
733   GstElement *volume;
734   GstElement *scale;
735   GstPad *pad;
736
737   element = g_hash_table_lookup (play_bin->cache, "abin");
738   if (element != NULL) {
739     return element;
740   }
741   element = gst_bin_new ("abin");
742   conv = gst_element_factory_make ("audioconvert", "aconv");
743   scale = gst_element_factory_make ("audioscale", "ascale");
744
745   volume = gst_element_factory_make ("volume", "volume");
746   g_object_set (G_OBJECT (volume), "volume", play_bin->volume, NULL);
747   play_bin->volume_element = volume;
748
749   if (play_bin->audio_sink) {
750     sink = play_bin->audio_sink;
751   } else {
752     sink = gst_element_factory_make ("autoaudiosink", "audiosink");
753     if (sink == NULL) {
754       sink = gst_element_factory_make ("alsasink", "audiosink");
755     }
756     if (sink == NULL) {
757       GST_ELEMENT_ERROR (play_bin, CORE, MISSING_PLUGIN,
758           (_("Both autoaudiosink and alsasink elements are missing.")), (NULL));
759       return NULL;
760     }
761     play_bin->audio_sink = GST_ELEMENT (gst_object_ref (sink));
762   }
763
764   gst_object_ref (sink);
765   g_hash_table_insert (play_bin->cache, "audio_sink", sink);
766
767   gst_bin_add (GST_BIN (element), conv);
768   //gst_bin_add (GST_BIN (element), scale);
769   gst_bin_add (GST_BIN (element), volume);
770   gst_bin_add (GST_BIN (element), sink);
771
772   gst_element_link_pads (conv, "src",   /*scale, "sink");
773                                            gst_element_link_pads (scale, "src", */ volume, "sink");
774   gst_element_link_pads (volume, "src", sink, "sink");
775
776   pad = gst_element_get_pad (conv, "sink");
777   gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
778   gst_object_unref (pad);
779
780   gst_element_set_state (element, GST_STATE_READY);
781
782   /* since we're gonna add it to a bin but don't want to lose it,
783    * we keep a reference. */
784   gst_object_ref (element);
785   g_hash_table_insert (play_bin->cache, "abin", element);
786
787   return element;
788 }
789
790 /* make the element (bin) that contains the elements needed to perform
791  * visualisation ouput.  The idea is to split the audio using tee, then 
792  * sending the output to the regular audio bin and the other output to
793  * the vis plugin that transforms it into a video that is rendered with the
794  * normal video bin. The video bin is run in a thread to make sure it does
795  * not block the audio playback pipeline.
796  *
797  *  +--------------------------------------------------------------------------+
798  *  | visbin                                                                   |
799  *  |      +------+   +----------------+                                       |
800  *  |      | tee  |   |   abin ...     |                                       |
801  *  |   +-sink   src-sink              |                                       |
802  *  |   |  |      |   +----------------+                 +-------------------+ |
803  *  |   |  |      |                                      | vthread           | |
804  *  |   |  |      |   +---------+   +------+   +------+  | +--------------+  | |
805  *  |   |  |      |   |audioconv|   | vis  |   |vqueue|  | | vbin ...     |  | |
806  *  |   |  |     src-sink      src-sink   src-sink   src-sink             |  | |
807  *  |   |  |      |   +---------+   +------+   +------+  | +--------------+  | |
808  *  |   |  |      |                                      +-------------------+ |
809  *  |   |  +------+                                                            |
810  * sink-+                                                                      |
811    +--------------------------------------------------------------------------+
812  */
813 static GstElement *
814 gen_vis_element (GstPlayBin * play_bin)
815 {
816   GstElement *element;
817   GstElement *tee;
818   GstElement *asink;
819   GstElement *vsink;
820   GstElement *conv;
821   GstElement *vis;
822   GstElement *vqueue, *aqueue;
823   GstPad *pad, *rpad;
824
825   asink = gen_audio_element (play_bin);
826   if (!asink)
827     return NULL;
828   vsink = gen_video_element (play_bin);
829   if (!vsink) {
830     gst_object_unref (asink);
831     return NULL;
832   }
833
834   element = gst_bin_new ("visbin");
835   tee = gst_element_factory_make ("tee", "tee");
836
837   vqueue = gst_element_factory_make ("queue", "vqueue");
838   aqueue = gst_element_factory_make ("queue", "aqueue");
839
840   gst_bin_add (GST_BIN (element), asink);
841   gst_bin_add (GST_BIN (element), vqueue);
842   gst_bin_add (GST_BIN (element), aqueue);
843   gst_bin_add (GST_BIN (element), vsink);
844   gst_bin_add (GST_BIN (element), tee);
845
846   conv = gst_element_factory_make ("audioconvert", "aconv");
847   if (play_bin->visualisation) {
848     gst_object_ref (play_bin->visualisation);
849     vis = play_bin->visualisation;
850   } else {
851     vis = gst_element_factory_make ("goom", "vis");
852   }
853
854   gst_bin_add (GST_BIN (element), conv);
855   gst_bin_add (GST_BIN (element), vis);
856
857   gst_element_link_pads (conv, "src", vis, "sink");
858   gst_element_link_pads (vis, "src", vqueue, "sink");
859
860   gst_element_link_pads (vqueue, "src", vsink, "sink");
861
862   pad = gst_element_get_pad (aqueue, "sink");
863   rpad = gst_element_get_request_pad (tee, "src%d");
864   gst_pad_link (rpad, pad);
865   gst_object_unref (rpad);
866   gst_object_unref (pad);
867   gst_element_link_pads (aqueue, "src", asink, "sink");
868
869   pad = gst_element_get_pad (conv, "sink");
870   rpad = gst_element_get_request_pad (tee, "src%d");
871   gst_pad_link (rpad, pad);
872   gst_object_unref (rpad);
873   gst_object_unref (pad);
874
875   pad = gst_element_get_pad (tee, "sink");
876   gst_element_add_pad (element, gst_ghost_pad_new ("sink", pad));
877   gst_object_unref (pad);
878
879   return element;
880 }
881
882 /* get rid of all installed sinks */
883 static void
884 remove_sinks (GstPlayBin * play_bin)
885 {
886   GList *sinks;
887   GstObject *parent;
888   GstElement *element;
889   GstPad *pad, *peer;
890
891   GST_DEBUG ("removesinks");
892   element = g_hash_table_lookup (play_bin->cache, "abin");
893   if (element != NULL) {
894     parent = gst_element_get_parent (element);
895     if (parent != NULL) {
896       /* we remove the element from the parent so that
897        * there is no unwanted state change when the parent
898        * is disposed */
899       play_bin->sinks = g_list_remove (play_bin->sinks, element);
900       gst_element_set_state (element, GST_STATE_NULL);
901       gst_bin_remove (GST_BIN (parent), element);
902       gst_object_unref (parent);
903     }
904     pad = gst_element_get_pad (element, "sink");
905     if (pad != NULL) {
906       peer = gst_pad_get_peer (pad);
907       if (peer != NULL) {
908         gst_pad_unlink (peer, pad);
909         gst_object_unref (peer);
910       }
911       gst_object_unref (pad);
912     }
913   }
914   element = g_hash_table_lookup (play_bin->cache, "vbin");
915   if (element != NULL) {
916     parent = gst_element_get_parent (element);
917     if (parent != NULL) {
918       play_bin->sinks = g_list_remove (play_bin->sinks, element);
919       gst_element_set_state (element, GST_STATE_NULL);
920       gst_bin_remove (GST_BIN (parent), element);
921       gst_object_unref (parent);
922     }
923     pad = gst_element_get_pad (element, "sink");
924     if (pad != NULL) {
925       peer = gst_pad_get_peer (pad);
926       if (peer != NULL) {
927         gst_pad_unlink (peer, pad);
928         gst_object_unref (peer);
929       }
930       gst_object_unref (pad);
931     }
932   }
933
934   for (sinks = play_bin->sinks; sinks; sinks = g_list_next (sinks)) {
935     GstElement *element = GST_ELEMENT (sinks->data);
936     GstPad *pad;
937     GstPad *peer;
938
939     pad = gst_element_get_pad (element, "sink");
940
941     GST_LOG ("removing sink %p", element);
942
943     peer = gst_pad_get_peer (pad);
944     if (peer) {
945       gst_pad_unlink (peer, pad);
946       gst_object_unref (peer);
947     }
948     gst_object_unref (pad);
949
950     gst_element_set_state (element, GST_STATE_NULL);
951     gst_bin_remove (GST_BIN (play_bin), element);
952   }
953   g_list_free (play_bin->sinks);
954   play_bin->sinks = NULL;
955
956   /* FIXME: this is probably some refcounting problem */
957   if (play_bin->visualisation && GST_OBJECT_PARENT (play_bin->visualisation)) {
958     gst_element_set_state (play_bin->visualisation, GST_STATE_NULL);
959     gst_bin_remove (GST_BIN (GST_OBJECT_PARENT (play_bin->visualisation)),
960         play_bin->visualisation);
961   }
962
963   if (play_bin->frame) {
964     gst_buffer_unref (play_bin->frame);
965     play_bin->frame = NULL;
966   }
967
968   if (play_bin->textoverlay_element) {
969     gst_object_unref (play_bin->textoverlay_element);
970     play_bin->textoverlay_element = NULL;
971   }
972 }
973
974 /* loop over the streams and set up the pipeline to play this
975  * media file. First we count the number of audio and video streams.
976  * If there is no video stream but there exists an audio stream,
977  * we install a visualisation pipeline.
978  * 
979  * Also make sure to only connect the first audio and video pad. FIXME
980  * this should eventually be handled with a tuner interface so that
981  * one can switch the streams.
982  */
983 static gboolean
984 add_sink (GstPlayBin * play_bin, GstElement * sink, GstPad * srcpad,
985     GstPad * subtitle_pad)
986 {
987   GstPad *sinkpad;
988   GstPadLinkReturn linkres;
989   GstElement *parent;
990   GstStateChangeReturn stateret;
991
992   g_return_val_if_fail (sink != NULL, FALSE);
993   /* this is only for debugging */
994   parent = gst_pad_get_parent_element (srcpad);
995   if (parent) {
996     GST_DEBUG ("Adding sink with state %d (parent: %d, peer: %d)",
997         GST_STATE (sink), GST_STATE (play_bin), GST_STATE (parent));
998     gst_object_unref (parent);
999   }
1000
1001   /* bring it to the PAUSED state so we can link to the peer without
1002    * breaking the flow */
1003   if ((stateret = gst_element_set_state (sink, GST_STATE_PAUSED)) ==
1004       GST_STATE_CHANGE_FAILURE)
1005     goto state_failed;
1006
1007   gst_bin_add (GST_BIN (play_bin), sink);
1008
1009   /* we found a sink for this stream, now try to install it */
1010   sinkpad = gst_element_get_pad (sink, "sink");
1011   linkres = gst_pad_link (srcpad, sinkpad);
1012   gst_object_unref (sinkpad);
1013
1014   /* try to link the pad of the sink to the stream */
1015   if (GST_PAD_LINK_FAILED (linkres))
1016     goto link_failed;
1017
1018   if (GST_IS_PAD (subtitle_pad)) {
1019     sinkpad = gst_element_get_pad (sink, "text_sink");
1020     linkres = gst_pad_link (subtitle_pad, sinkpad);
1021     gst_object_unref (sinkpad);
1022   }
1023
1024   /* try to link the subtitle pad of the sink to the stream */
1025   if (GST_PAD_LINK_FAILED (linkres)) {
1026     goto subtitle_failed;
1027   }
1028
1029   /* we got the sink succesfully linked, now keep the sink
1030    * in our internal list */
1031   play_bin->sinks = g_list_prepend (play_bin->sinks, sink);
1032
1033   return TRUE;
1034
1035   /* ERRORS */
1036 state_failed:
1037   {
1038     GST_DEBUG_OBJECT (play_bin, "state change failure when adding sink");
1039     return FALSE;
1040   }
1041 link_failed:
1042   {
1043     gchar *capsstr;
1044     GstCaps *caps;
1045
1046     /* could not link this stream */
1047     caps = gst_pad_get_caps (srcpad);
1048     capsstr = gst_caps_to_string (caps);
1049     g_warning ("could not link %s: %d", capsstr, linkres);
1050     GST_DEBUG_OBJECT (play_bin,
1051         "link failed when adding sink, caps %s, reason %d", capsstr, linkres);
1052     g_free (capsstr);
1053     g_free (caps);
1054
1055     gst_element_set_state (sink, GST_STATE_NULL);
1056     gst_bin_remove (GST_BIN (play_bin), sink);
1057     return FALSE;
1058   }
1059 subtitle_failed:
1060   {
1061     gchar *capsstr;
1062     GstCaps *caps;
1063
1064     /* could not link this stream */
1065     caps = gst_pad_get_caps (subtitle_pad);
1066     capsstr = gst_caps_to_string (caps);
1067     GST_DEBUG_OBJECT (play_bin,
1068         "subtitle link failed when adding sink, caps %s, reason %d", capsstr,
1069         linkres);
1070     g_free (capsstr);
1071     g_free (caps);
1072
1073     return TRUE;
1074   }
1075 }
1076
1077 static gboolean
1078 setup_sinks (GstPlayBaseBin * play_base_bin, GstPlayBaseGroup * group)
1079 {
1080   GstPlayBin *play_bin = GST_PLAY_BIN (play_base_bin);
1081   GList *streaminfo = NULL, *s;
1082   gboolean need_vis = FALSE;
1083   gboolean need_text = FALSE;
1084   GstPad *textsrcpad = NULL, *pad = NULL;
1085   GstElement *sink;
1086   gboolean res = TRUE;
1087
1088   /* get rid of existing sinks */
1089   if (play_bin->sinks) {
1090     remove_sinks (play_bin);
1091   }
1092   GST_DEBUG_OBJECT (play_base_bin, "setupsinks");
1093
1094   /* find out what to do */
1095   if (group->type[GST_STREAM_TYPE_VIDEO - 1].npads > 0 &&
1096       group->type[GST_STREAM_TYPE_TEXT - 1].npads > 0) {
1097     need_text = TRUE;
1098   } else if (group->type[GST_STREAM_TYPE_VIDEO - 1].npads == 0 &&
1099       group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0 &&
1100       play_bin->visualisation != NULL) {
1101     need_vis = TRUE;
1102   }
1103
1104   /* now actually connect everything */
1105   g_object_get (G_OBJECT (play_base_bin), "stream-info", &streaminfo, NULL);
1106   for (s = streaminfo; s; s = g_list_next (s)) {
1107     GObject *obj = G_OBJECT (s->data);
1108     gint type;
1109     GstObject *object;
1110
1111     g_object_get (obj, "type", &type, NULL);
1112     g_object_get (obj, "object", &object, NULL);
1113   }
1114
1115   /* link audio */
1116   if (group->type[GST_STREAM_TYPE_AUDIO - 1].npads > 0) {
1117     if (need_vis) {
1118       sink = gen_vis_element (play_bin);
1119     } else {
1120       sink = gen_audio_element (play_bin);
1121     }
1122     if (!sink)
1123       return FALSE;
1124     pad = gst_element_get_pad (group->type[GST_STREAM_TYPE_AUDIO - 1].preroll,
1125         "src");
1126     res = add_sink (play_bin, sink, pad, NULL);
1127     gst_object_unref (pad);
1128   }
1129
1130   /* link video */
1131   if (group->type[GST_STREAM_TYPE_VIDEO - 1].npads > 0) {
1132     if (need_text) {
1133       GstObject *parent = NULL, *grandparent = NULL;
1134       GstPad *ghost = NULL;
1135
1136       sink = gen_text_element (play_bin);
1137       textsrcpad =
1138           gst_element_get_pad (group->type[GST_STREAM_TYPE_TEXT - 1].preroll,
1139           "src");
1140       /* This pad is from subtitle-bin, we need to create a ghost pad to have
1141          common grandparents */
1142       parent = gst_object_get_parent (GST_OBJECT (textsrcpad));
1143       if (!parent) {
1144         GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no parent !");
1145         gst_object_unref (textsrcpad);
1146         textsrcpad = NULL;
1147         goto beach;
1148       }
1149
1150       grandparent = gst_object_get_parent (parent);
1151       if (!grandparent) {
1152         GST_WARNING_OBJECT (textsrcpad, "subtitle pad has no grandparent !");
1153         gst_object_unref (parent);
1154         gst_object_unref (textsrcpad);
1155         textsrcpad = NULL;
1156         goto beach;
1157       }
1158
1159       ghost = gst_ghost_pad_new ("text_src", textsrcpad);
1160       if (!GST_IS_PAD (ghost)) {
1161         GST_WARNING_OBJECT (textsrcpad, "failed creating ghost pad for "
1162             "subtitle-bin");
1163         gst_object_unref (parent);
1164         gst_object_unref (grandparent);
1165         gst_object_unref (textsrcpad);
1166         textsrcpad = NULL;
1167         goto beach;
1168       }
1169
1170       if (gst_element_add_pad (GST_ELEMENT (grandparent), ghost)) {
1171         gst_object_unref (textsrcpad);
1172         textsrcpad = ghost;
1173       } else {
1174         GST_WARNING_OBJECT (ghost, "failed adding ghost pad on subtitle-bin");
1175         gst_object_unref (ghost);
1176         gst_object_unref (textsrcpad);
1177         textsrcpad = NULL;
1178       }
1179
1180       gst_object_unref (parent);
1181       gst_object_unref (grandparent);
1182     } else {
1183       sink = gen_video_element (play_bin);
1184     }
1185   beach:
1186     if (!sink)
1187       return FALSE;
1188     pad = gst_element_get_pad (group->type[GST_STREAM_TYPE_VIDEO - 1].preroll,
1189         "src");
1190     res = add_sink (play_bin, sink, pad, textsrcpad);
1191     gst_object_unref (pad);
1192   }
1193
1194   /* remove the sinks now, pipeline get_state will now wait for the
1195    * sinks to preroll */
1196   if (play_bin->fakesink) {
1197     gst_element_set_state (play_bin->fakesink, GST_STATE_NULL);
1198     gst_bin_remove (GST_BIN (play_bin), play_bin->fakesink);
1199     play_bin->fakesink = NULL;
1200   }
1201
1202   return res;
1203 }
1204
1205 /* Send an event to our sinks until one of them works; don't then send to the
1206  * remaining sinks (unlike GstBin)
1207  */
1208 static gboolean
1209 gst_play_bin_send_event_to_sink (GstPlayBin * play_bin, GstEvent * event)
1210 {
1211   GList *sinks = play_bin->sinks;
1212   gboolean res = TRUE;
1213
1214   while (sinks) {
1215     GstElement *sink = GST_ELEMENT_CAST (sinks->data);
1216
1217     gst_event_ref (event);
1218     if ((res = gst_element_send_event (sink, event)))
1219       break;
1220
1221     sinks = g_list_next (sinks);
1222   }
1223
1224   gst_event_unref (event);
1225
1226   return res;
1227 }
1228
1229 static gboolean
1230 do_playbin_seek (GstElement * element, GstEvent * event)
1231 {
1232   gdouble rate;
1233   GstSeekFlags flags;
1234   gboolean flush;
1235   gboolean was_playing = FALSE;
1236   gboolean res;
1237
1238   gst_event_parse_seek (event, &rate, NULL, &flags, NULL, NULL, NULL, NULL);
1239
1240   flush = flags & GST_SEEK_FLAG_FLUSH;
1241
1242   if (flush) {
1243     GstState state;
1244
1245     /* need to call _get_state() since a bin state is only updated
1246      * with this call. */
1247     gst_element_get_state (element, &state, NULL, 0);
1248     was_playing = state == GST_STATE_PLAYING;
1249
1250     if (was_playing) {
1251       gst_element_set_state (element, GST_STATE_PAUSED);
1252     }
1253   }
1254
1255   res = gst_play_bin_send_event_to_sink (GST_PLAY_BIN (element), event);
1256
1257   if (flush && res) {
1258     /* need to reset the stream time to 0 after a flushing seek */
1259     gst_pipeline_set_new_stream_time (GST_PIPELINE (element), 0);
1260     if (was_playing)
1261       /* and continue playing */
1262       gst_element_set_state (element, GST_STATE_PLAYING);
1263   }
1264   return res;
1265 }
1266
1267 /* We only want to send the event to a single sink (overriding GstBin's 
1268  * behaviour), but we want to keep GstPipeline's behaviour - wrapping seek
1269  * events appropriately. So, this is a messy duplication of code. */
1270 static gboolean
1271 gst_play_bin_send_event (GstElement * element, GstEvent * event)
1272 {
1273   gboolean res = FALSE;
1274   GstEventType event_type = GST_EVENT_TYPE (event);
1275
1276
1277   switch (event_type) {
1278     case GST_EVENT_SEEK:
1279       res = do_playbin_seek (element, event);
1280       break;
1281     default:
1282       res = gst_play_bin_send_event_to_sink (GST_PLAY_BIN (element), event);
1283       break;
1284   }
1285
1286   return res;
1287 }
1288
1289 static GstStateChangeReturn
1290 gst_play_bin_change_state (GstElement * element, GstStateChange transition)
1291 {
1292   GstStateChangeReturn ret;
1293   GstPlayBin *play_bin;
1294
1295   play_bin = GST_PLAY_BIN (element);
1296
1297
1298   switch (transition) {
1299     case GST_STATE_CHANGE_READY_TO_PAUSED:
1300       /* this really is the easiest way to make the state change return
1301        * ASYNC until we added the sinks */
1302       if (!play_bin->fakesink) {
1303         play_bin->fakesink = gst_element_factory_make ("fakesink", "test");
1304         gst_bin_add (GST_BIN (play_bin), play_bin->fakesink);
1305       }
1306       break;
1307     default:
1308       break;
1309   }
1310
1311   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1312   if (ret == GST_STATE_CHANGE_FAILURE)
1313     return ret;
1314
1315   switch (transition) {
1316     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1317       /* Set audio sink state to NULL to release the sound device,
1318        * but only if we own it (else we might be in chain-transition). */
1319       //if (play_bin->audio_sink != NULL &&
1320       //    GST_STATE (play_bin->audio_sink) == GST_STATE_PAUSED) {
1321       //  gst_element_set_state (play_bin->audio_sink, GST_STATE_NULL);
1322       //}
1323       break;
1324     case GST_STATE_CHANGE_PAUSED_TO_READY:
1325       /* Check for NULL because the state transition may be done by
1326        * gst_bin_dispose which is called by gst_play_bin_dispose, and in that
1327        * case, we don't want to run remove_sinks.
1328        * FIXME: should the NULL test be done in remove_sinks? Should we just
1329        * set the state to NULL in gst_play_bin_dispose?
1330        */
1331       if (play_bin->cache != NULL) {
1332         remove_sinks (play_bin);
1333       }
1334       if (play_bin->fakesink) {
1335         gst_element_set_state (play_bin->fakesink, GST_STATE_NULL);
1336         gst_bin_remove (GST_BIN (play_bin), play_bin->fakesink);
1337         play_bin->fakesink = NULL;
1338       }
1339       break;
1340     default:
1341       break;
1342   }
1343
1344   return ret;
1345 }
1346
1347 static gboolean
1348 plugin_init (GstPlugin * plugin)
1349 {
1350   GST_DEBUG_CATEGORY_INIT (gst_play_bin_debug, "playbin", 0, "play bin");
1351
1352 #ifdef ENABLE_NLS
1353   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
1354       LOCALEDIR);
1355   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
1356 #endif /* ENABLE_NLS */
1357
1358   return gst_element_register (plugin, "playbin", GST_RANK_NONE,
1359       GST_TYPE_PLAY_BIN);
1360 }
1361
1362 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
1363     GST_VERSION_MINOR,
1364     "playbin",
1365     "player bin", plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME,
1366     GST_PACKAGE_ORIGIN)