0a4c3c5969d9b28c3201327dc15891dc95851c3c
[platform/upstream/gst-plugins-base.git] / tests / examples / seek / seek.c
1 /* GStreamer
2  *
3  * seek.c: seeking sample application
4  *
5  * Copyright (C) 2005 Wim Taymans <wim@fluendo.com>
6  *               2006 Stefan Kost <ensonic@users.sf.net>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
27 /* FIXME 0.11: suppress warnings for deprecated API such as GStaticRecMutex
28  * with newer GTK versions (>= 3.3.0) */
29 #define GDK_DISABLE_DEPRECATION_WARNINGS
30
31 #include <stdlib.h>
32 #include <math.h>
33 #include <glib.h>
34 #include <gtk/gtk.h>
35 #include <gst/gst.h>
36 #include <string.h>
37
38 #include <gdk/gdk.h>
39 #if defined (GDK_WINDOWING_X11)
40 #include <gdk/gdkx.h>
41 #elif defined (GDK_WINDOWING_WIN32)
42 #include <gdk/gdkwin32.h>
43 #elif defined (GDK_WINDOWING_QUARTZ)
44 #include <gdk/gdkquartzwindow.h>
45 #endif
46
47 #include <gst/interfaces/xoverlay.h>
48
49 GST_DEBUG_CATEGORY_STATIC (seek_debug);
50 #define GST_CAT_DEFAULT (seek_debug)
51
52 /* configuration */
53
54 #define SOURCE "filesrc"
55
56 static gchar *opt_audiosink_str;        /* NULL */
57 static gchar *opt_videosink_str;        /* NULL */
58
59 #define FILL_INTERVAL 100
60 //#define UPDATE_INTERVAL 500
61 //#define UPDATE_INTERVAL 100
62 #define UPDATE_INTERVAL 40
63
64 /* number of milliseconds to play for after a seek */
65 #define SCRUB_TIME 100
66
67 /* timeout for gst_element_get_state() after a seek */
68 #define SEEK_TIMEOUT 40 * GST_MSECOND
69
70 #define DEFAULT_VIDEO_HEIGHT 300
71
72 /* the state to go to when stop is pressed */
73 #define STOP_STATE      GST_STATE_READY
74
75 #define N_GRAD 1000.0
76
77 static GList *seekable_pads = NULL;
78 static GList *rate_pads = NULL;
79 static GList *seekable_elements = NULL;
80
81 static gboolean accurate_seek = FALSE;
82 static gboolean keyframe_seek = FALSE;
83 static gboolean loop_seek = FALSE;
84 static gboolean flush_seek = TRUE;
85 static gboolean scrub = TRUE;
86 static gboolean play_scrub = FALSE;
87 static gboolean skip_seek = FALSE;
88 static gdouble rate = 1.0;
89
90 static GstElement *pipeline;
91 static gint pipeline_type;
92 static const gchar *pipeline_spec;
93 static gint64 position = -1;
94 static gint64 duration = -1;
95 static GtkAdjustment *adjustment;
96 static GtkWidget *hscale, *statusbar;
97 static guint status_id = 0;
98 static gboolean stats = FALSE;
99 static gboolean elem_seek = FALSE;
100 static gboolean verbose = FALSE;
101
102 static gboolean is_live = FALSE;
103 static gboolean buffering = FALSE;
104 static GstBufferingMode mode;
105 static gint64 buffering_left;
106 static GstState state = GST_STATE_NULL;
107 static guint update_id = 0;
108 static guint seek_timeout_id = 0;
109 static gulong changed_id;
110 static guint fill_id = 0;
111
112 static gint n_video = 0, n_audio = 0, n_text = 0;
113 static gboolean need_streams = TRUE;
114 static GtkWidget *video_combo, *audio_combo, *text_combo, *vis_combo;
115 static GtkWidget *vis_checkbox, *video_checkbox, *audio_checkbox;
116 static GtkWidget *text_checkbox, *mute_checkbox, *volume_spinbutton;
117 static GtkWidget *skip_checkbox, *video_window, *download_checkbox;
118 static GtkWidget *buffer_checkbox, *rate_spinbutton;
119
120 static GStaticMutex state_mutex = G_STATIC_MUTEX_INIT;
121
122 static GtkWidget *format_combo, *step_amount_spinbutton, *step_rate_spinbutton;
123 static GtkWidget *shuttle_checkbox, *step_button;
124 static GtkWidget *shuttle_hscale;
125 static GtkAdjustment *shuttle_adjustment;
126
127 static GList *paths = NULL, *l = NULL;
128
129 /* we keep an array of the visualisation entries so that we can easily switch
130  * with the combo box index. */
131 typedef struct
132 {
133   GstElementFactory *factory;
134 } VisEntry;
135
136 static GArray *vis_entries;
137
138 static void clear_streams (GstElement * pipeline);
139 static void volume_notify_cb (GstElement * pipeline, GParamSpec * arg,
140     gpointer user_dat);
141
142 /* pipeline construction */
143
144 typedef struct
145 {
146   const gchar *padname;
147   GstPad *target;
148   GstElement *bin;
149 }
150 dyn_link;
151
152 static GstElement *
153 gst_element_factory_make_or_warn (const gchar * type, const gchar * name)
154 {
155   GstElement *element = gst_element_factory_make (type, name);
156
157 #ifndef GST_DISABLE_PARSE
158   if (!element) {
159     /* Try parsing it as a pipeline description */
160     element = gst_parse_bin_from_description (type, TRUE, NULL);
161     if (element) {
162       gst_element_set_name (element, name);
163     }
164   }
165 #endif
166
167   if (!element) {
168     g_warning ("Failed to create element %s of type %s", name, type);
169   }
170
171   return element;
172 }
173
174 static void
175 dynamic_link (GstPadTemplate * templ, GstPad * newpad, gpointer data)
176 {
177   gchar *padname;
178   dyn_link *connect = (dyn_link *) data;
179
180   padname = gst_pad_get_name (newpad);
181
182   if (connect->padname == NULL || !strcmp (padname, connect->padname)) {
183     if (connect->bin)
184       gst_bin_add (GST_BIN (pipeline), connect->bin);
185     gst_pad_link (newpad, connect->target);
186
187     //seekable_pads = g_list_prepend (seekable_pads, newpad);
188     rate_pads = g_list_prepend (rate_pads, newpad);
189   }
190   g_free (padname);
191 }
192
193 static void
194 setup_dynamic_link (GstElement * element, const gchar * padname,
195     GstPad * target, GstElement * bin)
196 {
197   dyn_link *connect;
198
199   connect = g_new0 (dyn_link, 1);
200   connect->padname = g_strdup (padname);
201   connect->target = target;
202   connect->bin = bin;
203
204   g_signal_connect (G_OBJECT (element), "pad-added", G_CALLBACK (dynamic_link),
205       connect);
206 }
207
208 static GstElement *
209 make_mod_pipeline (const gchar * location)
210 {
211   GstElement *pipeline;
212   GstElement *src, *decoder, *audiosink;
213   GstPad *seekable;
214
215   pipeline = gst_pipeline_new ("app");
216
217   src = gst_element_factory_make_or_warn (SOURCE, "src");
218   decoder = gst_element_factory_make_or_warn ("modplug", "decoder");
219   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
220   //g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL);
221
222   g_object_set (G_OBJECT (src), "location", location, NULL);
223
224   gst_bin_add (GST_BIN (pipeline), src);
225   gst_bin_add (GST_BIN (pipeline), decoder);
226   gst_bin_add (GST_BIN (pipeline), audiosink);
227
228   gst_element_link (src, decoder);
229   gst_element_link (decoder, audiosink);
230
231   seekable = gst_element_get_static_pad (decoder, "src");
232   seekable_pads = g_list_prepend (seekable_pads, seekable);
233   rate_pads = g_list_prepend (rate_pads, seekable);
234   rate_pads =
235       g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
236
237   return pipeline;
238 }
239
240 static GstElement *
241 make_dv_pipeline (const gchar * location)
242 {
243   GstElement *pipeline;
244   GstElement *src, *demux, *decoder, *audiosink, *videosink;
245   GstElement *a_queue, *v_queue;
246   GstPad *seekable;
247
248   pipeline = gst_pipeline_new ("app");
249
250   src = gst_element_factory_make_or_warn (SOURCE, "src");
251   demux = gst_element_factory_make_or_warn ("dvdemux", "demuxer");
252   v_queue = gst_element_factory_make_or_warn ("queue", "v_queue");
253   decoder = gst_element_factory_make_or_warn ("ffdec_dvvideo", "decoder");
254   videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
255   a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
256   audiosink = gst_element_factory_make_or_warn ("alsasink", "a_sink");
257
258   g_object_set (G_OBJECT (src), "location", location, NULL);
259
260   gst_bin_add (GST_BIN (pipeline), src);
261   gst_bin_add (GST_BIN (pipeline), demux);
262   gst_bin_add (GST_BIN (pipeline), a_queue);
263   gst_bin_add (GST_BIN (pipeline), audiosink);
264   gst_bin_add (GST_BIN (pipeline), v_queue);
265   gst_bin_add (GST_BIN (pipeline), decoder);
266   gst_bin_add (GST_BIN (pipeline), videosink);
267
268   gst_element_link (src, demux);
269   gst_element_link (a_queue, audiosink);
270   gst_element_link (v_queue, decoder);
271   gst_element_link (decoder, videosink);
272
273   setup_dynamic_link (demux, "video", gst_element_get_static_pad (v_queue,
274           "sink"), NULL);
275   setup_dynamic_link (demux, "audio", gst_element_get_static_pad (a_queue,
276           "sink"), NULL);
277
278   seekable = gst_element_get_static_pad (decoder, "src");
279   seekable_pads = g_list_prepend (seekable_pads, seekable);
280   rate_pads = g_list_prepend (rate_pads, seekable);
281
282   return pipeline;
283 }
284
285 static GstElement *
286 make_wav_pipeline (const gchar * location)
287 {
288   GstElement *pipeline;
289   GstElement *src, *decoder, *audiosink;
290
291   pipeline = gst_pipeline_new ("app");
292
293   src = gst_element_factory_make_or_warn (SOURCE, "src");
294   decoder = gst_element_factory_make_or_warn ("wavparse", "decoder");
295   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
296
297   g_object_set (G_OBJECT (src), "location", location, NULL);
298
299   gst_bin_add (GST_BIN (pipeline), src);
300   gst_bin_add (GST_BIN (pipeline), decoder);
301   gst_bin_add (GST_BIN (pipeline), audiosink);
302
303   gst_element_link (src, decoder);
304
305   setup_dynamic_link (decoder, "src", gst_element_get_static_pad (audiosink,
306           "sink"), NULL);
307
308   seekable_elements = g_list_prepend (seekable_elements, audiosink);
309
310   /* force element seeking on this pipeline */
311   elem_seek = TRUE;
312
313   return pipeline;
314 }
315
316 static GstElement *
317 make_flac_pipeline (const gchar * location)
318 {
319   GstElement *pipeline;
320   GstElement *src, *decoder, *audiosink;
321   GstPad *seekable;
322
323   pipeline = gst_pipeline_new ("app");
324
325   src = gst_element_factory_make_or_warn (SOURCE, "src");
326   decoder = gst_element_factory_make_or_warn ("flacdec", "decoder");
327   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
328   g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL);
329
330   g_object_set (G_OBJECT (src), "location", location, NULL);
331
332   gst_bin_add (GST_BIN (pipeline), src);
333   gst_bin_add (GST_BIN (pipeline), decoder);
334   gst_bin_add (GST_BIN (pipeline), audiosink);
335
336   gst_element_link (src, decoder);
337   gst_element_link (decoder, audiosink);
338
339   seekable = gst_element_get_static_pad (decoder, "src");
340   seekable_pads = g_list_prepend (seekable_pads, seekable);
341   rate_pads = g_list_prepend (rate_pads, seekable);
342   rate_pads =
343       g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
344
345   return pipeline;
346 }
347
348 static GstElement *
349 make_sid_pipeline (const gchar * location)
350 {
351   GstElement *pipeline;
352   GstElement *src, *decoder, *audiosink;
353   GstPad *seekable;
354
355   pipeline = gst_pipeline_new ("app");
356
357   src = gst_element_factory_make_or_warn (SOURCE, "src");
358   decoder = gst_element_factory_make_or_warn ("siddec", "decoder");
359   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
360   //g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL);
361
362   g_object_set (G_OBJECT (src), "location", location, NULL);
363
364   gst_bin_add (GST_BIN (pipeline), src);
365   gst_bin_add (GST_BIN (pipeline), decoder);
366   gst_bin_add (GST_BIN (pipeline), audiosink);
367
368   gst_element_link (src, decoder);
369   gst_element_link (decoder, audiosink);
370
371   seekable = gst_element_get_static_pad (decoder, "src");
372   seekable_pads = g_list_prepend (seekable_pads, seekable);
373   rate_pads = g_list_prepend (rate_pads, seekable);
374   rate_pads =
375       g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
376
377   return pipeline;
378 }
379
380 static GstElement *
381 make_parse_pipeline (const gchar * location)
382 {
383   GstElement *pipeline;
384   GstElement *src, *parser, *fakesink;
385   GstPad *seekable;
386
387   pipeline = gst_pipeline_new ("app");
388
389   src = gst_element_factory_make_or_warn (SOURCE, "src");
390   parser = gst_element_factory_make_or_warn ("mpegparse", "parse");
391   fakesink = gst_element_factory_make_or_warn ("fakesink", "sink");
392   g_object_set (G_OBJECT (fakesink), "silent", TRUE, NULL);
393   g_object_set (G_OBJECT (fakesink), "sync", TRUE, NULL);
394
395   g_object_set (G_OBJECT (src), "location", location, NULL);
396
397   gst_bin_add (GST_BIN (pipeline), src);
398   gst_bin_add (GST_BIN (pipeline), parser);
399   gst_bin_add (GST_BIN (pipeline), fakesink);
400
401   gst_element_link (src, parser);
402   gst_element_link (parser, fakesink);
403
404   seekable = gst_element_get_static_pad (parser, "src");
405   seekable_pads = g_list_prepend (seekable_pads, seekable);
406   rate_pads = g_list_prepend (rate_pads, seekable);
407   rate_pads =
408       g_list_prepend (rate_pads, gst_element_get_static_pad (parser, "sink"));
409
410   return pipeline;
411 }
412
413 static GstElement *
414 make_vorbis_pipeline (const gchar * location)
415 {
416   GstElement *pipeline, *audio_bin;
417   GstElement *src, *demux, *decoder, *convert, *audiosink;
418   GstPad *pad, *seekable;
419
420   pipeline = gst_pipeline_new ("app");
421
422   src = gst_element_factory_make_or_warn (SOURCE, "src");
423   demux = gst_element_factory_make_or_warn ("oggdemux", "demux");
424   decoder = gst_element_factory_make_or_warn ("vorbisdec", "decoder");
425   convert = gst_element_factory_make_or_warn ("audioconvert", "convert");
426   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
427   g_object_set (G_OBJECT (audiosink), "sync", TRUE, NULL);
428
429   g_object_set (G_OBJECT (src), "location", location, NULL);
430
431   audio_bin = gst_bin_new ("a_decoder_bin");
432
433   gst_bin_add (GST_BIN (pipeline), src);
434   gst_bin_add (GST_BIN (pipeline), demux);
435   gst_bin_add (GST_BIN (audio_bin), decoder);
436   gst_bin_add (GST_BIN (audio_bin), convert);
437   gst_bin_add (GST_BIN (audio_bin), audiosink);
438   gst_bin_add (GST_BIN (pipeline), audio_bin);
439
440   gst_element_link (src, demux);
441   gst_element_link (decoder, convert);
442   gst_element_link (convert, audiosink);
443
444   pad = gst_element_get_static_pad (decoder, "sink");
445   gst_element_add_pad (audio_bin, gst_ghost_pad_new ("sink", pad));
446   gst_object_unref (pad);
447
448   setup_dynamic_link (demux, NULL, gst_element_get_static_pad (audio_bin,
449           "sink"), NULL);
450
451   seekable = gst_element_get_static_pad (decoder, "src");
452   seekable_pads = g_list_prepend (seekable_pads, seekable);
453   rate_pads = g_list_prepend (rate_pads, seekable);
454   rate_pads =
455       g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
456
457   return pipeline;
458 }
459
460 static GstElement *
461 make_theora_pipeline (const gchar * location)
462 {
463   GstElement *pipeline, *video_bin;
464   GstElement *src, *demux, *decoder, *convert, *videosink;
465   GstPad *pad, *seekable;
466
467   pipeline = gst_pipeline_new ("app");
468
469   src = gst_element_factory_make_or_warn (SOURCE, "src");
470   demux = gst_element_factory_make_or_warn ("oggdemux", "demux");
471   decoder = gst_element_factory_make_or_warn ("theoradec", "decoder");
472   convert = gst_element_factory_make_or_warn ("ffmpegcolorspace", "convert");
473   videosink = gst_element_factory_make_or_warn (opt_videosink_str, "sink");
474
475   g_object_set (G_OBJECT (src), "location", location, NULL);
476
477   video_bin = gst_bin_new ("v_decoder_bin");
478
479   gst_bin_add (GST_BIN (pipeline), src);
480   gst_bin_add (GST_BIN (pipeline), demux);
481   gst_bin_add (GST_BIN (video_bin), decoder);
482   gst_bin_add (GST_BIN (video_bin), convert);
483   gst_bin_add (GST_BIN (video_bin), videosink);
484   gst_bin_add (GST_BIN (pipeline), video_bin);
485
486   gst_element_link (src, demux);
487   gst_element_link (decoder, convert);
488   gst_element_link (convert, videosink);
489
490   pad = gst_element_get_static_pad (decoder, "sink");
491   gst_element_add_pad (video_bin, gst_ghost_pad_new ("sink", pad));
492   gst_object_unref (pad);
493
494   setup_dynamic_link (demux, NULL, gst_element_get_static_pad (video_bin,
495           "sink"), NULL);
496
497   seekable = gst_element_get_static_pad (decoder, "src");
498   seekable_pads = g_list_prepend (seekable_pads, seekable);
499   rate_pads = g_list_prepend (rate_pads, seekable);
500   rate_pads =
501       g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
502
503   return pipeline;
504 }
505
506 static GstElement *
507 make_vorbis_theora_pipeline (const gchar * location)
508 {
509   GstElement *pipeline, *audio_bin, *video_bin;
510   GstElement *src, *demux, *a_decoder, *a_convert, *v_decoder, *v_convert;
511   GstElement *audiosink, *videosink;
512   GstElement *a_queue, *v_queue, *v_scale;
513   GstPad *seekable;
514   GstPad *pad;
515
516   pipeline = gst_pipeline_new ("app");
517
518   src = gst_element_factory_make_or_warn (SOURCE, "src");
519   g_object_set (G_OBJECT (src), "location", location, NULL);
520
521   demux = gst_element_factory_make_or_warn ("oggdemux", "demux");
522
523   gst_bin_add (GST_BIN (pipeline), src);
524   gst_bin_add (GST_BIN (pipeline), demux);
525   gst_element_link (src, demux);
526
527   audio_bin = gst_bin_new ("a_decoder_bin");
528   a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
529   a_decoder = gst_element_factory_make_or_warn ("vorbisdec", "a_dec");
530   a_convert = gst_element_factory_make_or_warn ("audioconvert", "a_convert");
531   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
532
533   gst_bin_add (GST_BIN (pipeline), audio_bin);
534
535   gst_bin_add (GST_BIN (audio_bin), a_queue);
536   gst_bin_add (GST_BIN (audio_bin), a_decoder);
537   gst_bin_add (GST_BIN (audio_bin), a_convert);
538   gst_bin_add (GST_BIN (audio_bin), audiosink);
539
540   gst_element_link (a_queue, a_decoder);
541   gst_element_link (a_decoder, a_convert);
542   gst_element_link (a_convert, audiosink);
543
544   pad = gst_element_get_static_pad (a_queue, "sink");
545   gst_element_add_pad (audio_bin, gst_ghost_pad_new ("sink", pad));
546   gst_object_unref (pad);
547
548   setup_dynamic_link (demux, NULL, gst_element_get_static_pad (audio_bin,
549           "sink"), NULL);
550
551   video_bin = gst_bin_new ("v_decoder_bin");
552   v_queue = gst_element_factory_make_or_warn ("queue", "v_queue");
553   v_decoder = gst_element_factory_make_or_warn ("theoradec", "v_dec");
554   v_convert =
555       gst_element_factory_make_or_warn ("ffmpegcolorspace", "v_convert");
556   v_scale = gst_element_factory_make_or_warn ("videoscale", "v_scale");
557   videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
558
559   gst_bin_add (GST_BIN (pipeline), video_bin);
560
561   gst_bin_add (GST_BIN (video_bin), v_queue);
562   gst_bin_add (GST_BIN (video_bin), v_decoder);
563   gst_bin_add (GST_BIN (video_bin), v_convert);
564   gst_bin_add (GST_BIN (video_bin), v_scale);
565   gst_bin_add (GST_BIN (video_bin), videosink);
566
567   gst_element_link_many (v_queue, v_decoder, v_convert, v_scale, videosink,
568       NULL);
569
570   pad = gst_element_get_static_pad (v_queue, "sink");
571   gst_element_add_pad (video_bin, gst_ghost_pad_new ("sink", pad));
572   gst_object_unref (pad);
573
574   setup_dynamic_link (demux, NULL, gst_element_get_static_pad (video_bin,
575           "sink"), NULL);
576
577   seekable = gst_element_get_static_pad (a_decoder, "src");
578   seekable_pads = g_list_prepend (seekable_pads, seekable);
579   rate_pads = g_list_prepend (rate_pads, seekable);
580   rate_pads =
581       g_list_prepend (rate_pads, gst_element_get_static_pad (a_decoder,
582           "sink"));
583
584   return pipeline;
585 }
586
587 static GstElement *
588 make_avi_msmpeg4v3_mp3_pipeline (const gchar * location)
589 {
590   GstElement *pipeline, *audio_bin, *video_bin;
591   GstElement *src, *demux, *a_decoder, *a_convert, *v_decoder, *v_convert;
592   GstElement *audiosink, *videosink;
593   GstElement *a_queue, *v_queue;
594   GstPad *seekable, *pad;
595
596   pipeline = gst_pipeline_new ("app");
597
598   src = gst_element_factory_make_or_warn (SOURCE, "src");
599   g_object_set (G_OBJECT (src), "location", location, NULL);
600
601   demux = gst_element_factory_make_or_warn ("avidemux", "demux");
602
603   gst_bin_add (GST_BIN (pipeline), src);
604   gst_bin_add (GST_BIN (pipeline), demux);
605   gst_element_link (src, demux);
606
607   audio_bin = gst_bin_new ("a_decoder_bin");
608   a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
609   a_decoder = gst_element_factory_make_or_warn ("mad", "a_dec");
610   a_convert = gst_element_factory_make_or_warn ("audioconvert", "a_convert");
611   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
612
613   gst_bin_add (GST_BIN (audio_bin), a_queue);
614   gst_bin_add (GST_BIN (audio_bin), a_decoder);
615   gst_bin_add (GST_BIN (audio_bin), a_convert);
616   gst_bin_add (GST_BIN (audio_bin), audiosink);
617
618   gst_element_link (a_queue, a_decoder);
619   gst_element_link (a_decoder, a_convert);
620   gst_element_link (a_convert, audiosink);
621
622   gst_bin_add (GST_BIN (pipeline), audio_bin);
623
624   pad = gst_element_get_static_pad (a_queue, "sink");
625   gst_element_add_pad (audio_bin, gst_ghost_pad_new ("sink", pad));
626   gst_object_unref (pad);
627
628   setup_dynamic_link (demux, NULL, gst_element_get_static_pad (audio_bin,
629           "sink"), NULL);
630
631   video_bin = gst_bin_new ("v_decoder_bin");
632   v_queue = gst_element_factory_make_or_warn ("queue", "v_queue");
633   v_decoder = gst_element_factory_make_or_warn ("ffdec_msmpeg4", "v_dec");
634   v_convert =
635       gst_element_factory_make_or_warn ("ffmpegcolorspace", "v_convert");
636   videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
637
638   gst_bin_add (GST_BIN (video_bin), v_queue);
639   gst_bin_add (GST_BIN (video_bin), v_decoder);
640   gst_bin_add (GST_BIN (video_bin), v_convert);
641   gst_bin_add (GST_BIN (video_bin), videosink);
642
643   gst_element_link_many (v_queue, v_decoder, v_convert, videosink, NULL);
644
645   gst_bin_add (GST_BIN (pipeline), video_bin);
646
647   pad = gst_element_get_static_pad (v_queue, "sink");
648   gst_element_add_pad (video_bin, gst_ghost_pad_new ("sink", pad));
649   gst_object_unref (pad);
650
651   setup_dynamic_link (demux, NULL, gst_element_get_static_pad (video_bin,
652           "sink"), NULL);
653
654   seekable = gst_element_get_static_pad (a_decoder, "src");
655   seekable_pads = g_list_prepend (seekable_pads, seekable);
656   rate_pads = g_list_prepend (rate_pads, seekable);
657   rate_pads =
658       g_list_prepend (rate_pads, gst_element_get_static_pad (a_decoder,
659           "sink"));
660
661   return pipeline;
662 }
663
664 static GstElement *
665 make_mp3_pipeline (const gchar * location)
666 {
667   GstElement *pipeline;
668   GstElement *src, *parser, *decoder, *audiosink, *queue;
669   GstPad *seekable;
670
671   pipeline = gst_pipeline_new ("app");
672
673   src = gst_element_factory_make_or_warn (SOURCE, "src");
674   parser = gst_element_factory_make_or_warn ("mp3parse", "parse");
675   decoder = gst_element_factory_make_or_warn ("mad", "dec");
676   queue = gst_element_factory_make_or_warn ("queue", "queue");
677   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
678
679   seekable_elements = g_list_prepend (seekable_elements, audiosink);
680
681   g_object_set (G_OBJECT (src), "location", location, NULL);
682   //g_object_set (G_OBJECT (audiosink), "fragment", 0x00180008, NULL);
683
684   gst_bin_add (GST_BIN (pipeline), src);
685   gst_bin_add (GST_BIN (pipeline), parser);
686   gst_bin_add (GST_BIN (pipeline), decoder);
687   gst_bin_add (GST_BIN (pipeline), queue);
688   gst_bin_add (GST_BIN (pipeline), audiosink);
689
690   gst_element_link (src, parser);
691   gst_element_link (parser, decoder);
692   gst_element_link (decoder, queue);
693   gst_element_link (queue, audiosink);
694
695   seekable = gst_element_get_static_pad (queue, "src");
696   seekable_pads = g_list_prepend (seekable_pads, seekable);
697   rate_pads = g_list_prepend (rate_pads, seekable);
698   rate_pads =
699       g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
700
701   return pipeline;
702 }
703
704 static GstElement *
705 make_avi_pipeline (const gchar * location)
706 {
707   GstElement *pipeline, *audio_bin, *video_bin;
708   GstElement *src, *demux, *a_decoder, *v_decoder, *audiosink, *videosink;
709   GstElement *a_queue = NULL, *v_queue = NULL;
710   GstPad *seekable;
711
712   pipeline = gst_pipeline_new ("app");
713
714   src = gst_element_factory_make_or_warn (SOURCE, "src");
715   g_object_set (G_OBJECT (src), "location", location, NULL);
716
717   demux = gst_element_factory_make_or_warn ("avidemux", "demux");
718   seekable_elements = g_list_prepend (seekable_elements, demux);
719
720   gst_bin_add (GST_BIN (pipeline), src);
721   gst_bin_add (GST_BIN (pipeline), demux);
722   gst_element_link (src, demux);
723
724   audio_bin = gst_bin_new ("a_decoder_bin");
725   a_decoder = gst_element_factory_make_or_warn ("mad", "a_dec");
726   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
727   a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
728   gst_element_link (a_decoder, a_queue);
729   gst_element_link (a_queue, audiosink);
730   gst_bin_add (GST_BIN (audio_bin), a_decoder);
731   gst_bin_add (GST_BIN (audio_bin), a_queue);
732   gst_bin_add (GST_BIN (audio_bin), audiosink);
733   gst_element_set_state (audio_bin, GST_STATE_PAUSED);
734
735   setup_dynamic_link (demux, "audio_00", gst_element_get_static_pad (a_decoder,
736           "sink"), audio_bin);
737
738   seekable = gst_element_get_static_pad (a_queue, "src");
739   seekable_pads = g_list_prepend (seekable_pads, seekable);
740   rate_pads = g_list_prepend (rate_pads, seekable);
741   rate_pads =
742       g_list_prepend (rate_pads, gst_element_get_static_pad (a_decoder,
743           "sink"));
744
745   video_bin = gst_bin_new ("v_decoder_bin");
746   v_decoder = gst_element_factory_make_or_warn ("ffmpegdecall", "v_dec");
747   videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
748   v_queue = gst_element_factory_make_or_warn ("queue", "v_queue");
749   gst_element_link (v_decoder, v_queue);
750   gst_element_link (v_queue, videosink);
751   gst_bin_add (GST_BIN (video_bin), v_decoder);
752   gst_bin_add (GST_BIN (video_bin), v_queue);
753   gst_bin_add (GST_BIN (video_bin), videosink);
754
755   gst_element_set_state (video_bin, GST_STATE_PAUSED);
756
757   setup_dynamic_link (demux, "video_00", gst_element_get_static_pad (v_decoder,
758           "sink"), video_bin);
759
760   seekable = gst_element_get_static_pad (v_queue, "src");
761   seekable_pads = g_list_prepend (seekable_pads, seekable);
762   rate_pads = g_list_prepend (rate_pads, seekable);
763   rate_pads =
764       g_list_prepend (rate_pads, gst_element_get_static_pad (v_decoder,
765           "sink"));
766
767   return pipeline;
768 }
769
770 static GstElement *
771 make_mpeg_pipeline (const gchar * location)
772 {
773   GstElement *pipeline, *audio_bin, *video_bin;
774   GstElement *src, *demux, *a_decoder, *v_decoder, *v_filter;
775   GstElement *audiosink, *videosink;
776   GstElement *a_queue, *v_queue;
777   GstPad *seekable;
778   GstPad *pad;
779
780   pipeline = gst_pipeline_new ("app");
781
782   src = gst_element_factory_make_or_warn (SOURCE, "src");
783   g_object_set (G_OBJECT (src), "location", location, NULL);
784
785   //demux = gst_element_factory_make_or_warn ("mpegdemux", "demux");
786   demux = gst_element_factory_make_or_warn ("flupsdemux", "demux");
787
788   gst_bin_add (GST_BIN (pipeline), src);
789   gst_bin_add (GST_BIN (pipeline), demux);
790   gst_element_link (src, demux);
791
792   audio_bin = gst_bin_new ("a_decoder_bin");
793   a_decoder = gst_element_factory_make_or_warn ("mad", "a_dec");
794   a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
795   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
796   gst_bin_add (GST_BIN (audio_bin), a_decoder);
797   gst_bin_add (GST_BIN (audio_bin), a_queue);
798   gst_bin_add (GST_BIN (audio_bin), audiosink);
799
800   gst_element_link (a_decoder, a_queue);
801   gst_element_link (a_queue, audiosink);
802
803   gst_bin_add (GST_BIN (pipeline), audio_bin);
804
805   pad = gst_element_get_static_pad (a_decoder, "sink");
806   gst_element_add_pad (audio_bin, gst_ghost_pad_new ("sink", pad));
807   gst_object_unref (pad);
808
809   setup_dynamic_link (demux, "audio_c0", gst_element_get_static_pad (audio_bin,
810           "sink"), NULL);
811
812   video_bin = gst_bin_new ("v_decoder_bin");
813   v_decoder = gst_element_factory_make_or_warn ("mpeg2dec", "v_dec");
814   v_queue = gst_element_factory_make_or_warn ("queue", "v_queue");
815   v_filter = gst_element_factory_make_or_warn ("ffmpegcolorspace", "v_filter");
816   videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
817
818   gst_bin_add (GST_BIN (video_bin), v_decoder);
819   gst_bin_add (GST_BIN (video_bin), v_queue);
820   gst_bin_add (GST_BIN (video_bin), v_filter);
821   gst_bin_add (GST_BIN (video_bin), videosink);
822
823   gst_element_link (v_decoder, v_queue);
824   gst_element_link (v_queue, v_filter);
825   gst_element_link (v_filter, videosink);
826
827   gst_bin_add (GST_BIN (pipeline), video_bin);
828
829   pad = gst_element_get_static_pad (v_decoder, "sink");
830   gst_element_add_pad (video_bin, gst_ghost_pad_new ("sink", pad));
831   gst_object_unref (pad);
832
833   setup_dynamic_link (demux, "video_e0", gst_element_get_static_pad (video_bin,
834           "sink"), NULL);
835
836   seekable = gst_element_get_static_pad (v_filter, "src");
837   seekable_pads = g_list_prepend (seekable_pads, seekable);
838   rate_pads = g_list_prepend (rate_pads, seekable);
839   rate_pads =
840       g_list_prepend (rate_pads, gst_element_get_static_pad (v_decoder,
841           "sink"));
842
843   return pipeline;
844 }
845
846 static GstElement *
847 make_mpegnt_pipeline (const gchar * location)
848 {
849   GstElement *pipeline, *audio_bin, *video_bin;
850   GstElement *src, *demux, *a_decoder, *v_decoder, *v_filter;
851   GstElement *audiosink, *videosink;
852   GstElement *a_queue;
853   GstPad *seekable;
854
855   pipeline = gst_pipeline_new ("app");
856
857   src = gst_element_factory_make_or_warn (SOURCE, "src");
858   g_object_set (G_OBJECT (src), "location", location, NULL);
859
860   demux = gst_element_factory_make_or_warn ("mpegdemux", "demux");
861   //g_object_set (G_OBJECT (demux), "sync", TRUE, NULL);
862
863   seekable_elements = g_list_prepend (seekable_elements, demux);
864
865   gst_bin_add (GST_BIN (pipeline), src);
866   gst_bin_add (GST_BIN (pipeline), demux);
867   gst_element_link (src, demux);
868
869   audio_bin = gst_bin_new ("a_decoder_bin");
870   a_decoder = gst_element_factory_make_or_warn ("mad", "a_dec");
871   a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
872   audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
873   //g_object_set (G_OBJECT (audiosink), "fragment", 0x00180008, NULL);
874   g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL);
875   gst_element_link (a_decoder, a_queue);
876   gst_element_link (a_queue, audiosink);
877   gst_bin_add (GST_BIN (audio_bin), a_decoder);
878   gst_bin_add (GST_BIN (audio_bin), a_queue);
879   gst_bin_add (GST_BIN (audio_bin), audiosink);
880
881   setup_dynamic_link (demux, "audio_00", gst_element_get_static_pad (a_decoder,
882           "sink"), audio_bin);
883
884   seekable = gst_element_get_static_pad (a_queue, "src");
885   seekable_pads = g_list_prepend (seekable_pads, seekable);
886   rate_pads = g_list_prepend (rate_pads, seekable);
887   rate_pads =
888       g_list_prepend (rate_pads, gst_element_get_static_pad (a_decoder,
889           "sink"));
890
891   video_bin = gst_bin_new ("v_decoder_bin");
892   v_decoder = gst_element_factory_make_or_warn ("mpeg2dec", "v_dec");
893   v_filter = gst_element_factory_make_or_warn ("ffmpegcolorspace", "v_filter");
894   videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
895   gst_element_link_many (v_decoder, v_filter, videosink, NULL);
896
897   gst_bin_add_many (GST_BIN (video_bin), v_decoder, v_filter, videosink, NULL);
898
899   setup_dynamic_link (demux, "video_00", gst_element_get_static_pad (v_decoder,
900           "sink"), video_bin);
901
902   seekable = gst_element_get_static_pad (v_decoder, "src");
903   seekable_pads = g_list_prepend (seekable_pads, seekable);
904   rate_pads = g_list_prepend (rate_pads, seekable);
905   rate_pads =
906       g_list_prepend (rate_pads, gst_element_get_static_pad (v_decoder,
907           "sink"));
908
909   return pipeline;
910 }
911
912 static void
913 playerbin_set_uri (GstElement * player, const gchar * location)
914 {
915   gchar *uri;
916
917   /* Add "file://" prefix for convenience */
918   if (g_str_has_prefix (location, "/") || !gst_uri_is_valid (location)) {
919     uri = gst_filename_to_uri (location, NULL);
920     g_print ("Setting URI: %s\n", uri);
921     g_object_set (G_OBJECT (player), "uri", uri, NULL);
922     g_free (uri);
923   } else {
924     g_print ("Setting URI: %s\n", location);
925     g_object_set (G_OBJECT (player), "uri", location, NULL);
926   }
927 }
928
929 static GstElement *
930 construct_playerbin (const gchar * name, const gchar * location)
931 {
932   GstElement *player;
933   GstElement *avsink;
934
935   player = gst_element_factory_make (name, "player");
936   g_assert (player);
937
938   playerbin_set_uri (player, location);
939
940   seekable_elements = g_list_prepend (seekable_elements, player);
941
942   /* force element seeking on this pipeline */
943   elem_seek = TRUE;
944
945   avsink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
946   if (avsink)
947     g_object_set (player, "audio-sink", avsink, NULL);
948
949   avsink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
950   if (avsink)
951     g_object_set (player, "video-sink", avsink, NULL);
952
953   return player;
954 }
955
956 static GstElement *
957 make_playerbin_pipeline (const gchar * location)
958 {
959   return construct_playerbin ("playbin", location);
960 }
961
962 static GstElement *
963 make_playerbin2_pipeline (const gchar * location)
964 {
965   GstElement *pipeline = construct_playerbin ("playbin2", location);
966
967   /* FIXME: this is not triggered, playbin2 is not forwarding it from the sink */
968   g_signal_connect (pipeline, "notify::volume", G_CALLBACK (volume_notify_cb),
969       NULL);
970   return pipeline;
971 }
972
973 #ifndef GST_DISABLE_PARSE
974 static GstElement *
975 make_parselaunch_pipeline (const gchar * description)
976 {
977   GstElement *pipeline;
978   GError *error = NULL;
979
980   pipeline = gst_parse_launch (description, &error);
981
982   seekable_elements = g_list_prepend (seekable_elements, pipeline);
983
984   elem_seek = TRUE;
985
986   return pipeline;
987 }
988 #endif
989
990 typedef struct
991 {
992   const gchar *name;
993   GstElement *(*func) (const gchar * location);
994 }
995 Pipeline;
996
997 static Pipeline pipelines[] = {
998   {"mp3", make_mp3_pipeline},
999   {"avi", make_avi_pipeline},
1000   {"mpeg1", make_mpeg_pipeline},
1001   {"mpegparse", make_parse_pipeline},
1002   {"vorbis", make_vorbis_pipeline},
1003   {"theora", make_theora_pipeline},
1004   {"ogg/v/t", make_vorbis_theora_pipeline},
1005   {"avi/msmpeg4v3/mp3", make_avi_msmpeg4v3_mp3_pipeline},
1006   {"sid", make_sid_pipeline},
1007   {"flac", make_flac_pipeline},
1008   {"wav", make_wav_pipeline},
1009   {"mod", make_mod_pipeline},
1010   {"dv", make_dv_pipeline},
1011   {"mpeg1nothreads", make_mpegnt_pipeline},
1012   {"playerbin", make_playerbin_pipeline},
1013 #ifndef GST_DISABLE_PARSE
1014   {"parse-launch", make_parselaunch_pipeline},
1015 #endif
1016   {"playerbin2", make_playerbin2_pipeline},
1017   {NULL, NULL},
1018 };
1019
1020 #define NUM_TYPES       ((sizeof (pipelines) / sizeof (Pipeline)) - 1)
1021
1022 /* ui callbacks and helpers */
1023
1024 static gchar *
1025 format_value (GtkScale * scale, gdouble value)
1026 {
1027   gint64 real;
1028   gint64 seconds;
1029   gint64 subseconds;
1030
1031   real = value * duration / N_GRAD;
1032   seconds = (gint64) real / GST_SECOND;
1033   subseconds = (gint64) real / (GST_SECOND / N_GRAD);
1034
1035   return g_strdup_printf ("%02" G_GINT64_FORMAT ":%02" G_GINT64_FORMAT ":%02"
1036       G_GINT64_FORMAT, seconds / 60, seconds % 60, subseconds % 100);
1037 }
1038
1039
1040 static gchar *
1041 shuttle_format_value (GtkScale * scale, gdouble value)
1042 {
1043   return g_strdup_printf ("%0.*g", gtk_scale_get_digits (scale), value);
1044 }
1045
1046 typedef struct
1047 {
1048   const gchar *name;
1049   const GstFormat format;
1050 }
1051 seek_format;
1052
1053 static seek_format seek_formats[] = {
1054   {"tim", GST_FORMAT_TIME},
1055   {"byt", GST_FORMAT_BYTES},
1056   {"buf", GST_FORMAT_BUFFERS},
1057   {"def", GST_FORMAT_DEFAULT},
1058   {NULL, 0},
1059 };
1060
1061 G_GNUC_UNUSED static void
1062 query_rates (void)
1063 {
1064   GList *walk = rate_pads;
1065
1066   while (walk) {
1067     GstPad *pad = GST_PAD (walk->data);
1068     gint i = 0;
1069
1070     g_print ("rate/sec  %8.8s: ", GST_PAD_NAME (pad));
1071     while (seek_formats[i].name) {
1072       gint64 value;
1073       GstFormat format;
1074
1075       format = seek_formats[i].format;
1076
1077       if (gst_pad_query_convert (pad, GST_FORMAT_TIME, GST_SECOND, &format,
1078               &value)) {
1079         g_print ("%s %13" G_GINT64_FORMAT " | ", seek_formats[i].name, value);
1080       } else {
1081         g_print ("%s %13.13s | ", seek_formats[i].name, "*NA*");
1082       }
1083
1084       i++;
1085     }
1086     g_print (" %s:%s\n", GST_DEBUG_PAD_NAME (pad));
1087
1088     walk = g_list_next (walk);
1089   }
1090 }
1091
1092 G_GNUC_UNUSED static void
1093 query_positions_elems (void)
1094 {
1095   GList *walk = seekable_elements;
1096
1097   while (walk) {
1098     GstElement *element = GST_ELEMENT (walk->data);
1099     gint i = 0;
1100
1101     g_print ("positions %8.8s: ", GST_ELEMENT_NAME (element));
1102     while (seek_formats[i].name) {
1103       gint64 position, total;
1104       GstFormat format;
1105
1106       format = seek_formats[i].format;
1107
1108       if (gst_element_query_position (element, &format, &position) &&
1109           gst_element_query_duration (element, &format, &total)) {
1110         g_print ("%s %13" G_GINT64_FORMAT " / %13" G_GINT64_FORMAT " | ",
1111             seek_formats[i].name, position, total);
1112       } else {
1113         g_print ("%s %13.13s / %13.13s | ", seek_formats[i].name, "*NA*",
1114             "*NA*");
1115       }
1116       i++;
1117     }
1118     g_print (" %s\n", GST_ELEMENT_NAME (element));
1119
1120     walk = g_list_next (walk);
1121   }
1122 }
1123
1124 G_GNUC_UNUSED static void
1125 query_positions_pads (void)
1126 {
1127   GList *walk = seekable_pads;
1128
1129   while (walk) {
1130     GstPad *pad = GST_PAD (walk->data);
1131     gint i = 0;
1132
1133     g_print ("positions %8.8s: ", GST_PAD_NAME (pad));
1134     while (seek_formats[i].name) {
1135       GstFormat format;
1136       gint64 position, total;
1137
1138       format = seek_formats[i].format;
1139
1140       if (gst_pad_query_position (pad, &format, &position) &&
1141           gst_pad_query_duration (pad, &format, &total)) {
1142         g_print ("%s %13" G_GINT64_FORMAT " / %13" G_GINT64_FORMAT " | ",
1143             seek_formats[i].name, position, total);
1144       } else {
1145         g_print ("%s %13.13s / %13.13s | ", seek_formats[i].name, "*NA*",
1146             "*NA*");
1147       }
1148
1149       i++;
1150     }
1151     g_print (" %s:%s\n", GST_DEBUG_PAD_NAME (pad));
1152
1153     walk = g_list_next (walk);
1154   }
1155 }
1156
1157 static gboolean start_seek (GtkWidget * widget, GdkEventButton * event,
1158     gpointer user_data);
1159 static gboolean stop_seek (GtkWidget * widget, GdkEventButton * event,
1160     gpointer user_data);
1161 static void seek_cb (GtkWidget * widget);
1162
1163 static void
1164 set_scale (gdouble value)
1165 {
1166   g_signal_handlers_block_by_func (hscale, (void *) start_seek,
1167       (void *) pipeline);
1168   g_signal_handlers_block_by_func (hscale, (void *) stop_seek,
1169       (void *) pipeline);
1170   g_signal_handlers_block_by_func (hscale, (void *) seek_cb, (void *) pipeline);
1171   gtk_adjustment_set_value (adjustment, value);
1172   g_signal_handlers_unblock_by_func (hscale, (void *) start_seek,
1173       (void *) pipeline);
1174   g_signal_handlers_unblock_by_func (hscale, (void *) stop_seek,
1175       (void *) pipeline);
1176   g_signal_handlers_unblock_by_func (hscale, (void *) seek_cb,
1177       (void *) pipeline);
1178   gtk_widget_queue_draw (hscale);
1179 }
1180
1181 static gboolean
1182 update_fill (gpointer data)
1183 {
1184   if (elem_seek) {
1185     if (seekable_elements) {
1186       GstElement *element = GST_ELEMENT (seekable_elements->data);
1187       GstQuery *query;
1188
1189       query = gst_query_new_buffering (GST_FORMAT_PERCENT);
1190       if (gst_element_query (element, query)) {
1191         gint64 start, stop, buffering_total;
1192         GstFormat format;
1193         gdouble fill;
1194         gboolean busy;
1195         gint percent;
1196         GstBufferingMode mode;
1197         gint avg_in, avg_out;
1198         gint64 buffering_left;
1199
1200         gst_query_parse_buffering_percent (query, &busy, &percent);
1201         gst_query_parse_buffering_range (query, &format, &start, &stop,
1202             &buffering_total);
1203         gst_query_parse_buffering_stats (query, &mode, &avg_in, &avg_out,
1204             &buffering_left);
1205
1206         /* note that we could start the playback when buffering_left < remaining
1207          * playback time */
1208         GST_DEBUG ("buffering total %" G_GINT64_FORMAT " ms, left %"
1209             G_GINT64_FORMAT " ms", buffering_total, buffering_left);
1210         GST_DEBUG ("start %" G_GINT64_FORMAT ", stop %" G_GINT64_FORMAT,
1211             start, stop);
1212
1213         if (stop != -1)
1214           fill = N_GRAD * stop / GST_FORMAT_PERCENT_MAX;
1215         else
1216           fill = N_GRAD;
1217
1218         gtk_range_set_fill_level (GTK_RANGE (hscale), fill);
1219       }
1220       gst_query_unref (query);
1221     }
1222   }
1223   return TRUE;
1224 }
1225
1226 static gboolean
1227 update_scale (gpointer data)
1228 {
1229   GstFormat format = GST_FORMAT_TIME;
1230
1231   //position = 0;
1232   //duration = 0;
1233
1234   if (elem_seek) {
1235     if (seekable_elements) {
1236       GstElement *element = GST_ELEMENT (seekable_elements->data);
1237
1238       gst_element_query_position (element, &format, &position);
1239       gst_element_query_duration (element, &format, &duration);
1240     }
1241   } else {
1242     if (seekable_pads) {
1243       GstPad *pad = GST_PAD (seekable_pads->data);
1244
1245       gst_pad_query_position (pad, &format, &position);
1246       gst_pad_query_duration (pad, &format, &duration);
1247     }
1248   }
1249
1250   if (stats) {
1251     if (elem_seek) {
1252       query_positions_elems ();
1253     } else {
1254       query_positions_pads ();
1255     }
1256     query_rates ();
1257   }
1258
1259   if (position >= duration)
1260     duration = position;
1261
1262   if (duration > 0) {
1263     set_scale (position * N_GRAD / duration);
1264   }
1265
1266   /* FIXME: see make_playerbin2_pipeline() and volume_notify_cb() */
1267   if (pipeline_type == 16) {
1268     g_object_notify (G_OBJECT (pipeline), "volume");
1269   }
1270
1271   return TRUE;
1272 }
1273
1274 static void do_seek (GtkWidget * widget);
1275 static void connect_bus_signals (GstElement * pipeline);
1276 static void set_update_scale (gboolean active);
1277 static void set_update_fill (gboolean active);
1278
1279 static gboolean
1280 end_scrub (GtkWidget * widget)
1281 {
1282   GST_DEBUG ("end scrub, PAUSE");
1283   gst_element_set_state (pipeline, GST_STATE_PAUSED);
1284   seek_timeout_id = 0;
1285
1286   return FALSE;
1287 }
1288
1289 static gboolean
1290 send_event (GstEvent * event)
1291 {
1292   gboolean res = FALSE;
1293
1294   if (!elem_seek) {
1295     GList *walk = seekable_pads;
1296
1297     while (walk) {
1298       GstPad *seekable = GST_PAD (walk->data);
1299
1300       GST_DEBUG ("send event on pad %s:%s", GST_DEBUG_PAD_NAME (seekable));
1301
1302       gst_event_ref (event);
1303       res = gst_pad_send_event (seekable, event);
1304
1305       walk = g_list_next (walk);
1306     }
1307   } else {
1308     GList *walk = seekable_elements;
1309
1310     while (walk) {
1311       GstElement *seekable = GST_ELEMENT (walk->data);
1312
1313       GST_DEBUG ("send event on element %s", GST_ELEMENT_NAME (seekable));
1314
1315       gst_event_ref (event);
1316       res = gst_element_send_event (seekable, event);
1317
1318       walk = g_list_next (walk);
1319     }
1320   }
1321   gst_event_unref (event);
1322   return res;
1323 }
1324
1325 static void
1326 do_seek (GtkWidget * widget)
1327 {
1328   gint64 real;
1329   gboolean res = FALSE;
1330   GstEvent *s_event;
1331   GstSeekFlags flags;
1332
1333   real = gtk_range_get_value (GTK_RANGE (widget)) * duration / N_GRAD;
1334
1335   GST_DEBUG ("value=%f, real=%" G_GINT64_FORMAT,
1336       gtk_range_get_value (GTK_RANGE (widget)), real);
1337
1338   flags = 0;
1339   if (flush_seek)
1340     flags |= GST_SEEK_FLAG_FLUSH;
1341   if (accurate_seek)
1342     flags |= GST_SEEK_FLAG_ACCURATE;
1343   if (keyframe_seek)
1344     flags |= GST_SEEK_FLAG_KEY_UNIT;
1345   if (loop_seek)
1346     flags |= GST_SEEK_FLAG_SEGMENT;
1347   if (skip_seek)
1348     flags |= GST_SEEK_FLAG_SKIP;
1349
1350   if (rate >= 0) {
1351     s_event = gst_event_new_seek (rate,
1352         GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, real, GST_SEEK_TYPE_SET,
1353         GST_CLOCK_TIME_NONE);
1354     GST_DEBUG ("seek with rate %lf to %" GST_TIME_FORMAT " / %" GST_TIME_FORMAT,
1355         rate, GST_TIME_ARGS (real), GST_TIME_ARGS (duration));
1356   } else {
1357     s_event = gst_event_new_seek (rate,
1358         GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, G_GINT64_CONSTANT (0),
1359         GST_SEEK_TYPE_SET, real);
1360     GST_DEBUG ("seek with rate %lf to %" GST_TIME_FORMAT " / %" GST_TIME_FORMAT,
1361         rate, GST_TIME_ARGS (0), GST_TIME_ARGS (real));
1362   }
1363
1364   res = send_event (s_event);
1365
1366   if (res) {
1367     if (flush_seek) {
1368       gst_element_get_state (GST_ELEMENT (pipeline), NULL, NULL, SEEK_TIMEOUT);
1369     } else {
1370       set_update_scale (TRUE);
1371     }
1372   } else {
1373     g_print ("seek failed\n");
1374     set_update_scale (TRUE);
1375   }
1376 }
1377
1378 static void
1379 seek_cb (GtkWidget * widget)
1380 {
1381   /* If the timer hasn't expired yet, then the pipeline is running */
1382   if (play_scrub && seek_timeout_id != 0) {
1383     GST_DEBUG ("do scrub seek, PAUSED");
1384     gst_element_set_state (pipeline, GST_STATE_PAUSED);
1385   }
1386
1387   GST_DEBUG ("do seek");
1388   do_seek (widget);
1389
1390   if (play_scrub) {
1391     GST_DEBUG ("do scrub seek, PLAYING");
1392     gst_element_set_state (pipeline, GST_STATE_PLAYING);
1393
1394     if (seek_timeout_id == 0) {
1395       seek_timeout_id =
1396           g_timeout_add (SCRUB_TIME, (GSourceFunc) end_scrub, widget);
1397     }
1398   }
1399 }
1400
1401 static void
1402 set_update_fill (gboolean active)
1403 {
1404   GST_DEBUG ("fill scale is %d", active);
1405
1406   if (active) {
1407     if (fill_id == 0) {
1408       fill_id =
1409           g_timeout_add (FILL_INTERVAL, (GSourceFunc) update_fill, pipeline);
1410     }
1411   } else {
1412     if (fill_id) {
1413       g_source_remove (fill_id);
1414       fill_id = 0;
1415     }
1416   }
1417 }
1418
1419 static void
1420 set_update_scale (gboolean active)
1421 {
1422
1423   GST_DEBUG ("update scale is %d", active);
1424
1425   if (active) {
1426     if (update_id == 0) {
1427       update_id =
1428           g_timeout_add (UPDATE_INTERVAL, (GSourceFunc) update_scale, pipeline);
1429     }
1430   } else {
1431     if (update_id) {
1432       g_source_remove (update_id);
1433       update_id = 0;
1434     }
1435   }
1436 }
1437
1438 static gboolean
1439 start_seek (GtkWidget * widget, GdkEventButton * event, gpointer user_data)
1440 {
1441   if (event->type != GDK_BUTTON_PRESS)
1442     return FALSE;
1443
1444   set_update_scale (FALSE);
1445
1446   if (state == GST_STATE_PLAYING && flush_seek && scrub) {
1447     GST_DEBUG ("start scrub seek, PAUSE");
1448     gst_element_set_state (pipeline, GST_STATE_PAUSED);
1449   }
1450
1451   if (changed_id == 0 && flush_seek && scrub) {
1452     changed_id =
1453         g_signal_connect (hscale, "value_changed", G_CALLBACK (seek_cb),
1454         pipeline);
1455   }
1456
1457   return FALSE;
1458 }
1459
1460 static gboolean
1461 stop_seek (GtkWidget * widget, GdkEventButton * event, gpointer user_data)
1462 {
1463   if (changed_id) {
1464     g_signal_handler_disconnect (hscale, changed_id);
1465     changed_id = 0;
1466   }
1467
1468   if (!flush_seek || !scrub) {
1469     GST_DEBUG ("do final seek");
1470     do_seek (widget);
1471   }
1472
1473   if (seek_timeout_id != 0) {
1474     g_source_remove (seek_timeout_id);
1475     seek_timeout_id = 0;
1476     /* Still scrubbing, so the pipeline is playing, see if we need PAUSED
1477      * instead. */
1478     if (state == GST_STATE_PAUSED) {
1479       GST_DEBUG ("stop scrub seek, PAUSED");
1480       gst_element_set_state (pipeline, GST_STATE_PAUSED);
1481     }
1482   } else {
1483     if (state == GST_STATE_PLAYING) {
1484       GST_DEBUG ("stop scrub seek, PLAYING");
1485       gst_element_set_state (pipeline, GST_STATE_PLAYING);
1486     }
1487   }
1488
1489   return FALSE;
1490 }
1491
1492 static void
1493 play_cb (GtkButton * button, gpointer data)
1494 {
1495   GstStateChangeReturn ret;
1496
1497   if (state != GST_STATE_PLAYING) {
1498     g_print ("PLAY pipeline\n");
1499     gtk_statusbar_pop (GTK_STATUSBAR (statusbar), status_id);
1500
1501     ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
1502     switch (ret) {
1503       case GST_STATE_CHANGE_FAILURE:
1504         goto failed;
1505       case GST_STATE_CHANGE_NO_PREROLL:
1506         is_live = TRUE;
1507         break;
1508       default:
1509         break;
1510     }
1511     state = GST_STATE_PLAYING;
1512     gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Playing");
1513   }
1514
1515   return;
1516
1517 failed:
1518   {
1519     g_print ("PLAY failed\n");
1520     gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Play failed");
1521   }
1522 }
1523
1524 static void
1525 pause_cb (GtkButton * button, gpointer data)
1526 {
1527   g_static_mutex_lock (&state_mutex);
1528   if (state != GST_STATE_PAUSED) {
1529     GstStateChangeReturn ret;
1530
1531     gtk_statusbar_pop (GTK_STATUSBAR (statusbar), status_id);
1532     g_print ("PAUSE pipeline\n");
1533     ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
1534     switch (ret) {
1535       case GST_STATE_CHANGE_FAILURE:
1536         goto failed;
1537       case GST_STATE_CHANGE_NO_PREROLL:
1538         is_live = TRUE;
1539         break;
1540       default:
1541         break;
1542     }
1543
1544     state = GST_STATE_PAUSED;
1545     gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Paused");
1546   }
1547   g_static_mutex_unlock (&state_mutex);
1548
1549   return;
1550
1551 failed:
1552   {
1553     g_static_mutex_unlock (&state_mutex);
1554     g_print ("PAUSE failed\n");
1555     gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Pause failed");
1556   }
1557 }
1558
1559 static void
1560 stop_cb (GtkButton * button, gpointer data)
1561 {
1562   if (state != STOP_STATE) {
1563     GstStateChangeReturn ret;
1564
1565     g_print ("READY pipeline\n");
1566     gtk_statusbar_pop (GTK_STATUSBAR (statusbar), status_id);
1567
1568     g_static_mutex_lock (&state_mutex);
1569     ret = gst_element_set_state (pipeline, STOP_STATE);
1570     if (ret == GST_STATE_CHANGE_FAILURE)
1571       goto failed;
1572
1573     state = STOP_STATE;
1574     gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Stopped");
1575     gtk_widget_queue_draw (video_window);
1576
1577     is_live = FALSE;
1578     buffering = FALSE;
1579     set_update_scale (FALSE);
1580     set_scale (0.0);
1581     set_update_fill (FALSE);
1582
1583     if (pipeline_type == 16)
1584       clear_streams (pipeline);
1585     g_static_mutex_unlock (&state_mutex);
1586
1587 #if 0
1588     /* if one uses parse_launch, play, stop and play again it fails as all the
1589      * pads after the demuxer can't be reconnected
1590      */
1591     if (!strcmp (pipelines[pipeline_type].name, "parse-launch")) {
1592       gst_element_set_state (pipeline, GST_STATE_NULL);
1593       gst_object_unref (pipeline);
1594
1595       g_list_free (seekable_elements);
1596       seekable_elements = NULL;
1597       g_list_free (seekable_pads);
1598       seekable_pads = NULL;
1599       g_list_free (rate_pads);
1600       rate_pads = NULL;
1601
1602       pipeline = pipelines[pipeline_type].func (pipeline_spec);
1603       g_assert (pipeline);
1604       gst_element_set_state (pipeline, STOP_STATE);
1605       connect_bus_signals (pipeline);
1606     }
1607 #endif
1608   }
1609   return;
1610
1611 failed:
1612   {
1613     g_static_mutex_unlock (&state_mutex);
1614     g_print ("STOP failed\n");
1615     gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Stop failed");
1616   }
1617 }
1618
1619 static void
1620 accurate_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1621 {
1622   accurate_seek = gtk_toggle_button_get_active (button);
1623 }
1624
1625 static void
1626 key_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1627 {
1628   keyframe_seek = gtk_toggle_button_get_active (button);
1629 }
1630
1631 static void
1632 loop_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1633 {
1634   loop_seek = gtk_toggle_button_get_active (button);
1635   if (state == GST_STATE_PLAYING) {
1636     do_seek (hscale);
1637   }
1638 }
1639
1640 static void
1641 flush_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1642 {
1643   flush_seek = gtk_toggle_button_get_active (button);
1644 }
1645
1646 static void
1647 scrub_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1648 {
1649   scrub = gtk_toggle_button_get_active (button);
1650 }
1651
1652 static void
1653 play_scrub_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1654 {
1655   play_scrub = gtk_toggle_button_get_active (button);
1656 }
1657
1658 static void
1659 skip_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1660 {
1661   skip_seek = gtk_toggle_button_get_active (button);
1662   if (state == GST_STATE_PLAYING) {
1663     do_seek (hscale);
1664   }
1665 }
1666
1667 static void
1668 rate_spinbutton_changed_cb (GtkSpinButton * button, GstPipeline * pipeline)
1669 {
1670   gboolean res = FALSE;
1671   GstEvent *s_event;
1672   GstSeekFlags flags;
1673
1674   rate = gtk_spin_button_get_value (button);
1675
1676   GST_DEBUG ("rate changed to %lf", rate);
1677
1678   flags = 0;
1679   if (flush_seek)
1680     flags |= GST_SEEK_FLAG_FLUSH;
1681   if (loop_seek)
1682     flags |= GST_SEEK_FLAG_SEGMENT;
1683   if (accurate_seek)
1684     flags |= GST_SEEK_FLAG_ACCURATE;
1685   if (keyframe_seek)
1686     flags |= GST_SEEK_FLAG_KEY_UNIT;
1687   if (skip_seek)
1688     flags |= GST_SEEK_FLAG_SKIP;
1689
1690   if (rate >= 0.0) {
1691     s_event = gst_event_new_seek (rate,
1692         GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, position,
1693         GST_SEEK_TYPE_SET, GST_CLOCK_TIME_NONE);
1694   } else {
1695     s_event = gst_event_new_seek (rate,
1696         GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, G_GINT64_CONSTANT (0),
1697         GST_SEEK_TYPE_SET, position);
1698   }
1699
1700   res = send_event (s_event);
1701
1702   if (res) {
1703     if (flush_seek) {
1704       gst_element_get_state (GST_ELEMENT (pipeline), NULL, NULL, SEEK_TIMEOUT);
1705     }
1706   } else
1707     g_print ("seek failed\n");
1708 }
1709
1710 static void
1711 update_flag (GstPipeline * pipeline, gint num, gboolean state)
1712 {
1713   gint flags;
1714
1715   g_object_get (pipeline, "flags", &flags, NULL);
1716   if (state)
1717     flags |= (1 << num);
1718   else
1719     flags &= ~(1 << num);
1720   g_object_set (pipeline, "flags", flags, NULL);
1721 }
1722
1723 static void
1724 vis_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1725 {
1726   gboolean state;
1727
1728   state = gtk_toggle_button_get_active (button);
1729   update_flag (pipeline, 3, state);
1730   gtk_widget_set_sensitive (vis_combo, state);
1731 }
1732
1733 static void
1734 audio_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1735 {
1736   gboolean state;
1737
1738   state = gtk_toggle_button_get_active (button);
1739   update_flag (pipeline, 1, state);
1740   gtk_widget_set_sensitive (audio_combo, state);
1741 }
1742
1743 static void
1744 video_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1745 {
1746   gboolean state;
1747
1748   state = gtk_toggle_button_get_active (button);
1749   update_flag (pipeline, 0, state);
1750   gtk_widget_set_sensitive (video_combo, state);
1751 }
1752
1753 static void
1754 text_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1755 {
1756   gboolean state;
1757
1758   state = gtk_toggle_button_get_active (button);
1759   update_flag (pipeline, 2, state);
1760   gtk_widget_set_sensitive (text_combo, state);
1761 }
1762
1763 static void
1764 mute_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1765 {
1766   gboolean mute;
1767
1768   mute = gtk_toggle_button_get_active (button);
1769   g_object_set (pipeline, "mute", mute, NULL);
1770 }
1771
1772 static void
1773 download_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1774 {
1775   gboolean state;
1776
1777   state = gtk_toggle_button_get_active (button);
1778   update_flag (pipeline, 7, state);
1779 }
1780
1781 static void
1782 buffer_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1783 {
1784   gboolean state;
1785
1786   state = gtk_toggle_button_get_active (button);
1787   update_flag (pipeline, 8, state);
1788 }
1789
1790 static void
1791 clear_streams (GstElement * pipeline)
1792 {
1793   gint i;
1794
1795   /* remove previous info */
1796   for (i = 0; i < n_video; i++)
1797     gtk_combo_box_text_remove (GTK_COMBO_BOX_TEXT (video_combo), 0);
1798   for (i = 0; i < n_audio; i++)
1799     gtk_combo_box_text_remove (GTK_COMBO_BOX_TEXT (audio_combo), 0);
1800   for (i = 0; i < n_text; i++)
1801     gtk_combo_box_text_remove (GTK_COMBO_BOX_TEXT (text_combo), 0);
1802
1803   n_audio = n_video = n_text = 0;
1804   gtk_widget_set_sensitive (video_combo, FALSE);
1805   gtk_widget_set_sensitive (audio_combo, FALSE);
1806   gtk_widget_set_sensitive (text_combo, FALSE);
1807
1808   need_streams = TRUE;
1809 }
1810
1811 static void
1812 update_streams (GstPipeline * pipeline)
1813 {
1814   gint i;
1815
1816   if (pipeline_type == 16 && need_streams) {
1817     GstTagList *tags;
1818     gchar *name, *str;
1819     gint active_idx;
1820     gboolean state;
1821
1822     /* remove previous info */
1823     clear_streams (GST_ELEMENT_CAST (pipeline));
1824
1825     /* here we get and update the different streams detected by playbin2 */
1826     g_object_get (pipeline, "n-video", &n_video, NULL);
1827     g_object_get (pipeline, "n-audio", &n_audio, NULL);
1828     g_object_get (pipeline, "n-text", &n_text, NULL);
1829
1830     g_print ("video %d, audio %d, text %d\n", n_video, n_audio, n_text);
1831
1832     active_idx = 0;
1833     for (i = 0; i < n_video; i++) {
1834       g_signal_emit_by_name (pipeline, "get-video-tags", i, &tags);
1835       if (tags) {
1836         str = gst_structure_to_string ((GstStructure *) tags);
1837         g_print ("video %d: %s\n", i, str);
1838         g_free (str);
1839       }
1840       /* find good name for the label */
1841       name = g_strdup_printf ("video %d", i + 1);
1842       gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (video_combo), name);
1843       g_free (name);
1844     }
1845     state = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (video_checkbox));
1846     gtk_widget_set_sensitive (video_combo, state && n_video > 0);
1847     gtk_combo_box_set_active (GTK_COMBO_BOX (video_combo), active_idx);
1848
1849     active_idx = 0;
1850     for (i = 0; i < n_audio; i++) {
1851       g_signal_emit_by_name (pipeline, "get-audio-tags", i, &tags);
1852       if (tags) {
1853         str = gst_structure_to_string ((GstStructure *) tags);
1854         g_print ("audio %d: %s\n", i, str);
1855         g_free (str);
1856       }
1857       /* find good name for the label */
1858       name = g_strdup_printf ("audio %d", i + 1);
1859       gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (audio_combo), name);
1860       g_free (name);
1861     }
1862     state = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (audio_checkbox));
1863     gtk_widget_set_sensitive (audio_combo, state && n_audio > 0);
1864     gtk_combo_box_set_active (GTK_COMBO_BOX (audio_combo), active_idx);
1865
1866     active_idx = 0;
1867     for (i = 0; i < n_text; i++) {
1868       g_signal_emit_by_name (pipeline, "get-text-tags", i, &tags);
1869
1870       name = NULL;
1871       if (tags) {
1872         const GValue *value;
1873
1874         str = gst_structure_to_string ((GstStructure *) tags);
1875         g_print ("text %d: %s\n", i, str);
1876         g_free (str);
1877
1878         /* get the language code if we can */
1879         value = gst_tag_list_get_value_index (tags, GST_TAG_LANGUAGE_CODE, 0);
1880         if (value && G_VALUE_HOLDS_STRING (value)) {
1881           name = g_strdup_printf ("text %s", g_value_get_string (value));
1882         }
1883       }
1884       /* find good name for the label if we didn't use a tag */
1885       if (name == NULL)
1886         name = g_strdup_printf ("text %d", i + 1);
1887
1888       gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (text_combo), name);
1889       g_free (name);
1890     }
1891     state = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (text_checkbox));
1892     gtk_widget_set_sensitive (text_combo, state && n_text > 0);
1893     gtk_combo_box_set_active (GTK_COMBO_BOX (text_combo), active_idx);
1894
1895     need_streams = FALSE;
1896   }
1897 }
1898
1899 static void
1900 video_combo_cb (GtkComboBox * combo, GstPipeline * pipeline)
1901 {
1902   gint active;
1903
1904   active = gtk_combo_box_get_active (combo);
1905
1906   g_print ("setting current video track %d\n", active);
1907   g_object_set (pipeline, "current-video", active, NULL);
1908 }
1909
1910 static void
1911 audio_combo_cb (GtkComboBox * combo, GstPipeline * pipeline)
1912 {
1913   gint active;
1914
1915   active = gtk_combo_box_get_active (combo);
1916
1917   g_print ("setting current audio track %d\n", active);
1918   g_object_set (pipeline, "current-audio", active, NULL);
1919 }
1920
1921 static void
1922 text_combo_cb (GtkComboBox * combo, GstPipeline * pipeline)
1923 {
1924   gint active;
1925
1926   active = gtk_combo_box_get_active (combo);
1927
1928   g_print ("setting current text track %d\n", active);
1929   g_object_set (pipeline, "current-text", active, NULL);
1930 }
1931
1932 static gboolean
1933 filter_features (GstPluginFeature * feature, gpointer data)
1934 {
1935   GstElementFactory *f;
1936
1937   if (!GST_IS_ELEMENT_FACTORY (feature))
1938     return FALSE;
1939   f = GST_ELEMENT_FACTORY (feature);
1940   if (!g_strrstr (gst_element_factory_get_klass (f), "Visualization"))
1941     return FALSE;
1942
1943   return TRUE;
1944 }
1945
1946 static void
1947 init_visualization_features (void)
1948 {
1949   GList *list, *walk;
1950
1951   vis_entries = g_array_new (FALSE, FALSE, sizeof (VisEntry));
1952
1953   list = gst_registry_feature_filter (gst_registry_get_default (),
1954       filter_features, FALSE, NULL);
1955
1956   for (walk = list; walk; walk = g_list_next (walk)) {
1957     VisEntry entry;
1958     const gchar *name;
1959
1960     entry.factory = GST_ELEMENT_FACTORY (walk->data);
1961     name = gst_element_factory_get_longname (entry.factory);
1962
1963     g_array_append_val (vis_entries, entry);
1964     gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (vis_combo), name);
1965   }
1966   gtk_combo_box_set_active (GTK_COMBO_BOX (vis_combo), 0);
1967 }
1968
1969 static void
1970 vis_combo_cb (GtkComboBox * combo, GstPipeline * pipeline)
1971 {
1972   guint index;
1973   VisEntry *entry;
1974   GstElement *element;
1975
1976   /* get the selected index and get the factory for this index */
1977   index = gtk_combo_box_get_active (GTK_COMBO_BOX (vis_combo));
1978   if (vis_entries->len > 0) {
1979     entry = &g_array_index (vis_entries, VisEntry, index);
1980
1981     /* create an instance of the element from the factory */
1982     element = gst_element_factory_create (entry->factory, NULL);
1983     if (!element)
1984       return;
1985
1986     /* set vis plugin for playbin2 */
1987     g_object_set (pipeline, "vis-plugin", element, NULL);
1988   }
1989 }
1990
1991 static void
1992 volume_spinbutton_changed_cb (GtkSpinButton * button, GstPipeline * pipeline)
1993 {
1994   gdouble volume;
1995
1996   volume = gtk_spin_button_get_value (button);
1997
1998   g_object_set (pipeline, "volume", volume, NULL);
1999 }
2000
2001 static void
2002 volume_notify_cb (GstElement * pipeline, GParamSpec * arg, gpointer user_dat)
2003 {
2004   gdouble cur_volume, new_volume;
2005
2006   g_object_get (pipeline, "volume", &new_volume, NULL);
2007   cur_volume = gtk_spin_button_get_value (GTK_SPIN_BUTTON (volume_spinbutton));
2008   if (fabs (cur_volume - new_volume) > 0.001) {
2009     g_signal_handlers_block_by_func (volume_spinbutton,
2010         volume_spinbutton_changed_cb, pipeline);
2011     gtk_spin_button_set_value (GTK_SPIN_BUTTON (volume_spinbutton), new_volume);
2012     g_signal_handlers_unblock_by_func (volume_spinbutton,
2013         volume_spinbutton_changed_cb, pipeline);
2014   }
2015 }
2016
2017 static void
2018 shot_cb (GtkButton * button, gpointer data)
2019 {
2020   GstBuffer *buffer;
2021   GstCaps *caps;
2022
2023   /* convert to our desired format (RGB24) */
2024   caps = gst_caps_new_simple ("video/x-raw-rgb",
2025       "bpp", G_TYPE_INT, 24, "depth", G_TYPE_INT, 24,
2026       /* Note: we don't ask for a specific width/height here, so that
2027        * videoscale can adjust dimensions from a non-1/1 pixel aspect
2028        * ratio to a 1/1 pixel-aspect-ratio */
2029       "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1,
2030       "endianness", G_TYPE_INT, G_BIG_ENDIAN,
2031       "red_mask", G_TYPE_INT, 0xff0000,
2032       "green_mask", G_TYPE_INT, 0x00ff00,
2033       "blue_mask", G_TYPE_INT, 0x0000ff, NULL);
2034
2035   /* convert the latest frame to the requested format */
2036   g_signal_emit_by_name (pipeline, "convert-frame", caps, &buffer);
2037   gst_caps_unref (caps);
2038
2039   if (buffer) {
2040     GstCaps *caps;
2041     GstStructure *s;
2042     gboolean res;
2043     gint width, height;
2044     GdkPixbuf *pixbuf;
2045     GError *error = NULL;
2046
2047     /* get the snapshot buffer format now. We set the caps on the appsink so
2048      * that it can only be an rgb buffer. The only thing we have not specified
2049      * on the caps is the height, which is dependant on the pixel-aspect-ratio
2050      * of the source material */
2051     caps = GST_BUFFER_CAPS (buffer);
2052     if (!caps) {
2053       g_warning ("could not get snapshot format\n");
2054       goto done;
2055     }
2056     s = gst_caps_get_structure (caps, 0);
2057
2058     /* we need to get the final caps on the buffer to get the size */
2059     res = gst_structure_get_int (s, "width", &width);
2060     res |= gst_structure_get_int (s, "height", &height);
2061     if (!res) {
2062       g_warning ("could not get snapshot dimension\n");
2063       goto done;
2064     }
2065
2066     /* create pixmap from buffer and save, gstreamer video buffers have a stride
2067      * that is rounded up to the nearest multiple of 4 */
2068     pixbuf = gdk_pixbuf_new_from_data (GST_BUFFER_DATA (buffer),
2069         GDK_COLORSPACE_RGB, FALSE, 8, width, height,
2070         GST_ROUND_UP_4 (width * 3), NULL, NULL);
2071
2072     /* save the pixbuf */
2073     gdk_pixbuf_save (pixbuf, "snapshot.png", "png", &error, NULL);
2074
2075   done:
2076     gst_buffer_unref (buffer);
2077   }
2078 }
2079
2080 /* called when the Step button is pressed */
2081 static void
2082 step_cb (GtkButton * button, gpointer data)
2083 {
2084   GstEvent *event;
2085   GstFormat format;
2086   guint64 amount;
2087   gdouble rate;
2088   gboolean flush, res;
2089   gint active;
2090
2091   active = gtk_combo_box_get_active (GTK_COMBO_BOX (format_combo));
2092   amount =
2093       gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON
2094       (step_amount_spinbutton));
2095   rate = gtk_spin_button_get_value (GTK_SPIN_BUTTON (step_rate_spinbutton));
2096   flush = TRUE;
2097
2098   switch (active) {
2099     case 0:
2100       format = GST_FORMAT_BUFFERS;
2101       break;
2102     case 1:
2103       format = GST_FORMAT_TIME;
2104       amount *= GST_MSECOND;
2105       break;
2106     default:
2107       format = GST_FORMAT_UNDEFINED;
2108       break;
2109   }
2110
2111   event = gst_event_new_step (format, amount, rate, flush, FALSE);
2112
2113   res = send_event (event);
2114
2115   if (!res) {
2116     g_print ("Sending step event failed\n");
2117   }
2118 }
2119
2120 static void
2121 message_received (GstBus * bus, GstMessage * message, GstPipeline * pipeline)
2122 {
2123   const GstStructure *s;
2124
2125   switch (GST_MESSAGE_TYPE (message)) {
2126     case GST_MESSAGE_ERROR:
2127       GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
2128           GST_DEBUG_GRAPH_SHOW_ALL, "seek.error");
2129       break;
2130     case GST_MESSAGE_WARNING:
2131       GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
2132           GST_DEBUG_GRAPH_SHOW_ALL, "seek.warning");
2133       break;
2134     default:
2135       break;
2136   }
2137
2138   s = gst_message_get_structure (message);
2139   g_print ("message from \"%s\" (%s): ",
2140       GST_STR_NULL (GST_ELEMENT_NAME (GST_MESSAGE_SRC (message))),
2141       gst_message_type_get_name (GST_MESSAGE_TYPE (message)));
2142   if (s) {
2143     gchar *sstr;
2144
2145     sstr = gst_structure_to_string (s);
2146     g_print ("%s\n", sstr);
2147     g_free (sstr);
2148   } else {
2149     g_print ("no message details\n");
2150   }
2151 }
2152
2153 static gboolean shuttling = FALSE;
2154 static gdouble shuttle_rate = 0.0;
2155 static gdouble play_rate = 1.0;
2156
2157 static void
2158 do_shuttle (GstElement * element)
2159 {
2160   guint64 duration;
2161
2162   if (shuttling)
2163     duration = 40 * GST_MSECOND;
2164   else
2165     duration = -1;
2166
2167   gst_element_send_event (element,
2168       gst_event_new_step (GST_FORMAT_TIME, duration, shuttle_rate, FALSE,
2169           FALSE));
2170 }
2171
2172 static void
2173 msg_sync_step_done (GstBus * bus, GstMessage * message, GstElement * element)
2174 {
2175   GstFormat format;
2176   guint64 amount;
2177   gdouble rate;
2178   gboolean flush;
2179   gboolean intermediate;
2180   guint64 duration;
2181   gboolean eos;
2182
2183   gst_message_parse_step_done (message, &format, &amount, &rate, &flush,
2184       &intermediate, &duration, &eos);
2185
2186   if (eos) {
2187     g_print ("stepped till EOS\n");
2188     return;
2189   }
2190
2191   if (g_static_mutex_trylock (&state_mutex)) {
2192     if (shuttling)
2193       do_shuttle (element);
2194     g_static_mutex_unlock (&state_mutex);
2195   } else {
2196     /* ignore step messages that come while we are doing a state change */
2197     g_print ("state change is busy\n");
2198   }
2199 }
2200
2201 static void
2202 shuttle_toggled (GtkToggleButton * button, GstElement * element)
2203 {
2204   gboolean active;
2205
2206   active = gtk_toggle_button_get_active (button);
2207
2208   if (active != shuttling) {
2209     shuttling = active;
2210     g_print ("shuttling %s\n", shuttling ? "active" : "inactive");
2211     if (active) {
2212       shuttle_rate = 0.0;
2213       play_rate = 1.0;
2214       pause_cb (NULL, NULL);
2215       gst_element_get_state (element, NULL, NULL, -1);
2216     }
2217   }
2218 }
2219
2220 static void
2221 shuttle_rate_switch (GstElement * element)
2222 {
2223   GstSeekFlags flags;
2224   GstEvent *s_event;
2225   gboolean res;
2226
2227   if (state == GST_STATE_PLAYING) {
2228     /* pause when we need to */
2229     pause_cb (NULL, NULL);
2230     gst_element_get_state (element, NULL, NULL, -1);
2231   }
2232
2233   if (play_rate == 1.0)
2234     play_rate = -1.0;
2235   else
2236     play_rate = 1.0;
2237
2238   g_print ("rate changed to %lf %" GST_TIME_FORMAT "\n", play_rate,
2239       GST_TIME_ARGS (position));
2240
2241   flags = GST_SEEK_FLAG_FLUSH;
2242   flags |= GST_SEEK_FLAG_ACCURATE;
2243
2244   if (play_rate >= 0.0) {
2245     s_event = gst_event_new_seek (play_rate,
2246         GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, position,
2247         GST_SEEK_TYPE_SET, GST_CLOCK_TIME_NONE);
2248   } else {
2249     s_event = gst_event_new_seek (play_rate,
2250         GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, G_GINT64_CONSTANT (0),
2251         GST_SEEK_TYPE_SET, position);
2252   }
2253   res = send_event (s_event);
2254   if (res) {
2255     gst_element_get_state (element, NULL, NULL, SEEK_TIMEOUT);
2256   } else {
2257     g_print ("seek failed\n");
2258   }
2259 }
2260
2261 static void
2262 shuttle_value_changed (GtkRange * range, GstElement * element)
2263 {
2264   gdouble rate;
2265
2266   rate = gtk_adjustment_get_value (shuttle_adjustment);
2267
2268   if (rate == 0.0) {
2269     g_print ("rate 0.0, pause\n");
2270     pause_cb (NULL, NULL);
2271     gst_element_get_state (element, NULL, NULL, -1);
2272   } else {
2273     g_print ("rate changed %0.3g\n", rate);
2274
2275     if ((rate < 0.0 && play_rate > 0.0) || (rate > 0.0 && play_rate < 0.0)) {
2276       shuttle_rate_switch (element);
2277     }
2278
2279     shuttle_rate = ABS (rate);
2280     if (state != GST_STATE_PLAYING) {
2281       do_shuttle (element);
2282       play_cb (NULL, NULL);
2283     }
2284   }
2285 }
2286
2287 static void
2288 msg_async_done (GstBus * bus, GstMessage * message, GstPipeline * pipeline)
2289 {
2290   GST_DEBUG ("async done");
2291   /* when we get ASYNC_DONE we can query position, duration and other
2292    * properties */
2293   update_scale (pipeline);
2294
2295   /* update the available streams */
2296   update_streams (pipeline);
2297 }
2298
2299 static void
2300 msg_state_changed (GstBus * bus, GstMessage * message, GstPipeline * pipeline)
2301 {
2302   const GstStructure *s;
2303
2304   s = gst_message_get_structure (message);
2305
2306   /* We only care about state changed on the pipeline */
2307   if (s && GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (pipeline)) {
2308     GstState old, new, pending;
2309
2310     gst_message_parse_state_changed (message, &old, &new, &pending);
2311
2312     /* When state of the pipeline changes to paused or playing we start updating scale */
2313     if (new == GST_STATE_PLAYING) {
2314       set_update_scale (TRUE);
2315     } else {
2316       set_update_scale (FALSE);
2317     }
2318
2319     /* dump graph for (some) pipeline state changes */
2320     {
2321       gchar *dump_name;
2322
2323       dump_name = g_strdup_printf ("seek.%s_%s",
2324           gst_element_state_get_name (old), gst_element_state_get_name (new));
2325
2326       GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
2327           GST_DEBUG_GRAPH_SHOW_ALL, dump_name);
2328
2329       g_free (dump_name);
2330     }
2331   }
2332 }
2333
2334 static void
2335 msg_segment_done (GstBus * bus, GstMessage * message, GstPipeline * pipeline)
2336 {
2337   GstEvent *s_event;
2338   GstSeekFlags flags;
2339   gboolean res;
2340   GstFormat format;
2341
2342   GST_DEBUG ("position is %" GST_TIME_FORMAT, GST_TIME_ARGS (position));
2343   gst_message_parse_segment_done (message, &format, &position);
2344   GST_DEBUG ("end of segment at %" GST_TIME_FORMAT, GST_TIME_ARGS (position));
2345
2346   flags = 0;
2347   /* in the segment-done callback we never flush as this would not make sense
2348    * for seamless playback. */
2349   if (loop_seek)
2350     flags |= GST_SEEK_FLAG_SEGMENT;
2351   if (skip_seek)
2352     flags |= GST_SEEK_FLAG_SKIP;
2353
2354   s_event = gst_event_new_seek (rate,
2355       GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, G_GINT64_CONSTANT (0),
2356       GST_SEEK_TYPE_SET, duration);
2357
2358   GST_DEBUG ("restart loop with rate %lf to 0 / %" GST_TIME_FORMAT,
2359       rate, GST_TIME_ARGS (duration));
2360
2361   res = send_event (s_event);
2362   if (!res)
2363     g_print ("segment seek failed\n");
2364 }
2365
2366 /* in stream buffering mode we PAUSE the pipeline until we receive a 100%
2367  * message */
2368 static void
2369 do_stream_buffering (gint percent)
2370 {
2371   gchar *bufstr;
2372
2373   gtk_statusbar_pop (GTK_STATUSBAR (statusbar), status_id);
2374   bufstr = g_strdup_printf ("Buffering...%d", percent);
2375   gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, bufstr);
2376   g_free (bufstr);
2377
2378   if (percent == 100) {
2379     /* a 100% message means buffering is done */
2380     buffering = FALSE;
2381     /* if the desired state is playing, go back */
2382     if (state == GST_STATE_PLAYING) {
2383       /* no state management needed for live pipelines */
2384       if (!is_live) {
2385         fprintf (stderr, "Done buffering, setting pipeline to PLAYING ...\n");
2386         gst_element_set_state (pipeline, GST_STATE_PLAYING);
2387       }
2388       gtk_statusbar_pop (GTK_STATUSBAR (statusbar), status_id);
2389       gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Playing");
2390     }
2391   } else {
2392     /* buffering busy */
2393     if (buffering == FALSE && state == GST_STATE_PLAYING) {
2394       /* we were not buffering but PLAYING, PAUSE  the pipeline. */
2395       if (!is_live) {
2396         fprintf (stderr, "Buffering, setting pipeline to PAUSED ...\n");
2397         gst_element_set_state (pipeline, GST_STATE_PAUSED);
2398       }
2399     }
2400     buffering = TRUE;
2401   }
2402 }
2403
2404 static void
2405 do_download_buffering (gint percent)
2406 {
2407   if (!buffering && percent < 100) {
2408     gchar *bufstr;
2409
2410     buffering = TRUE;
2411
2412     bufstr = g_strdup_printf ("Downloading...");
2413     gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, bufstr);
2414     g_free (bufstr);
2415
2416     /* once we get a buffering message, we'll do the fill update */
2417     set_update_fill (TRUE);
2418
2419     if (state == GST_STATE_PLAYING && !is_live) {
2420       fprintf (stderr, "Downloading, setting pipeline to PAUSED ...\n");
2421       gst_element_set_state (pipeline, GST_STATE_PAUSED);
2422       /* user has to manually start the playback */
2423       state = GST_STATE_PAUSED;
2424     }
2425   }
2426 }
2427
2428 static void
2429 msg_buffering (GstBus * bus, GstMessage * message, GstPipeline * data)
2430 {
2431   gint percent;
2432
2433   gst_message_parse_buffering (message, &percent);
2434
2435   /* get more stats */
2436   gst_message_parse_buffering_stats (message, &mode, NULL, NULL,
2437       &buffering_left);
2438
2439   switch (mode) {
2440     case GST_BUFFERING_DOWNLOAD:
2441       do_download_buffering (percent);
2442       break;
2443     case GST_BUFFERING_LIVE:
2444       is_live = TRUE;
2445     case GST_BUFFERING_TIMESHIFT:
2446     case GST_BUFFERING_STREAM:
2447       do_stream_buffering (percent);
2448       break;
2449   }
2450 }
2451
2452 static void
2453 msg_clock_lost (GstBus * bus, GstMessage * message, GstPipeline * data)
2454 {
2455   g_print ("clock lost! PAUSE and PLAY to select a new clock\n");
2456   if (state == GST_STATE_PLAYING) {
2457     gst_element_set_state (pipeline, GST_STATE_PAUSED);
2458     gst_element_set_state (pipeline, GST_STATE_PLAYING);
2459   }
2460 }
2461
2462 #if defined (GDK_WINDOWING_X11) || defined (GDK_WINDOWING_WIN32) || defined (GDK_WINDOWING_QUARTZ)
2463
2464 static GstElement *xoverlay_element = NULL;
2465 static guintptr embed_xid = 0;
2466
2467 /* We set the xid here in response to the prepare-xwindow-id message via a
2468  * bus sync handler because we don't know the actual videosink used from the
2469  * start (as we don't know the pipeline, or bin elements such as autovideosink
2470  * or gconfvideosink may be used which create the actual videosink only once
2471  * the pipeline is started) */
2472 static GstBusSyncReply
2473 bus_sync_handler (GstBus * bus, GstMessage * message, GstPipeline * data)
2474 {
2475   if ((GST_MESSAGE_TYPE (message) == GST_MESSAGE_ELEMENT) &&
2476       gst_structure_has_name (message->structure, "prepare-xwindow-id")) {
2477     GstElement *element = GST_ELEMENT (GST_MESSAGE_SRC (message));
2478
2479     xoverlay_element = element;
2480
2481     g_print ("got prepare-xwindow-id, setting XID %lu\n", embed_xid);
2482
2483     if (g_object_class_find_property (G_OBJECT_GET_CLASS (element),
2484             "force-aspect-ratio")) {
2485       g_object_set (element, "force-aspect-ratio", TRUE, NULL);
2486     }
2487
2488     /* Should have been initialised from main thread before (can't use
2489      * GDK_WINDOW_XID here with Gtk+ >= 2.18, because the sync handler will
2490      * be called from a streaming thread and GDK_WINDOW_XID maps to more than
2491      * a simple structure lookup with Gtk+ >= 2.18, where 'more' is stuff that
2492      * shouldn't be done from a non-GUI thread without explicit locking).  */
2493     g_assert (embed_xid != 0);
2494
2495     gst_x_overlay_set_window_handle (GST_X_OVERLAY (element), embed_xid);
2496   }
2497   return GST_BUS_PASS;
2498 }
2499 #endif
2500
2501 static gboolean
2502 draw_cb (GtkWidget * widget, cairo_t * cr, gpointer data)
2503 {
2504   if (state < GST_STATE_PAUSED) {
2505     int width, height;
2506
2507     width = gtk_widget_get_allocated_width (widget);
2508     height = gtk_widget_get_allocated_height (widget);
2509     cairo_set_source_rgb (cr, 0, 0, 0);
2510     cairo_rectangle (cr, 0, 0, width, height);
2511     cairo_fill (cr);
2512     return TRUE;
2513   }
2514
2515   if (xoverlay_element)
2516     gst_x_overlay_expose (GST_X_OVERLAY (xoverlay_element));
2517
2518   return FALSE;
2519 }
2520
2521 static void
2522 realize_cb (GtkWidget * widget, gpointer data)
2523 {
2524   GdkWindow *window = gtk_widget_get_window (widget);
2525
2526   /* This is here just for pedagogical purposes, GDK_WINDOW_XID will call it
2527    * as well */
2528   if (!gdk_window_ensure_native (window))
2529     g_error ("Couldn't create native window needed for GstXOverlay!");
2530
2531 #if defined (GDK_WINDOWING_WIN32)
2532   embed_xid = GDK_WINDOW_HWND (window);
2533   g_print ("Window realize: video window HWND = %lu\n", embed_xid);
2534 #elif defined (GDK_WINDOWING_QUARTZ)
2535   embed_xid = gdk_quartz_window_get_nsview (window);
2536   g_print ("Window realize: video window NSView = %p\n", embed_xid);
2537 #elif defined (GDK_WINDOWING_X11)
2538   embed_xid = GDK_WINDOW_XID (window);
2539   g_print ("Window realize: video window XID = %lu\n", embed_xid);
2540 #endif
2541 }
2542
2543 static void
2544 msg_eos (GstBus * bus, GstMessage * message, GstPipeline * data)
2545 {
2546   message_received (bus, message, data);
2547
2548   /* Set new uri for playerbins and continue playback */
2549   if (l && (pipeline_type == 14 || pipeline_type == 16)) {
2550     stop_cb (NULL, NULL);
2551     l = g_list_next (l);
2552     if (l) {
2553       playerbin_set_uri (GST_ELEMENT (data), l->data);
2554       play_cb (NULL, NULL);
2555     }
2556   }
2557 }
2558
2559 static void
2560 msg_step_done (GstBus * bus, GstMessage * message, GstPipeline * data)
2561 {
2562   if (!shuttling)
2563     message_received (bus, message, data);
2564 }
2565
2566 static void
2567 connect_bus_signals (GstElement * pipeline)
2568 {
2569   GstBus *bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
2570
2571 #if defined (GDK_WINDOWING_X11) || defined (GDK_WINDOWING_WIN32) || defined (GDK_WINDOWING_QUARTZ)
2572   /* handle prepare-xwindow-id element message synchronously */
2573   gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bus_sync_handler,
2574       pipeline);
2575 #endif
2576
2577   gst_bus_add_signal_watch_full (bus, G_PRIORITY_HIGH);
2578   gst_bus_enable_sync_message_emission (bus);
2579
2580   g_signal_connect (bus, "message::state-changed",
2581       (GCallback) msg_state_changed, pipeline);
2582   g_signal_connect (bus, "message::segment-done", (GCallback) msg_segment_done,
2583       pipeline);
2584   g_signal_connect (bus, "message::async-done", (GCallback) msg_async_done,
2585       pipeline);
2586
2587   g_signal_connect (bus, "message::new-clock", (GCallback) message_received,
2588       pipeline);
2589   g_signal_connect (bus, "message::clock-lost", (GCallback) msg_clock_lost,
2590       pipeline);
2591   g_signal_connect (bus, "message::error", (GCallback) message_received,
2592       pipeline);
2593   g_signal_connect (bus, "message::warning", (GCallback) message_received,
2594       pipeline);
2595   g_signal_connect (bus, "message::eos", (GCallback) msg_eos, pipeline);
2596   g_signal_connect (bus, "message::tag", (GCallback) message_received,
2597       pipeline);
2598   g_signal_connect (bus, "message::element", (GCallback) message_received,
2599       pipeline);
2600   g_signal_connect (bus, "message::segment-done", (GCallback) message_received,
2601       pipeline);
2602   g_signal_connect (bus, "message::buffering", (GCallback) msg_buffering,
2603       pipeline);
2604 //  g_signal_connect (bus, "message::step-done", (GCallback) msg_step_done,
2605 //      pipeline);
2606   g_signal_connect (bus, "message::step-start", (GCallback) msg_step_done,
2607       pipeline);
2608   g_signal_connect (bus, "sync-message::step-done",
2609       (GCallback) msg_sync_step_done, pipeline);
2610
2611   gst_object_unref (bus);
2612 }
2613
2614 /* Return GList of paths described in location string */
2615 static GList *
2616 handle_wildcards (const gchar * location)
2617 {
2618   GList *res = NULL;
2619   gchar *path = g_path_get_dirname (location);
2620   gchar *pattern = g_path_get_basename (location);
2621   GPatternSpec *pspec = g_pattern_spec_new (pattern);
2622   GDir *dir = g_dir_open (path, 0, NULL);
2623   const gchar *name;
2624
2625   g_print ("matching %s from %s\n", pattern, path);
2626
2627   if (!dir) {
2628     g_print ("opening directory %s failed\n", path);
2629     goto out;
2630   }
2631
2632   while ((name = g_dir_read_name (dir)) != NULL) {
2633     if (g_pattern_match_string (pspec, name)) {
2634       res = g_list_append (res, g_strjoin ("/", path, name, NULL));
2635       g_print ("  found clip %s\n", name);
2636     }
2637   }
2638
2639   g_dir_close (dir);
2640 out:
2641   g_pattern_spec_free (pspec);
2642   g_free (pattern);
2643   g_free (path);
2644
2645   return res;
2646 }
2647
2648 static void
2649 delete_event_cb (void)
2650 {
2651   stop_cb (NULL, NULL);
2652   gtk_main_quit ();
2653 }
2654
2655 static void
2656 print_usage (int argc, char **argv)
2657 {
2658   gint i;
2659
2660   g_print ("usage: %s <type> <filename>\n", argv[0]);
2661   g_print ("   possible types:\n");
2662
2663   for (i = 0; i < NUM_TYPES; i++) {
2664     g_print ("     %d = %s\n", i, pipelines[i].name);
2665   }
2666 }
2667
2668 int
2669 main (int argc, char **argv)
2670 {
2671   GtkWidget *window, *hbox, *vbox, *panel, *expander, *pb2vbox, *boxes,
2672       *flagtable, *boxes2, *step;
2673   GtkWidget *play_button, *pause_button, *stop_button, *shot_button;
2674   GtkWidget *accurate_checkbox, *key_checkbox, *loop_checkbox, *flush_checkbox;
2675   GtkWidget *scrub_checkbox, *play_scrub_checkbox;
2676   GtkWidget *rate_label, *volume_label;
2677   GOptionEntry options[] = {
2678     {"audiosink", '\0', 0, G_OPTION_ARG_STRING, &opt_audiosink_str,
2679         "audio sink to use (default: " DEFAULT_AUDIOSINK ")", NULL},
2680     {"stats", 's', 0, G_OPTION_ARG_NONE, &stats,
2681         "Show pad stats", NULL},
2682     {"elem", 'e', 0, G_OPTION_ARG_NONE, &elem_seek,
2683         "Seek on elements instead of pads", NULL},
2684     {"verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose,
2685         "Verbose properties", NULL},
2686     {"videosink", '\0', 0, G_OPTION_ARG_STRING, &opt_videosink_str,
2687         "video sink to use (default: " DEFAULT_VIDEOSINK ")", NULL},
2688     {NULL}
2689   };
2690   GOptionContext *ctx;
2691   GError *err = NULL;
2692
2693 #if !GLIB_CHECK_VERSION (2, 31, 0)
2694   if (!g_thread_supported ())
2695     g_thread_init (NULL);
2696 #endif
2697
2698   ctx = g_option_context_new ("- test seeking in gsteamer");
2699   g_option_context_add_main_entries (ctx, options, NULL);
2700   g_option_context_add_group (ctx, gst_init_get_option_group ());
2701   g_option_context_add_group (ctx, gtk_get_option_group (TRUE));
2702
2703   if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
2704     g_print ("Error initializing: %s\n", err->message);
2705     exit (1);
2706   }
2707
2708   if (opt_audiosink_str == NULL)
2709     opt_audiosink_str = g_strdup (DEFAULT_AUDIOSINK);
2710
2711   if (opt_videosink_str == NULL)
2712     opt_videosink_str = g_strdup (DEFAULT_VIDEOSINK);
2713
2714   GST_DEBUG_CATEGORY_INIT (seek_debug, "seek", 0, "seek example");
2715
2716   if (argc != 3) {
2717     print_usage (argc, argv);
2718     exit (-1);
2719   }
2720
2721   pipeline_type = atoi (argv[1]);
2722
2723   if (pipeline_type < 0 || pipeline_type >= NUM_TYPES) {
2724     print_usage (argc, argv);
2725     exit (-1);
2726   }
2727
2728   pipeline_spec = argv[2];
2729
2730   if (g_path_is_absolute (pipeline_spec) &&
2731       (g_strrstr (pipeline_spec, "*") != NULL ||
2732           g_strrstr (pipeline_spec, "?") != NULL)) {
2733     paths = handle_wildcards (pipeline_spec);
2734   } else {
2735     paths = g_list_prepend (paths, g_strdup (pipeline_spec));
2736   }
2737
2738   if (!paths) {
2739     g_print ("opening %s failed\n", pipeline_spec);
2740     exit (-1);
2741   }
2742
2743   l = paths;
2744
2745   pipeline = pipelines[pipeline_type].func ((gchar *) l->data);
2746   g_assert (pipeline);
2747
2748   /* initialize gui elements ... */
2749   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
2750   video_window = gtk_drawing_area_new ();
2751   g_signal_connect (video_window, "draw", G_CALLBACK (draw_cb), NULL);
2752   g_signal_connect (video_window, "realize", G_CALLBACK (realize_cb), NULL);
2753   gtk_widget_set_double_buffered (video_window, FALSE);
2754
2755   statusbar = gtk_statusbar_new ();
2756   status_id = gtk_statusbar_get_context_id (GTK_STATUSBAR (statusbar), "seek");
2757   gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Stopped");
2758   hbox = gtk_hbox_new (FALSE, 0);
2759   vbox = gtk_vbox_new (FALSE, 0);
2760   flagtable = gtk_table_new (4, 2, FALSE);
2761   gtk_container_set_border_width (GTK_CONTAINER (vbox), 3);
2762
2763   /* media controls */
2764   play_button = gtk_button_new_from_stock (GTK_STOCK_MEDIA_PLAY);
2765   pause_button = gtk_button_new_from_stock (GTK_STOCK_MEDIA_PAUSE);
2766   stop_button = gtk_button_new_from_stock (GTK_STOCK_MEDIA_STOP);
2767
2768   /* seek flags */
2769   accurate_checkbox = gtk_check_button_new_with_label ("Accurate Seek");
2770   key_checkbox = gtk_check_button_new_with_label ("Key-unit Seek");
2771   loop_checkbox = gtk_check_button_new_with_label ("Loop");
2772   flush_checkbox = gtk_check_button_new_with_label ("Flush");
2773   scrub_checkbox = gtk_check_button_new_with_label ("Scrub");
2774   play_scrub_checkbox = gtk_check_button_new_with_label ("Play Scrub");
2775   skip_checkbox = gtk_check_button_new_with_label ("Play Skip");
2776   rate_spinbutton = gtk_spin_button_new_with_range (-100, 100, 0.1);
2777   gtk_spin_button_set_digits (GTK_SPIN_BUTTON (rate_spinbutton), 3);
2778   rate_label = gtk_label_new ("Rate");
2779
2780   gtk_widget_set_tooltip_text (accurate_checkbox,
2781       "accurate position is requested, this might be considerably slower for some formats");
2782   gtk_widget_set_tooltip_text (key_checkbox,
2783       "seek to the nearest keyframe. This might be faster but less accurate");
2784   gtk_widget_set_tooltip_text (loop_checkbox, "loop playback");
2785   gtk_widget_set_tooltip_text (flush_checkbox, "flush pipeline after seeking");
2786   gtk_widget_set_tooltip_text (rate_spinbutton, "define the playback rate, "
2787       "negative value trigger reverse playback");
2788   gtk_widget_set_tooltip_text (scrub_checkbox, "show images while seeking");
2789   gtk_widget_set_tooltip_text (play_scrub_checkbox, "play video while seeking");
2790   gtk_widget_set_tooltip_text (skip_checkbox,
2791       "Skip frames while playing at high frame rates");
2792
2793   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (flush_checkbox), TRUE);
2794   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (scrub_checkbox), TRUE);
2795
2796   gtk_spin_button_set_value (GTK_SPIN_BUTTON (rate_spinbutton), rate);
2797
2798   /* step expander */
2799   {
2800     GtkWidget *hbox;
2801
2802     step = gtk_expander_new ("step options");
2803     hbox = gtk_hbox_new (FALSE, 0);
2804
2805     format_combo = gtk_combo_box_text_new ();
2806     gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (format_combo),
2807         "frames");
2808     gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (format_combo),
2809         "time (ms)");
2810     gtk_combo_box_set_active (GTK_COMBO_BOX (format_combo), 0);
2811     gtk_box_pack_start (GTK_BOX (hbox), format_combo, FALSE, FALSE, 2);
2812
2813     step_amount_spinbutton = gtk_spin_button_new_with_range (1, 1000, 1);
2814     gtk_spin_button_set_digits (GTK_SPIN_BUTTON (step_amount_spinbutton), 0);
2815     gtk_spin_button_set_value (GTK_SPIN_BUTTON (step_amount_spinbutton), 1.0);
2816     gtk_box_pack_start (GTK_BOX (hbox), step_amount_spinbutton, FALSE, FALSE,
2817         2);
2818
2819     step_rate_spinbutton = gtk_spin_button_new_with_range (0.0, 100, 0.1);
2820     gtk_spin_button_set_digits (GTK_SPIN_BUTTON (step_rate_spinbutton), 3);
2821     gtk_spin_button_set_value (GTK_SPIN_BUTTON (step_rate_spinbutton), 1.0);
2822     gtk_box_pack_start (GTK_BOX (hbox), step_rate_spinbutton, FALSE, FALSE, 2);
2823
2824     step_button = gtk_button_new_from_stock (GTK_STOCK_MEDIA_FORWARD);
2825     gtk_button_set_label (GTK_BUTTON (step_button), "Step");
2826     gtk_box_pack_start (GTK_BOX (hbox), step_button, FALSE, FALSE, 2);
2827
2828     g_signal_connect (G_OBJECT (step_button), "clicked", G_CALLBACK (step_cb),
2829         pipeline);
2830
2831     /* shuttle scale */
2832     shuttle_checkbox = gtk_check_button_new_with_label ("Shuttle");
2833     gtk_box_pack_start (GTK_BOX (hbox), shuttle_checkbox, FALSE, FALSE, 2);
2834     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (shuttle_checkbox), FALSE);
2835     g_signal_connect (shuttle_checkbox, "toggled", G_CALLBACK (shuttle_toggled),
2836         pipeline);
2837
2838     shuttle_adjustment =
2839         GTK_ADJUSTMENT (gtk_adjustment_new (0.0, -3.00, 4.0, 0.1, 1.0, 1.0));
2840     shuttle_hscale = gtk_hscale_new (shuttle_adjustment);
2841     gtk_scale_set_digits (GTK_SCALE (shuttle_hscale), 2);
2842     gtk_scale_set_value_pos (GTK_SCALE (shuttle_hscale), GTK_POS_TOP);
2843     g_signal_connect (shuttle_hscale, "value_changed",
2844         G_CALLBACK (shuttle_value_changed), pipeline);
2845     g_signal_connect (shuttle_hscale, "format_value",
2846         G_CALLBACK (shuttle_format_value), pipeline);
2847
2848     gtk_box_pack_start (GTK_BOX (hbox), shuttle_hscale, TRUE, TRUE, 2);
2849
2850     gtk_container_add (GTK_CONTAINER (step), hbox);
2851   }
2852
2853   /* seek bar */
2854   adjustment =
2855       GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.00, N_GRAD, 0.1, 1.0, 1.0));
2856   hscale = gtk_hscale_new (adjustment);
2857   gtk_scale_set_digits (GTK_SCALE (hscale), 2);
2858   gtk_scale_set_value_pos (GTK_SCALE (hscale), GTK_POS_RIGHT);
2859   gtk_range_set_show_fill_level (GTK_RANGE (hscale), TRUE);
2860   gtk_range_set_fill_level (GTK_RANGE (hscale), N_GRAD);
2861
2862   g_signal_connect (hscale, "button_press_event", G_CALLBACK (start_seek),
2863       pipeline);
2864   g_signal_connect (hscale, "button_release_event", G_CALLBACK (stop_seek),
2865       pipeline);
2866   g_signal_connect (hscale, "format_value", G_CALLBACK (format_value),
2867       pipeline);
2868
2869   if (pipeline_type == 16) {
2870     /* the playbin2 panel controls for the video/audio/subtitle tracks */
2871     panel = gtk_hbox_new (FALSE, 0);
2872     video_combo = gtk_combo_box_text_new ();
2873     audio_combo = gtk_combo_box_text_new ();
2874     text_combo = gtk_combo_box_text_new ();
2875     gtk_widget_set_sensitive (video_combo, FALSE);
2876     gtk_widget_set_sensitive (audio_combo, FALSE);
2877     gtk_widget_set_sensitive (text_combo, FALSE);
2878     gtk_box_pack_start (GTK_BOX (panel), video_combo, TRUE, TRUE, 2);
2879     gtk_box_pack_start (GTK_BOX (panel), audio_combo, TRUE, TRUE, 2);
2880     gtk_box_pack_start (GTK_BOX (panel), text_combo, TRUE, TRUE, 2);
2881     g_signal_connect (G_OBJECT (video_combo), "changed",
2882         G_CALLBACK (video_combo_cb), pipeline);
2883     g_signal_connect (G_OBJECT (audio_combo), "changed",
2884         G_CALLBACK (audio_combo_cb), pipeline);
2885     g_signal_connect (G_OBJECT (text_combo), "changed",
2886         G_CALLBACK (text_combo_cb), pipeline);
2887     /* playbin2 panel for flag checkboxes and volume/mute */
2888     boxes = gtk_hbox_new (FALSE, 0);
2889     vis_checkbox = gtk_check_button_new_with_label ("Vis");
2890     video_checkbox = gtk_check_button_new_with_label ("Video");
2891     audio_checkbox = gtk_check_button_new_with_label ("Audio");
2892     text_checkbox = gtk_check_button_new_with_label ("Text");
2893     mute_checkbox = gtk_check_button_new_with_label ("Mute");
2894     download_checkbox = gtk_check_button_new_with_label ("Download");
2895     buffer_checkbox = gtk_check_button_new_with_label ("Buffer");
2896     volume_label = gtk_label_new ("Volume");
2897     volume_spinbutton = gtk_spin_button_new_with_range (0, 10.0, 0.1);
2898     gtk_spin_button_set_value (GTK_SPIN_BUTTON (volume_spinbutton), 1.0);
2899     gtk_box_pack_start (GTK_BOX (boxes), video_checkbox, TRUE, TRUE, 2);
2900     gtk_box_pack_start (GTK_BOX (boxes), audio_checkbox, TRUE, TRUE, 2);
2901     gtk_box_pack_start (GTK_BOX (boxes), text_checkbox, TRUE, TRUE, 2);
2902     gtk_box_pack_start (GTK_BOX (boxes), vis_checkbox, TRUE, TRUE, 2);
2903     gtk_box_pack_start (GTK_BOX (boxes), mute_checkbox, TRUE, TRUE, 2);
2904     gtk_box_pack_start (GTK_BOX (boxes), download_checkbox, TRUE, TRUE, 2);
2905     gtk_box_pack_start (GTK_BOX (boxes), buffer_checkbox, TRUE, TRUE, 2);
2906     gtk_box_pack_start (GTK_BOX (boxes), volume_label, TRUE, TRUE, 2);
2907     gtk_box_pack_start (GTK_BOX (boxes), volume_spinbutton, TRUE, TRUE, 2);
2908     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (vis_checkbox), FALSE);
2909     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (audio_checkbox), TRUE);
2910     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (video_checkbox), TRUE);
2911     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (text_checkbox), TRUE);
2912     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (mute_checkbox), FALSE);
2913     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (download_checkbox), FALSE);
2914     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (buffer_checkbox), FALSE);
2915     g_signal_connect (G_OBJECT (vis_checkbox), "toggled",
2916         G_CALLBACK (vis_toggle_cb), pipeline);
2917     g_signal_connect (G_OBJECT (audio_checkbox), "toggled",
2918         G_CALLBACK (audio_toggle_cb), pipeline);
2919     g_signal_connect (G_OBJECT (video_checkbox), "toggled",
2920         G_CALLBACK (video_toggle_cb), pipeline);
2921     g_signal_connect (G_OBJECT (text_checkbox), "toggled",
2922         G_CALLBACK (text_toggle_cb), pipeline);
2923     g_signal_connect (G_OBJECT (mute_checkbox), "toggled",
2924         G_CALLBACK (mute_toggle_cb), pipeline);
2925     g_signal_connect (G_OBJECT (download_checkbox), "toggled",
2926         G_CALLBACK (download_toggle_cb), pipeline);
2927     g_signal_connect (G_OBJECT (buffer_checkbox), "toggled",
2928         G_CALLBACK (buffer_toggle_cb), pipeline);
2929     g_signal_connect (G_OBJECT (volume_spinbutton), "value_changed",
2930         G_CALLBACK (volume_spinbutton_changed_cb), pipeline);
2931     /* playbin2 panel for snapshot */
2932     boxes2 = gtk_hbox_new (FALSE, 0);
2933     shot_button = gtk_button_new_from_stock (GTK_STOCK_SAVE);
2934     gtk_widget_set_tooltip_text (shot_button,
2935         "save a screenshot .png in the current directory");
2936     g_signal_connect (G_OBJECT (shot_button), "clicked", G_CALLBACK (shot_cb),
2937         pipeline);
2938     vis_combo = gtk_combo_box_text_new ();
2939     g_signal_connect (G_OBJECT (vis_combo), "changed",
2940         G_CALLBACK (vis_combo_cb), pipeline);
2941     gtk_widget_set_sensitive (vis_combo, FALSE);
2942     gtk_box_pack_start (GTK_BOX (boxes2), shot_button, TRUE, TRUE, 2);
2943     gtk_box_pack_start (GTK_BOX (boxes2), vis_combo, TRUE, TRUE, 2);
2944
2945     /* fill the vis combo box and the array of factories */
2946     init_visualization_features ();
2947   } else {
2948     panel = boxes = boxes2 = NULL;
2949   }
2950
2951   /* do the packing stuff ... */
2952   gtk_window_set_default_size (GTK_WINDOW (window), 250, 96);
2953   /* FIXME: can we avoid this for audio only? */
2954   gtk_widget_set_size_request (GTK_WIDGET (video_window), -1,
2955       DEFAULT_VIDEO_HEIGHT);
2956   gtk_container_add (GTK_CONTAINER (window), vbox);
2957   gtk_box_pack_start (GTK_BOX (vbox), video_window, TRUE, TRUE, 2);
2958   gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 2);
2959   gtk_box_pack_start (GTK_BOX (hbox), play_button, FALSE, FALSE, 2);
2960   gtk_box_pack_start (GTK_BOX (hbox), pause_button, FALSE, FALSE, 2);
2961   gtk_box_pack_start (GTK_BOX (hbox), stop_button, FALSE, FALSE, 2);
2962   gtk_box_pack_start (GTK_BOX (hbox), flagtable, FALSE, FALSE, 2);
2963   gtk_table_attach_defaults (GTK_TABLE (flagtable), accurate_checkbox, 0, 1, 0,
2964       1);
2965   gtk_table_attach_defaults (GTK_TABLE (flagtable), flush_checkbox, 1, 2, 0, 1);
2966   gtk_table_attach_defaults (GTK_TABLE (flagtable), loop_checkbox, 2, 3, 0, 1);
2967   gtk_table_attach_defaults (GTK_TABLE (flagtable), key_checkbox, 0, 1, 1, 2);
2968   gtk_table_attach_defaults (GTK_TABLE (flagtable), scrub_checkbox, 1, 2, 1, 2);
2969   gtk_table_attach_defaults (GTK_TABLE (flagtable), play_scrub_checkbox, 2, 3,
2970       1, 2);
2971   gtk_table_attach_defaults (GTK_TABLE (flagtable), skip_checkbox, 3, 4, 0, 1);
2972   gtk_table_attach_defaults (GTK_TABLE (flagtable), rate_label, 4, 5, 0, 1);
2973   gtk_table_attach_defaults (GTK_TABLE (flagtable), rate_spinbutton, 4, 5, 1,
2974       2);
2975   if (panel && boxes && boxes2) {
2976     expander = gtk_expander_new ("playbin2 options");
2977     pb2vbox = gtk_vbox_new (FALSE, 0);
2978     gtk_box_pack_start (GTK_BOX (pb2vbox), panel, FALSE, FALSE, 2);
2979     gtk_box_pack_start (GTK_BOX (pb2vbox), boxes, FALSE, FALSE, 2);
2980     gtk_box_pack_start (GTK_BOX (pb2vbox), boxes2, FALSE, FALSE, 2);
2981     gtk_container_add (GTK_CONTAINER (expander), pb2vbox);
2982     gtk_box_pack_start (GTK_BOX (vbox), expander, FALSE, FALSE, 2);
2983   }
2984   gtk_box_pack_start (GTK_BOX (vbox), step, FALSE, FALSE, 2);
2985   gtk_box_pack_start (GTK_BOX (vbox), hscale, FALSE, FALSE, 2);
2986   gtk_box_pack_start (GTK_BOX (vbox), statusbar, FALSE, FALSE, 2);
2987
2988   /* connect things ... */
2989   g_signal_connect (G_OBJECT (play_button), "clicked", G_CALLBACK (play_cb),
2990       pipeline);
2991   g_signal_connect (G_OBJECT (pause_button), "clicked", G_CALLBACK (pause_cb),
2992       pipeline);
2993   g_signal_connect (G_OBJECT (stop_button), "clicked", G_CALLBACK (stop_cb),
2994       pipeline);
2995   g_signal_connect (G_OBJECT (accurate_checkbox), "toggled",
2996       G_CALLBACK (accurate_toggle_cb), pipeline);
2997   g_signal_connect (G_OBJECT (key_checkbox), "toggled",
2998       G_CALLBACK (key_toggle_cb), pipeline);
2999   g_signal_connect (G_OBJECT (loop_checkbox), "toggled",
3000       G_CALLBACK (loop_toggle_cb), pipeline);
3001   g_signal_connect (G_OBJECT (flush_checkbox), "toggled",
3002       G_CALLBACK (flush_toggle_cb), pipeline);
3003   g_signal_connect (G_OBJECT (scrub_checkbox), "toggled",
3004       G_CALLBACK (scrub_toggle_cb), pipeline);
3005   g_signal_connect (G_OBJECT (play_scrub_checkbox), "toggled",
3006       G_CALLBACK (play_scrub_toggle_cb), pipeline);
3007   g_signal_connect (G_OBJECT (skip_checkbox), "toggled",
3008       G_CALLBACK (skip_toggle_cb), pipeline);
3009   g_signal_connect (G_OBJECT (rate_spinbutton), "value_changed",
3010       G_CALLBACK (rate_spinbutton_changed_cb), pipeline);
3011
3012   g_signal_connect (G_OBJECT (window), "delete-event", delete_event_cb, NULL);
3013
3014   /* show the gui. */
3015   gtk_widget_show_all (window);
3016
3017   /* realize window now so that the video window gets created and we can
3018    * obtain its XID before the pipeline is started up and the videosink
3019    * asks for the XID of the window to render onto */
3020   gtk_widget_realize (window);
3021
3022 #if defined (GDK_WINDOWING_X11) || defined (GDK_WINDOWING_WIN32) || defined (GDK_WINDOWING_QUARTZ)
3023   /* we should have the XID now */
3024   g_assert (embed_xid != 0);
3025 #endif
3026
3027   if (verbose) {
3028     g_signal_connect (pipeline, "deep_notify",
3029         G_CALLBACK (gst_object_default_deep_notify), NULL);
3030   }
3031
3032   connect_bus_signals (pipeline);
3033   gtk_main ();
3034
3035   g_print ("NULL pipeline\n");
3036   gst_element_set_state (pipeline, GST_STATE_NULL);
3037
3038   g_print ("free pipeline\n");
3039   gst_object_unref (pipeline);
3040
3041   g_list_foreach (paths, (GFunc) g_free, NULL);
3042   g_list_free (paths);
3043
3044   return 0;
3045 }