3 * seek.c: seeking sample application
5 * Copyright (C) 2005 Wim Taymans <wim@fluendo.com>
6 * 2006 Stefan Kost <ensonic@users.sf.net>
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.
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.
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.
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
39 #if defined (GDK_WINDOWING_X11)
41 #elif defined (GDK_WINDOWING_WIN32)
42 #include <gdk/gdkwin32.h>
45 #include <gst/interfaces/xoverlay.h>
47 GST_DEBUG_CATEGORY_STATIC (seek_debug);
48 #define GST_CAT_DEFAULT (seek_debug)
52 #define SOURCE "filesrc"
54 static gchar *opt_audiosink_str; /* NULL */
55 static gchar *opt_videosink_str; /* NULL */
57 #define FILL_INTERVAL 100
58 //#define UPDATE_INTERVAL 500
59 //#define UPDATE_INTERVAL 100
60 #define UPDATE_INTERVAL 40
62 /* number of milliseconds to play for after a seek */
63 #define SCRUB_TIME 100
65 /* timeout for gst_element_get_state() after a seek */
66 #define SEEK_TIMEOUT 40 * GST_MSECOND
68 #define DEFAULT_VIDEO_HEIGHT 300
70 /* the state to go to when stop is pressed */
71 #define STOP_STATE GST_STATE_READY
75 static GList *seekable_pads = NULL;
76 static GList *rate_pads = NULL;
77 static GList *seekable_elements = NULL;
79 static gboolean accurate_seek = FALSE;
80 static gboolean keyframe_seek = FALSE;
81 static gboolean loop_seek = FALSE;
82 static gboolean flush_seek = TRUE;
83 static gboolean scrub = TRUE;
84 static gboolean play_scrub = FALSE;
85 static gboolean skip_seek = FALSE;
86 static gdouble rate = 1.0;
88 static GstElement *pipeline;
89 static gint pipeline_type;
90 static const gchar *pipeline_spec;
91 static gint64 position = -1;
92 static gint64 duration = -1;
93 static GtkAdjustment *adjustment;
94 static GtkWidget *hscale, *statusbar;
95 static guint status_id = 0;
96 static gboolean stats = FALSE;
97 static gboolean elem_seek = FALSE;
98 static gboolean verbose = FALSE;
100 static gboolean is_live = FALSE;
101 static gboolean buffering = FALSE;
102 static GstBufferingMode mode;
103 static gint64 buffering_left;
104 static GstState state = GST_STATE_NULL;
105 static guint update_id = 0;
106 static guint seek_timeout_id = 0;
107 static gulong changed_id;
108 static guint fill_id = 0;
110 static gint n_video = 0, n_audio = 0, n_text = 0;
111 static gboolean need_streams = TRUE;
112 static GtkWidget *video_combo, *audio_combo, *text_combo, *vis_combo;
113 static GtkWidget *vis_checkbox, *video_checkbox, *audio_checkbox;
114 static GtkWidget *text_checkbox, *mute_checkbox, *volume_spinbutton;
115 static GtkWidget *skip_checkbox, *video_window, *download_checkbox;
116 static GtkWidget *buffer_checkbox, *rate_spinbutton;
118 static GStaticMutex state_mutex = G_STATIC_MUTEX_INIT;
120 static GtkWidget *format_combo, *step_amount_spinbutton, *step_rate_spinbutton;
121 static GtkWidget *shuttle_checkbox, *step_button;
122 static GtkWidget *shuttle_hscale;
123 static GtkAdjustment *shuttle_adjustment;
125 static GList *paths = NULL, *l = NULL;
127 /* we keep an array of the visualisation entries so that we can easily switch
128 * with the combo box index. */
131 GstElementFactory *factory;
134 static GArray *vis_entries;
136 static void clear_streams (GstElement * pipeline);
137 static void volume_notify_cb (GstElement * pipeline, GParamSpec * arg,
140 /* pipeline construction */
144 const gchar *padname;
151 gst_element_factory_make_or_warn (const gchar * type, const gchar * name)
153 GstElement *element = gst_element_factory_make (type, name);
155 #ifndef GST_DISABLE_PARSE
157 /* Try parsing it as a pipeline description */
158 element = gst_parse_bin_from_description (type, TRUE, NULL);
160 gst_element_set_name (element, name);
166 g_warning ("Failed to create element %s of type %s", name, type);
173 dynamic_link (GstPadTemplate * templ, GstPad * newpad, gpointer data)
176 dyn_link *connect = (dyn_link *) data;
178 padname = gst_pad_get_name (newpad);
180 if (connect->padname == NULL || !strcmp (padname, connect->padname)) {
182 gst_bin_add (GST_BIN (pipeline), connect->bin);
183 gst_pad_link (newpad, connect->target);
185 //seekable_pads = g_list_prepend (seekable_pads, newpad);
186 rate_pads = g_list_prepend (rate_pads, newpad);
192 setup_dynamic_link (GstElement * element, const gchar * padname,
193 GstPad * target, GstElement * bin)
197 connect = g_new0 (dyn_link, 1);
198 connect->padname = g_strdup (padname);
199 connect->target = target;
202 g_signal_connect (G_OBJECT (element), "pad-added", G_CALLBACK (dynamic_link),
207 make_mod_pipeline (const gchar * location)
209 GstElement *pipeline;
210 GstElement *src, *decoder, *audiosink;
213 pipeline = gst_pipeline_new ("app");
215 src = gst_element_factory_make_or_warn (SOURCE, "src");
216 decoder = gst_element_factory_make_or_warn ("modplug", "decoder");
217 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
218 //g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL);
220 g_object_set (G_OBJECT (src), "location", location, NULL);
222 gst_bin_add (GST_BIN (pipeline), src);
223 gst_bin_add (GST_BIN (pipeline), decoder);
224 gst_bin_add (GST_BIN (pipeline), audiosink);
226 gst_element_link (src, decoder);
227 gst_element_link (decoder, audiosink);
229 seekable = gst_element_get_static_pad (decoder, "src");
230 seekable_pads = g_list_prepend (seekable_pads, seekable);
231 rate_pads = g_list_prepend (rate_pads, seekable);
233 g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
239 make_dv_pipeline (const gchar * location)
241 GstElement *pipeline;
242 GstElement *src, *demux, *decoder, *audiosink, *videosink;
243 GstElement *a_queue, *v_queue;
246 pipeline = gst_pipeline_new ("app");
248 src = gst_element_factory_make_or_warn (SOURCE, "src");
249 demux = gst_element_factory_make_or_warn ("dvdemux", "demuxer");
250 v_queue = gst_element_factory_make_or_warn ("queue", "v_queue");
251 decoder = gst_element_factory_make_or_warn ("ffdec_dvvideo", "decoder");
252 videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
253 a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
254 audiosink = gst_element_factory_make_or_warn ("alsasink", "a_sink");
256 g_object_set (G_OBJECT (src), "location", location, NULL);
258 gst_bin_add (GST_BIN (pipeline), src);
259 gst_bin_add (GST_BIN (pipeline), demux);
260 gst_bin_add (GST_BIN (pipeline), a_queue);
261 gst_bin_add (GST_BIN (pipeline), audiosink);
262 gst_bin_add (GST_BIN (pipeline), v_queue);
263 gst_bin_add (GST_BIN (pipeline), decoder);
264 gst_bin_add (GST_BIN (pipeline), videosink);
266 gst_element_link (src, demux);
267 gst_element_link (a_queue, audiosink);
268 gst_element_link (v_queue, decoder);
269 gst_element_link (decoder, videosink);
271 setup_dynamic_link (demux, "video", gst_element_get_static_pad (v_queue,
273 setup_dynamic_link (demux, "audio", gst_element_get_static_pad (a_queue,
276 seekable = gst_element_get_static_pad (decoder, "src");
277 seekable_pads = g_list_prepend (seekable_pads, seekable);
278 rate_pads = g_list_prepend (rate_pads, seekable);
284 make_wav_pipeline (const gchar * location)
286 GstElement *pipeline;
287 GstElement *src, *decoder, *audiosink;
289 pipeline = gst_pipeline_new ("app");
291 src = gst_element_factory_make_or_warn (SOURCE, "src");
292 decoder = gst_element_factory_make_or_warn ("wavparse", "decoder");
293 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
295 g_object_set (G_OBJECT (src), "location", location, NULL);
297 gst_bin_add (GST_BIN (pipeline), src);
298 gst_bin_add (GST_BIN (pipeline), decoder);
299 gst_bin_add (GST_BIN (pipeline), audiosink);
301 gst_element_link (src, decoder);
303 setup_dynamic_link (decoder, "src", gst_element_get_static_pad (audiosink,
306 seekable_elements = g_list_prepend (seekable_elements, audiosink);
308 /* force element seeking on this pipeline */
315 make_flac_pipeline (const gchar * location)
317 GstElement *pipeline;
318 GstElement *src, *decoder, *audiosink;
321 pipeline = gst_pipeline_new ("app");
323 src = gst_element_factory_make_or_warn (SOURCE, "src");
324 decoder = gst_element_factory_make_or_warn ("flacdec", "decoder");
325 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
326 g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL);
328 g_object_set (G_OBJECT (src), "location", location, NULL);
330 gst_bin_add (GST_BIN (pipeline), src);
331 gst_bin_add (GST_BIN (pipeline), decoder);
332 gst_bin_add (GST_BIN (pipeline), audiosink);
334 gst_element_link (src, decoder);
335 gst_element_link (decoder, audiosink);
337 seekable = gst_element_get_static_pad (decoder, "src");
338 seekable_pads = g_list_prepend (seekable_pads, seekable);
339 rate_pads = g_list_prepend (rate_pads, seekable);
341 g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
347 make_sid_pipeline (const gchar * location)
349 GstElement *pipeline;
350 GstElement *src, *decoder, *audiosink;
353 pipeline = gst_pipeline_new ("app");
355 src = gst_element_factory_make_or_warn (SOURCE, "src");
356 decoder = gst_element_factory_make_or_warn ("siddec", "decoder");
357 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
358 //g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL);
360 g_object_set (G_OBJECT (src), "location", location, NULL);
362 gst_bin_add (GST_BIN (pipeline), src);
363 gst_bin_add (GST_BIN (pipeline), decoder);
364 gst_bin_add (GST_BIN (pipeline), audiosink);
366 gst_element_link (src, decoder);
367 gst_element_link (decoder, audiosink);
369 seekable = gst_element_get_static_pad (decoder, "src");
370 seekable_pads = g_list_prepend (seekable_pads, seekable);
371 rate_pads = g_list_prepend (rate_pads, seekable);
373 g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
379 make_parse_pipeline (const gchar * location)
381 GstElement *pipeline;
382 GstElement *src, *parser, *fakesink;
385 pipeline = gst_pipeline_new ("app");
387 src = gst_element_factory_make_or_warn (SOURCE, "src");
388 parser = gst_element_factory_make_or_warn ("mpegparse", "parse");
389 fakesink = gst_element_factory_make_or_warn ("fakesink", "sink");
390 g_object_set (G_OBJECT (fakesink), "silent", TRUE, NULL);
391 g_object_set (G_OBJECT (fakesink), "sync", TRUE, NULL);
393 g_object_set (G_OBJECT (src), "location", location, NULL);
395 gst_bin_add (GST_BIN (pipeline), src);
396 gst_bin_add (GST_BIN (pipeline), parser);
397 gst_bin_add (GST_BIN (pipeline), fakesink);
399 gst_element_link (src, parser);
400 gst_element_link (parser, fakesink);
402 seekable = gst_element_get_static_pad (parser, "src");
403 seekable_pads = g_list_prepend (seekable_pads, seekable);
404 rate_pads = g_list_prepend (rate_pads, seekable);
406 g_list_prepend (rate_pads, gst_element_get_static_pad (parser, "sink"));
412 make_vorbis_pipeline (const gchar * location)
414 GstElement *pipeline, *audio_bin;
415 GstElement *src, *demux, *decoder, *convert, *audiosink;
416 GstPad *pad, *seekable;
418 pipeline = gst_pipeline_new ("app");
420 src = gst_element_factory_make_or_warn (SOURCE, "src");
421 demux = gst_element_factory_make_or_warn ("oggdemux", "demux");
422 decoder = gst_element_factory_make_or_warn ("vorbisdec", "decoder");
423 convert = gst_element_factory_make_or_warn ("audioconvert", "convert");
424 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
425 g_object_set (G_OBJECT (audiosink), "sync", TRUE, NULL);
427 g_object_set (G_OBJECT (src), "location", location, NULL);
429 audio_bin = gst_bin_new ("a_decoder_bin");
431 gst_bin_add (GST_BIN (pipeline), src);
432 gst_bin_add (GST_BIN (pipeline), demux);
433 gst_bin_add (GST_BIN (audio_bin), decoder);
434 gst_bin_add (GST_BIN (audio_bin), convert);
435 gst_bin_add (GST_BIN (audio_bin), audiosink);
436 gst_bin_add (GST_BIN (pipeline), audio_bin);
438 gst_element_link (src, demux);
439 gst_element_link (decoder, convert);
440 gst_element_link (convert, audiosink);
442 pad = gst_element_get_static_pad (decoder, "sink");
443 gst_element_add_pad (audio_bin, gst_ghost_pad_new ("sink", pad));
444 gst_object_unref (pad);
446 setup_dynamic_link (demux, NULL, gst_element_get_static_pad (audio_bin,
449 seekable = gst_element_get_static_pad (decoder, "src");
450 seekable_pads = g_list_prepend (seekable_pads, seekable);
451 rate_pads = g_list_prepend (rate_pads, seekable);
453 g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
459 make_theora_pipeline (const gchar * location)
461 GstElement *pipeline, *video_bin;
462 GstElement *src, *demux, *decoder, *convert, *videosink;
463 GstPad *pad, *seekable;
465 pipeline = gst_pipeline_new ("app");
467 src = gst_element_factory_make_or_warn (SOURCE, "src");
468 demux = gst_element_factory_make_or_warn ("oggdemux", "demux");
469 decoder = gst_element_factory_make_or_warn ("theoradec", "decoder");
470 convert = gst_element_factory_make_or_warn ("ffmpegcolorspace", "convert");
471 videosink = gst_element_factory_make_or_warn (opt_videosink_str, "sink");
473 g_object_set (G_OBJECT (src), "location", location, NULL);
475 video_bin = gst_bin_new ("v_decoder_bin");
477 gst_bin_add (GST_BIN (pipeline), src);
478 gst_bin_add (GST_BIN (pipeline), demux);
479 gst_bin_add (GST_BIN (video_bin), decoder);
480 gst_bin_add (GST_BIN (video_bin), convert);
481 gst_bin_add (GST_BIN (video_bin), videosink);
482 gst_bin_add (GST_BIN (pipeline), video_bin);
484 gst_element_link (src, demux);
485 gst_element_link (decoder, convert);
486 gst_element_link (convert, videosink);
488 pad = gst_element_get_static_pad (decoder, "sink");
489 gst_element_add_pad (video_bin, gst_ghost_pad_new ("sink", pad));
490 gst_object_unref (pad);
492 setup_dynamic_link (demux, NULL, gst_element_get_static_pad (video_bin,
495 seekable = gst_element_get_static_pad (decoder, "src");
496 seekable_pads = g_list_prepend (seekable_pads, seekable);
497 rate_pads = g_list_prepend (rate_pads, seekable);
499 g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
505 make_vorbis_theora_pipeline (const gchar * location)
507 GstElement *pipeline, *audio_bin, *video_bin;
508 GstElement *src, *demux, *a_decoder, *a_convert, *v_decoder, *v_convert;
509 GstElement *audiosink, *videosink;
510 GstElement *a_queue, *v_queue, *v_scale;
514 pipeline = gst_pipeline_new ("app");
516 src = gst_element_factory_make_or_warn (SOURCE, "src");
517 g_object_set (G_OBJECT (src), "location", location, NULL);
519 demux = gst_element_factory_make_or_warn ("oggdemux", "demux");
521 gst_bin_add (GST_BIN (pipeline), src);
522 gst_bin_add (GST_BIN (pipeline), demux);
523 gst_element_link (src, demux);
525 audio_bin = gst_bin_new ("a_decoder_bin");
526 a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
527 a_decoder = gst_element_factory_make_or_warn ("vorbisdec", "a_dec");
528 a_convert = gst_element_factory_make_or_warn ("audioconvert", "a_convert");
529 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
531 gst_bin_add (GST_BIN (pipeline), audio_bin);
533 gst_bin_add (GST_BIN (audio_bin), a_queue);
534 gst_bin_add (GST_BIN (audio_bin), a_decoder);
535 gst_bin_add (GST_BIN (audio_bin), a_convert);
536 gst_bin_add (GST_BIN (audio_bin), audiosink);
538 gst_element_link (a_queue, a_decoder);
539 gst_element_link (a_decoder, a_convert);
540 gst_element_link (a_convert, audiosink);
542 pad = gst_element_get_static_pad (a_queue, "sink");
543 gst_element_add_pad (audio_bin, gst_ghost_pad_new ("sink", pad));
544 gst_object_unref (pad);
546 setup_dynamic_link (demux, NULL, gst_element_get_static_pad (audio_bin,
549 video_bin = gst_bin_new ("v_decoder_bin");
550 v_queue = gst_element_factory_make_or_warn ("queue", "v_queue");
551 v_decoder = gst_element_factory_make_or_warn ("theoradec", "v_dec");
553 gst_element_factory_make_or_warn ("ffmpegcolorspace", "v_convert");
554 v_scale = gst_element_factory_make_or_warn ("videoscale", "v_scale");
555 videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
557 gst_bin_add (GST_BIN (pipeline), video_bin);
559 gst_bin_add (GST_BIN (video_bin), v_queue);
560 gst_bin_add (GST_BIN (video_bin), v_decoder);
561 gst_bin_add (GST_BIN (video_bin), v_convert);
562 gst_bin_add (GST_BIN (video_bin), v_scale);
563 gst_bin_add (GST_BIN (video_bin), videosink);
565 gst_element_link_many (v_queue, v_decoder, v_convert, v_scale, videosink,
568 pad = gst_element_get_static_pad (v_queue, "sink");
569 gst_element_add_pad (video_bin, gst_ghost_pad_new ("sink", pad));
570 gst_object_unref (pad);
572 setup_dynamic_link (demux, NULL, gst_element_get_static_pad (video_bin,
575 seekable = gst_element_get_static_pad (a_decoder, "src");
576 seekable_pads = g_list_prepend (seekable_pads, seekable);
577 rate_pads = g_list_prepend (rate_pads, seekable);
579 g_list_prepend (rate_pads, gst_element_get_static_pad (a_decoder,
586 make_avi_msmpeg4v3_mp3_pipeline (const gchar * location)
588 GstElement *pipeline, *audio_bin, *video_bin;
589 GstElement *src, *demux, *a_decoder, *a_convert, *v_decoder, *v_convert;
590 GstElement *audiosink, *videosink;
591 GstElement *a_queue, *v_queue;
592 GstPad *seekable, *pad;
594 pipeline = gst_pipeline_new ("app");
596 src = gst_element_factory_make_or_warn (SOURCE, "src");
597 g_object_set (G_OBJECT (src), "location", location, NULL);
599 demux = gst_element_factory_make_or_warn ("avidemux", "demux");
601 gst_bin_add (GST_BIN (pipeline), src);
602 gst_bin_add (GST_BIN (pipeline), demux);
603 gst_element_link (src, demux);
605 audio_bin = gst_bin_new ("a_decoder_bin");
606 a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
607 a_decoder = gst_element_factory_make_or_warn ("mad", "a_dec");
608 a_convert = gst_element_factory_make_or_warn ("audioconvert", "a_convert");
609 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
611 gst_bin_add (GST_BIN (audio_bin), a_queue);
612 gst_bin_add (GST_BIN (audio_bin), a_decoder);
613 gst_bin_add (GST_BIN (audio_bin), a_convert);
614 gst_bin_add (GST_BIN (audio_bin), audiosink);
616 gst_element_link (a_queue, a_decoder);
617 gst_element_link (a_decoder, a_convert);
618 gst_element_link (a_convert, audiosink);
620 gst_bin_add (GST_BIN (pipeline), audio_bin);
622 pad = gst_element_get_static_pad (a_queue, "sink");
623 gst_element_add_pad (audio_bin, gst_ghost_pad_new ("sink", pad));
624 gst_object_unref (pad);
626 setup_dynamic_link (demux, NULL, gst_element_get_static_pad (audio_bin,
629 video_bin = gst_bin_new ("v_decoder_bin");
630 v_queue = gst_element_factory_make_or_warn ("queue", "v_queue");
631 v_decoder = gst_element_factory_make_or_warn ("ffdec_msmpeg4", "v_dec");
633 gst_element_factory_make_or_warn ("ffmpegcolorspace", "v_convert");
634 videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
636 gst_bin_add (GST_BIN (video_bin), v_queue);
637 gst_bin_add (GST_BIN (video_bin), v_decoder);
638 gst_bin_add (GST_BIN (video_bin), v_convert);
639 gst_bin_add (GST_BIN (video_bin), videosink);
641 gst_element_link_many (v_queue, v_decoder, v_convert, videosink, NULL);
643 gst_bin_add (GST_BIN (pipeline), video_bin);
645 pad = gst_element_get_static_pad (v_queue, "sink");
646 gst_element_add_pad (video_bin, gst_ghost_pad_new ("sink", pad));
647 gst_object_unref (pad);
649 setup_dynamic_link (demux, NULL, gst_element_get_static_pad (video_bin,
652 seekable = gst_element_get_static_pad (a_decoder, "src");
653 seekable_pads = g_list_prepend (seekable_pads, seekable);
654 rate_pads = g_list_prepend (rate_pads, seekable);
656 g_list_prepend (rate_pads, gst_element_get_static_pad (a_decoder,
663 make_mp3_pipeline (const gchar * location)
665 GstElement *pipeline;
666 GstElement *src, *parser, *decoder, *audiosink, *queue;
669 pipeline = gst_pipeline_new ("app");
671 src = gst_element_factory_make_or_warn (SOURCE, "src");
672 parser = gst_element_factory_make_or_warn ("mp3parse", "parse");
673 decoder = gst_element_factory_make_or_warn ("mad", "dec");
674 queue = gst_element_factory_make_or_warn ("queue", "queue");
675 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "sink");
677 seekable_elements = g_list_prepend (seekable_elements, audiosink);
679 g_object_set (G_OBJECT (src), "location", location, NULL);
680 //g_object_set (G_OBJECT (audiosink), "fragment", 0x00180008, NULL);
682 gst_bin_add (GST_BIN (pipeline), src);
683 gst_bin_add (GST_BIN (pipeline), parser);
684 gst_bin_add (GST_BIN (pipeline), decoder);
685 gst_bin_add (GST_BIN (pipeline), queue);
686 gst_bin_add (GST_BIN (pipeline), audiosink);
688 gst_element_link (src, parser);
689 gst_element_link (parser, decoder);
690 gst_element_link (decoder, queue);
691 gst_element_link (queue, audiosink);
693 seekable = gst_element_get_static_pad (queue, "src");
694 seekable_pads = g_list_prepend (seekable_pads, seekable);
695 rate_pads = g_list_prepend (rate_pads, seekable);
697 g_list_prepend (rate_pads, gst_element_get_static_pad (decoder, "sink"));
703 make_avi_pipeline (const gchar * location)
705 GstElement *pipeline, *audio_bin, *video_bin;
706 GstElement *src, *demux, *a_decoder, *v_decoder, *audiosink, *videosink;
707 GstElement *a_queue = NULL, *v_queue = NULL;
710 pipeline = gst_pipeline_new ("app");
712 src = gst_element_factory_make_or_warn (SOURCE, "src");
713 g_object_set (G_OBJECT (src), "location", location, NULL);
715 demux = gst_element_factory_make_or_warn ("avidemux", "demux");
716 seekable_elements = g_list_prepend (seekable_elements, demux);
718 gst_bin_add (GST_BIN (pipeline), src);
719 gst_bin_add (GST_BIN (pipeline), demux);
720 gst_element_link (src, demux);
722 audio_bin = gst_bin_new ("a_decoder_bin");
723 a_decoder = gst_element_factory_make_or_warn ("mad", "a_dec");
724 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
725 a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
726 gst_element_link (a_decoder, a_queue);
727 gst_element_link (a_queue, audiosink);
728 gst_bin_add (GST_BIN (audio_bin), a_decoder);
729 gst_bin_add (GST_BIN (audio_bin), a_queue);
730 gst_bin_add (GST_BIN (audio_bin), audiosink);
731 gst_element_set_state (audio_bin, GST_STATE_PAUSED);
733 setup_dynamic_link (demux, "audio_00", gst_element_get_static_pad (a_decoder,
736 seekable = gst_element_get_static_pad (a_queue, "src");
737 seekable_pads = g_list_prepend (seekable_pads, seekable);
738 rate_pads = g_list_prepend (rate_pads, seekable);
740 g_list_prepend (rate_pads, gst_element_get_static_pad (a_decoder,
743 video_bin = gst_bin_new ("v_decoder_bin");
744 v_decoder = gst_element_factory_make_or_warn ("ffmpegdecall", "v_dec");
745 videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
746 v_queue = gst_element_factory_make_or_warn ("queue", "v_queue");
747 gst_element_link (v_decoder, v_queue);
748 gst_element_link (v_queue, videosink);
749 gst_bin_add (GST_BIN (video_bin), v_decoder);
750 gst_bin_add (GST_BIN (video_bin), v_queue);
751 gst_bin_add (GST_BIN (video_bin), videosink);
753 gst_element_set_state (video_bin, GST_STATE_PAUSED);
755 setup_dynamic_link (demux, "video_00", gst_element_get_static_pad (v_decoder,
758 seekable = gst_element_get_static_pad (v_queue, "src");
759 seekable_pads = g_list_prepend (seekable_pads, seekable);
760 rate_pads = g_list_prepend (rate_pads, seekable);
762 g_list_prepend (rate_pads, gst_element_get_static_pad (v_decoder,
769 make_mpeg_pipeline (const gchar * location)
771 GstElement *pipeline, *audio_bin, *video_bin;
772 GstElement *src, *demux, *a_decoder, *v_decoder, *v_filter;
773 GstElement *audiosink, *videosink;
774 GstElement *a_queue, *v_queue;
778 pipeline = gst_pipeline_new ("app");
780 src = gst_element_factory_make_or_warn (SOURCE, "src");
781 g_object_set (G_OBJECT (src), "location", location, NULL);
783 //demux = gst_element_factory_make_or_warn ("mpegdemux", "demux");
784 demux = gst_element_factory_make_or_warn ("flupsdemux", "demux");
786 gst_bin_add (GST_BIN (pipeline), src);
787 gst_bin_add (GST_BIN (pipeline), demux);
788 gst_element_link (src, demux);
790 audio_bin = gst_bin_new ("a_decoder_bin");
791 a_decoder = gst_element_factory_make_or_warn ("mad", "a_dec");
792 a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
793 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
794 gst_bin_add (GST_BIN (audio_bin), a_decoder);
795 gst_bin_add (GST_BIN (audio_bin), a_queue);
796 gst_bin_add (GST_BIN (audio_bin), audiosink);
798 gst_element_link (a_decoder, a_queue);
799 gst_element_link (a_queue, audiosink);
801 gst_bin_add (GST_BIN (pipeline), audio_bin);
803 pad = gst_element_get_static_pad (a_decoder, "sink");
804 gst_element_add_pad (audio_bin, gst_ghost_pad_new ("sink", pad));
805 gst_object_unref (pad);
807 setup_dynamic_link (demux, "audio_c0", gst_element_get_static_pad (audio_bin,
810 video_bin = gst_bin_new ("v_decoder_bin");
811 v_decoder = gst_element_factory_make_or_warn ("mpeg2dec", "v_dec");
812 v_queue = gst_element_factory_make_or_warn ("queue", "v_queue");
813 v_filter = gst_element_factory_make_or_warn ("ffmpegcolorspace", "v_filter");
814 videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
816 gst_bin_add (GST_BIN (video_bin), v_decoder);
817 gst_bin_add (GST_BIN (video_bin), v_queue);
818 gst_bin_add (GST_BIN (video_bin), v_filter);
819 gst_bin_add (GST_BIN (video_bin), videosink);
821 gst_element_link (v_decoder, v_queue);
822 gst_element_link (v_queue, v_filter);
823 gst_element_link (v_filter, videosink);
825 gst_bin_add (GST_BIN (pipeline), video_bin);
827 pad = gst_element_get_static_pad (v_decoder, "sink");
828 gst_element_add_pad (video_bin, gst_ghost_pad_new ("sink", pad));
829 gst_object_unref (pad);
831 setup_dynamic_link (demux, "video_e0", gst_element_get_static_pad (video_bin,
834 seekable = gst_element_get_static_pad (v_filter, "src");
835 seekable_pads = g_list_prepend (seekable_pads, seekable);
836 rate_pads = g_list_prepend (rate_pads, seekable);
838 g_list_prepend (rate_pads, gst_element_get_static_pad (v_decoder,
845 make_mpegnt_pipeline (const gchar * location)
847 GstElement *pipeline, *audio_bin, *video_bin;
848 GstElement *src, *demux, *a_decoder, *v_decoder, *v_filter;
849 GstElement *audiosink, *videosink;
853 pipeline = gst_pipeline_new ("app");
855 src = gst_element_factory_make_or_warn (SOURCE, "src");
856 g_object_set (G_OBJECT (src), "location", location, NULL);
858 demux = gst_element_factory_make_or_warn ("mpegdemux", "demux");
859 //g_object_set (G_OBJECT (demux), "sync", TRUE, NULL);
861 seekable_elements = g_list_prepend (seekable_elements, demux);
863 gst_bin_add (GST_BIN (pipeline), src);
864 gst_bin_add (GST_BIN (pipeline), demux);
865 gst_element_link (src, demux);
867 audio_bin = gst_bin_new ("a_decoder_bin");
868 a_decoder = gst_element_factory_make_or_warn ("mad", "a_dec");
869 a_queue = gst_element_factory_make_or_warn ("queue", "a_queue");
870 audiosink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
871 //g_object_set (G_OBJECT (audiosink), "fragment", 0x00180008, NULL);
872 g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL);
873 gst_element_link (a_decoder, a_queue);
874 gst_element_link (a_queue, audiosink);
875 gst_bin_add (GST_BIN (audio_bin), a_decoder);
876 gst_bin_add (GST_BIN (audio_bin), a_queue);
877 gst_bin_add (GST_BIN (audio_bin), audiosink);
879 setup_dynamic_link (demux, "audio_00", gst_element_get_static_pad (a_decoder,
882 seekable = gst_element_get_static_pad (a_queue, "src");
883 seekable_pads = g_list_prepend (seekable_pads, seekable);
884 rate_pads = g_list_prepend (rate_pads, seekable);
886 g_list_prepend (rate_pads, gst_element_get_static_pad (a_decoder,
889 video_bin = gst_bin_new ("v_decoder_bin");
890 v_decoder = gst_element_factory_make_or_warn ("mpeg2dec", "v_dec");
891 v_filter = gst_element_factory_make_or_warn ("ffmpegcolorspace", "v_filter");
892 videosink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
893 gst_element_link_many (v_decoder, v_filter, videosink, NULL);
895 gst_bin_add_many (GST_BIN (video_bin), v_decoder, v_filter, videosink, NULL);
897 setup_dynamic_link (demux, "video_00", gst_element_get_static_pad (v_decoder,
900 seekable = gst_element_get_static_pad (v_decoder, "src");
901 seekable_pads = g_list_prepend (seekable_pads, seekable);
902 rate_pads = g_list_prepend (rate_pads, seekable);
904 g_list_prepend (rate_pads, gst_element_get_static_pad (v_decoder,
911 playerbin_set_uri (GstElement * player, const gchar * location)
915 /* Add "file://" prefix for convenience */
916 if (g_str_has_prefix (location, "/") || !gst_uri_is_valid (location)) {
917 uri = gst_filename_to_uri (location, NULL);
918 g_print ("Setting URI: %s\n", uri);
919 g_object_set (G_OBJECT (player), "uri", uri, NULL);
922 g_print ("Setting URI: %s\n", location);
923 g_object_set (G_OBJECT (player), "uri", location, NULL);
928 construct_playerbin (const gchar * name, const gchar * location)
933 player = gst_element_factory_make (name, "player");
936 playerbin_set_uri (player, location);
938 seekable_elements = g_list_prepend (seekable_elements, player);
940 /* force element seeking on this pipeline */
943 avsink = gst_element_factory_make_or_warn (opt_audiosink_str, "a_sink");
945 g_object_set (player, "audio-sink", avsink, NULL);
947 avsink = gst_element_factory_make_or_warn (opt_videosink_str, "v_sink");
949 g_object_set (player, "video-sink", avsink, NULL);
955 make_playerbin_pipeline (const gchar * location)
957 return construct_playerbin ("playbin", location);
961 make_playerbin2_pipeline (const gchar * location)
963 GstElement *pipeline = construct_playerbin ("playbin2", location);
965 /* FIXME: this is not triggered, playbin2 is not forwarding it from the sink */
966 g_signal_connect (pipeline, "notify::volume", G_CALLBACK (volume_notify_cb),
971 #ifndef GST_DISABLE_PARSE
973 make_parselaunch_pipeline (const gchar * description)
975 GstElement *pipeline;
976 GError *error = NULL;
978 pipeline = gst_parse_launch (description, &error);
980 seekable_elements = g_list_prepend (seekable_elements, pipeline);
991 GstElement *(*func) (const gchar * location);
995 static Pipeline pipelines[] = {
996 {"mp3", make_mp3_pipeline},
997 {"avi", make_avi_pipeline},
998 {"mpeg1", make_mpeg_pipeline},
999 {"mpegparse", make_parse_pipeline},
1000 {"vorbis", make_vorbis_pipeline},
1001 {"theora", make_theora_pipeline},
1002 {"ogg/v/t", make_vorbis_theora_pipeline},
1003 {"avi/msmpeg4v3/mp3", make_avi_msmpeg4v3_mp3_pipeline},
1004 {"sid", make_sid_pipeline},
1005 {"flac", make_flac_pipeline},
1006 {"wav", make_wav_pipeline},
1007 {"mod", make_mod_pipeline},
1008 {"dv", make_dv_pipeline},
1009 {"mpeg1nothreads", make_mpegnt_pipeline},
1010 {"playerbin", make_playerbin_pipeline},
1011 #ifndef GST_DISABLE_PARSE
1012 {"parse-launch", make_parselaunch_pipeline},
1014 {"playerbin2", make_playerbin2_pipeline},
1018 #define NUM_TYPES ((sizeof (pipelines) / sizeof (Pipeline)) - 1)
1020 /* ui callbacks and helpers */
1023 format_value (GtkScale * scale, gdouble value)
1029 real = value * duration / N_GRAD;
1030 seconds = (gint64) real / GST_SECOND;
1031 subseconds = (gint64) real / (GST_SECOND / N_GRAD);
1033 return g_strdup_printf ("%02" G_GINT64_FORMAT ":%02" G_GINT64_FORMAT ":%02"
1034 G_GINT64_FORMAT, seconds / 60, seconds % 60, subseconds % 100);
1039 shuttle_format_value (GtkScale * scale, gdouble value)
1041 return g_strdup_printf ("%0.*g", gtk_scale_get_digits (scale), value);
1047 const GstFormat format;
1051 static seek_format seek_formats[] = {
1052 {"tim", GST_FORMAT_TIME},
1053 {"byt", GST_FORMAT_BYTES},
1054 {"buf", GST_FORMAT_BUFFERS},
1055 {"def", GST_FORMAT_DEFAULT},
1059 G_GNUC_UNUSED static void
1062 GList *walk = rate_pads;
1065 GstPad *pad = GST_PAD (walk->data);
1068 g_print ("rate/sec %8.8s: ", GST_PAD_NAME (pad));
1069 while (seek_formats[i].name) {
1073 format = seek_formats[i].format;
1075 if (gst_pad_query_convert (pad, GST_FORMAT_TIME, GST_SECOND, &format,
1077 g_print ("%s %13" G_GINT64_FORMAT " | ", seek_formats[i].name, value);
1079 g_print ("%s %13.13s | ", seek_formats[i].name, "*NA*");
1084 g_print (" %s:%s\n", GST_DEBUG_PAD_NAME (pad));
1086 walk = g_list_next (walk);
1090 G_GNUC_UNUSED static void
1091 query_positions_elems (void)
1093 GList *walk = seekable_elements;
1096 GstElement *element = GST_ELEMENT (walk->data);
1099 g_print ("positions %8.8s: ", GST_ELEMENT_NAME (element));
1100 while (seek_formats[i].name) {
1101 gint64 position, total;
1104 format = seek_formats[i].format;
1106 if (gst_element_query_position (element, &format, &position) &&
1107 gst_element_query_duration (element, &format, &total)) {
1108 g_print ("%s %13" G_GINT64_FORMAT " / %13" G_GINT64_FORMAT " | ",
1109 seek_formats[i].name, position, total);
1111 g_print ("%s %13.13s / %13.13s | ", seek_formats[i].name, "*NA*",
1116 g_print (" %s\n", GST_ELEMENT_NAME (element));
1118 walk = g_list_next (walk);
1122 G_GNUC_UNUSED static void
1123 query_positions_pads (void)
1125 GList *walk = seekable_pads;
1128 GstPad *pad = GST_PAD (walk->data);
1131 g_print ("positions %8.8s: ", GST_PAD_NAME (pad));
1132 while (seek_formats[i].name) {
1134 gint64 position, total;
1136 format = seek_formats[i].format;
1138 if (gst_pad_query_position (pad, &format, &position) &&
1139 gst_pad_query_duration (pad, &format, &total)) {
1140 g_print ("%s %13" G_GINT64_FORMAT " / %13" G_GINT64_FORMAT " | ",
1141 seek_formats[i].name, position, total);
1143 g_print ("%s %13.13s / %13.13s | ", seek_formats[i].name, "*NA*",
1149 g_print (" %s:%s\n", GST_DEBUG_PAD_NAME (pad));
1151 walk = g_list_next (walk);
1155 static gboolean start_seek (GtkWidget * widget, GdkEventButton * event,
1156 gpointer user_data);
1157 static gboolean stop_seek (GtkWidget * widget, GdkEventButton * event,
1158 gpointer user_data);
1159 static void seek_cb (GtkWidget * widget);
1162 set_scale (gdouble value)
1164 g_signal_handlers_block_by_func (hscale, (void *) start_seek,
1166 g_signal_handlers_block_by_func (hscale, (void *) stop_seek,
1168 g_signal_handlers_block_by_func (hscale, (void *) seek_cb, (void *) pipeline);
1169 gtk_adjustment_set_value (adjustment, value);
1170 g_signal_handlers_unblock_by_func (hscale, (void *) start_seek,
1172 g_signal_handlers_unblock_by_func (hscale, (void *) stop_seek,
1174 g_signal_handlers_unblock_by_func (hscale, (void *) seek_cb,
1176 gtk_widget_queue_draw (hscale);
1180 update_fill (gpointer data)
1183 if (seekable_elements) {
1184 GstElement *element = GST_ELEMENT (seekable_elements->data);
1187 query = gst_query_new_buffering (GST_FORMAT_PERCENT);
1188 if (gst_element_query (element, query)) {
1189 gint64 start, stop, buffering_total;
1194 GstBufferingMode mode;
1195 gint avg_in, avg_out;
1196 gint64 buffering_left;
1198 gst_query_parse_buffering_percent (query, &busy, &percent);
1199 gst_query_parse_buffering_range (query, &format, &start, &stop,
1201 gst_query_parse_buffering_stats (query, &mode, &avg_in, &avg_out,
1204 /* note that we could start the playback when buffering_left < remaining
1206 GST_DEBUG ("buffering total %" G_GINT64_FORMAT " ms, left %"
1207 G_GINT64_FORMAT " ms", buffering_total, buffering_left);
1208 GST_DEBUG ("start %" G_GINT64_FORMAT ", stop %" G_GINT64_FORMAT,
1212 fill = N_GRAD * stop / GST_FORMAT_PERCENT_MAX;
1216 gtk_range_set_fill_level (GTK_RANGE (hscale), fill);
1218 gst_query_unref (query);
1225 update_scale (gpointer data)
1227 GstFormat format = GST_FORMAT_TIME;
1233 if (seekable_elements) {
1234 GstElement *element = GST_ELEMENT (seekable_elements->data);
1236 gst_element_query_position (element, &format, &position);
1237 gst_element_query_duration (element, &format, &duration);
1240 if (seekable_pads) {
1241 GstPad *pad = GST_PAD (seekable_pads->data);
1243 gst_pad_query_position (pad, &format, &position);
1244 gst_pad_query_duration (pad, &format, &duration);
1250 query_positions_elems ();
1252 query_positions_pads ();
1257 if (position >= duration)
1258 duration = position;
1261 set_scale (position * N_GRAD / duration);
1264 /* FIXME: see make_playerbin2_pipeline() and volume_notify_cb() */
1265 if (pipeline_type == 16) {
1266 g_object_notify (G_OBJECT (pipeline), "volume");
1272 static void do_seek (GtkWidget * widget);
1273 static void connect_bus_signals (GstElement * pipeline);
1274 static void set_update_scale (gboolean active);
1275 static void set_update_fill (gboolean active);
1278 end_scrub (GtkWidget * widget)
1280 GST_DEBUG ("end scrub, PAUSE");
1281 gst_element_set_state (pipeline, GST_STATE_PAUSED);
1282 seek_timeout_id = 0;
1288 send_event (GstEvent * event)
1290 gboolean res = FALSE;
1293 GList *walk = seekable_pads;
1296 GstPad *seekable = GST_PAD (walk->data);
1298 GST_DEBUG ("send event on pad %s:%s", GST_DEBUG_PAD_NAME (seekable));
1300 gst_event_ref (event);
1301 res = gst_pad_send_event (seekable, event);
1303 walk = g_list_next (walk);
1306 GList *walk = seekable_elements;
1309 GstElement *seekable = GST_ELEMENT (walk->data);
1311 GST_DEBUG ("send event on element %s", GST_ELEMENT_NAME (seekable));
1313 gst_event_ref (event);
1314 res = gst_element_send_event (seekable, event);
1316 walk = g_list_next (walk);
1319 gst_event_unref (event);
1324 do_seek (GtkWidget * widget)
1327 gboolean res = FALSE;
1331 real = gtk_range_get_value (GTK_RANGE (widget)) * duration / N_GRAD;
1333 GST_DEBUG ("value=%f, real=%" G_GINT64_FORMAT,
1334 gtk_range_get_value (GTK_RANGE (widget)), real);
1338 flags |= GST_SEEK_FLAG_FLUSH;
1340 flags |= GST_SEEK_FLAG_ACCURATE;
1342 flags |= GST_SEEK_FLAG_KEY_UNIT;
1344 flags |= GST_SEEK_FLAG_SEGMENT;
1346 flags |= GST_SEEK_FLAG_SKIP;
1349 s_event = gst_event_new_seek (rate,
1350 GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, real, GST_SEEK_TYPE_SET,
1351 GST_CLOCK_TIME_NONE);
1352 GST_DEBUG ("seek with rate %lf to %" GST_TIME_FORMAT " / %" GST_TIME_FORMAT,
1353 rate, GST_TIME_ARGS (real), GST_TIME_ARGS (duration));
1355 s_event = gst_event_new_seek (rate,
1356 GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, G_GINT64_CONSTANT (0),
1357 GST_SEEK_TYPE_SET, real);
1358 GST_DEBUG ("seek with rate %lf to %" GST_TIME_FORMAT " / %" GST_TIME_FORMAT,
1359 rate, GST_TIME_ARGS (0), GST_TIME_ARGS (real));
1362 res = send_event (s_event);
1366 gst_element_get_state (GST_ELEMENT (pipeline), NULL, NULL, SEEK_TIMEOUT);
1368 set_update_scale (TRUE);
1371 g_print ("seek failed\n");
1372 set_update_scale (TRUE);
1377 seek_cb (GtkWidget * widget)
1379 /* If the timer hasn't expired yet, then the pipeline is running */
1380 if (play_scrub && seek_timeout_id != 0) {
1381 GST_DEBUG ("do scrub seek, PAUSED");
1382 gst_element_set_state (pipeline, GST_STATE_PAUSED);
1385 GST_DEBUG ("do seek");
1389 GST_DEBUG ("do scrub seek, PLAYING");
1390 gst_element_set_state (pipeline, GST_STATE_PLAYING);
1392 if (seek_timeout_id == 0) {
1394 g_timeout_add (SCRUB_TIME, (GSourceFunc) end_scrub, widget);
1400 set_update_fill (gboolean active)
1402 GST_DEBUG ("fill scale is %d", active);
1407 g_timeout_add (FILL_INTERVAL, (GSourceFunc) update_fill, pipeline);
1411 g_source_remove (fill_id);
1418 set_update_scale (gboolean active)
1421 GST_DEBUG ("update scale is %d", active);
1424 if (update_id == 0) {
1426 g_timeout_add (UPDATE_INTERVAL, (GSourceFunc) update_scale, pipeline);
1430 g_source_remove (update_id);
1437 start_seek (GtkWidget * widget, GdkEventButton * event, gpointer user_data)
1439 if (event->type != GDK_BUTTON_PRESS)
1442 set_update_scale (FALSE);
1444 if (state == GST_STATE_PLAYING && flush_seek && scrub) {
1445 GST_DEBUG ("start scrub seek, PAUSE");
1446 gst_element_set_state (pipeline, GST_STATE_PAUSED);
1449 if (changed_id == 0 && flush_seek && scrub) {
1451 g_signal_connect (hscale, "value_changed", G_CALLBACK (seek_cb),
1459 stop_seek (GtkWidget * widget, GdkEventButton * event, gpointer user_data)
1462 g_signal_handler_disconnect (hscale, changed_id);
1466 if (!flush_seek || !scrub) {
1467 GST_DEBUG ("do final seek");
1471 if (seek_timeout_id != 0) {
1472 g_source_remove (seek_timeout_id);
1473 seek_timeout_id = 0;
1474 /* Still scrubbing, so the pipeline is playing, see if we need PAUSED
1476 if (state == GST_STATE_PAUSED) {
1477 GST_DEBUG ("stop scrub seek, PAUSED");
1478 gst_element_set_state (pipeline, GST_STATE_PAUSED);
1481 if (state == GST_STATE_PLAYING) {
1482 GST_DEBUG ("stop scrub seek, PLAYING");
1483 gst_element_set_state (pipeline, GST_STATE_PLAYING);
1491 play_cb (GtkButton * button, gpointer data)
1493 GstStateChangeReturn ret;
1495 if (state != GST_STATE_PLAYING) {
1496 g_print ("PLAY pipeline\n");
1497 gtk_statusbar_pop (GTK_STATUSBAR (statusbar), status_id);
1499 ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
1501 case GST_STATE_CHANGE_FAILURE:
1503 case GST_STATE_CHANGE_NO_PREROLL:
1509 state = GST_STATE_PLAYING;
1510 gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Playing");
1517 g_print ("PLAY failed\n");
1518 gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Play failed");
1523 pause_cb (GtkButton * button, gpointer data)
1525 g_static_mutex_lock (&state_mutex);
1526 if (state != GST_STATE_PAUSED) {
1527 GstStateChangeReturn ret;
1529 gtk_statusbar_pop (GTK_STATUSBAR (statusbar), status_id);
1530 g_print ("PAUSE pipeline\n");
1531 ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
1533 case GST_STATE_CHANGE_FAILURE:
1535 case GST_STATE_CHANGE_NO_PREROLL:
1542 state = GST_STATE_PAUSED;
1543 gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Paused");
1545 g_static_mutex_unlock (&state_mutex);
1551 g_static_mutex_unlock (&state_mutex);
1552 g_print ("PAUSE failed\n");
1553 gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Pause failed");
1558 stop_cb (GtkButton * button, gpointer data)
1560 if (state != STOP_STATE) {
1561 GstStateChangeReturn ret;
1563 g_print ("READY pipeline\n");
1564 gtk_statusbar_pop (GTK_STATUSBAR (statusbar), status_id);
1566 g_static_mutex_lock (&state_mutex);
1567 ret = gst_element_set_state (pipeline, STOP_STATE);
1568 if (ret == GST_STATE_CHANGE_FAILURE)
1572 gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Stopped");
1573 gtk_widget_queue_draw (video_window);
1577 set_update_scale (FALSE);
1579 set_update_fill (FALSE);
1581 if (pipeline_type == 16)
1582 clear_streams (pipeline);
1583 g_static_mutex_unlock (&state_mutex);
1586 /* if one uses parse_launch, play, stop and play again it fails as all the
1587 * pads after the demuxer can't be reconnected
1589 if (!strcmp (pipelines[pipeline_type].name, "parse-launch")) {
1590 gst_element_set_state (pipeline, GST_STATE_NULL);
1591 gst_object_unref (pipeline);
1593 g_list_free (seekable_elements);
1594 seekable_elements = NULL;
1595 g_list_free (seekable_pads);
1596 seekable_pads = NULL;
1597 g_list_free (rate_pads);
1600 pipeline = pipelines[pipeline_type].func (pipeline_spec);
1601 g_assert (pipeline);
1602 gst_element_set_state (pipeline, STOP_STATE);
1603 connect_bus_signals (pipeline);
1611 g_static_mutex_unlock (&state_mutex);
1612 g_print ("STOP failed\n");
1613 gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Stop failed");
1618 accurate_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1620 accurate_seek = gtk_toggle_button_get_active (button);
1624 key_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1626 keyframe_seek = gtk_toggle_button_get_active (button);
1630 loop_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1632 loop_seek = gtk_toggle_button_get_active (button);
1633 if (state == GST_STATE_PLAYING) {
1639 flush_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1641 flush_seek = gtk_toggle_button_get_active (button);
1645 scrub_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1647 scrub = gtk_toggle_button_get_active (button);
1651 play_scrub_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1653 play_scrub = gtk_toggle_button_get_active (button);
1657 skip_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1659 skip_seek = gtk_toggle_button_get_active (button);
1660 if (state == GST_STATE_PLAYING) {
1666 rate_spinbutton_changed_cb (GtkSpinButton * button, GstPipeline * pipeline)
1668 gboolean res = FALSE;
1672 rate = gtk_spin_button_get_value (button);
1674 GST_DEBUG ("rate changed to %lf", rate);
1678 flags |= GST_SEEK_FLAG_FLUSH;
1680 flags |= GST_SEEK_FLAG_SEGMENT;
1682 flags |= GST_SEEK_FLAG_ACCURATE;
1684 flags |= GST_SEEK_FLAG_KEY_UNIT;
1686 flags |= GST_SEEK_FLAG_SKIP;
1689 s_event = gst_event_new_seek (rate,
1690 GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, position,
1691 GST_SEEK_TYPE_SET, GST_CLOCK_TIME_NONE);
1693 s_event = gst_event_new_seek (rate,
1694 GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, G_GINT64_CONSTANT (0),
1695 GST_SEEK_TYPE_SET, position);
1698 res = send_event (s_event);
1702 gst_element_get_state (GST_ELEMENT (pipeline), NULL, NULL, SEEK_TIMEOUT);
1705 g_print ("seek failed\n");
1709 update_flag (GstPipeline * pipeline, gint num, gboolean state)
1713 g_object_get (pipeline, "flags", &flags, NULL);
1715 flags |= (1 << num);
1717 flags &= ~(1 << num);
1718 g_object_set (pipeline, "flags", flags, NULL);
1722 vis_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1726 state = gtk_toggle_button_get_active (button);
1727 update_flag (pipeline, 3, state);
1728 gtk_widget_set_sensitive (vis_combo, state);
1732 audio_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1736 state = gtk_toggle_button_get_active (button);
1737 update_flag (pipeline, 1, state);
1738 gtk_widget_set_sensitive (audio_combo, state);
1742 video_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1746 state = gtk_toggle_button_get_active (button);
1747 update_flag (pipeline, 0, state);
1748 gtk_widget_set_sensitive (video_combo, state);
1752 text_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1756 state = gtk_toggle_button_get_active (button);
1757 update_flag (pipeline, 2, state);
1758 gtk_widget_set_sensitive (text_combo, state);
1762 mute_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1766 mute = gtk_toggle_button_get_active (button);
1767 g_object_set (pipeline, "mute", mute, NULL);
1771 download_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1775 state = gtk_toggle_button_get_active (button);
1776 update_flag (pipeline, 7, state);
1780 buffer_toggle_cb (GtkToggleButton * button, GstPipeline * pipeline)
1784 state = gtk_toggle_button_get_active (button);
1785 update_flag (pipeline, 8, state);
1789 clear_streams (GstElement * pipeline)
1793 /* remove previous info */
1794 for (i = 0; i < n_video; i++)
1795 gtk_combo_box_text_remove (GTK_COMBO_BOX_TEXT (video_combo), 0);
1796 for (i = 0; i < n_audio; i++)
1797 gtk_combo_box_text_remove (GTK_COMBO_BOX_TEXT (audio_combo), 0);
1798 for (i = 0; i < n_text; i++)
1799 gtk_combo_box_text_remove (GTK_COMBO_BOX_TEXT (text_combo), 0);
1801 n_audio = n_video = n_text = 0;
1802 gtk_widget_set_sensitive (video_combo, FALSE);
1803 gtk_widget_set_sensitive (audio_combo, FALSE);
1804 gtk_widget_set_sensitive (text_combo, FALSE);
1806 need_streams = TRUE;
1810 update_streams (GstPipeline * pipeline)
1814 if (pipeline_type == 16 && need_streams) {
1820 /* remove previous info */
1821 clear_streams (GST_ELEMENT_CAST (pipeline));
1823 /* here we get and update the different streams detected by playbin2 */
1824 g_object_get (pipeline, "n-video", &n_video, NULL);
1825 g_object_get (pipeline, "n-audio", &n_audio, NULL);
1826 g_object_get (pipeline, "n-text", &n_text, NULL);
1828 g_print ("video %d, audio %d, text %d\n", n_video, n_audio, n_text);
1831 for (i = 0; i < n_video; i++) {
1832 g_signal_emit_by_name (pipeline, "get-video-tags", i, &tags);
1834 str = gst_structure_to_string ((GstStructure *) tags);
1835 g_print ("video %d: %s\n", i, str);
1838 /* find good name for the label */
1839 name = g_strdup_printf ("video %d", i + 1);
1840 gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (video_combo), name);
1843 state = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (video_checkbox));
1844 gtk_widget_set_sensitive (video_combo, state && n_video > 0);
1845 gtk_combo_box_set_active (GTK_COMBO_BOX (video_combo), active_idx);
1848 for (i = 0; i < n_audio; i++) {
1849 g_signal_emit_by_name (pipeline, "get-audio-tags", i, &tags);
1851 str = gst_structure_to_string ((GstStructure *) tags);
1852 g_print ("audio %d: %s\n", i, str);
1855 /* find good name for the label */
1856 name = g_strdup_printf ("audio %d", i + 1);
1857 gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (audio_combo), name);
1860 state = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (audio_checkbox));
1861 gtk_widget_set_sensitive (audio_combo, state && n_audio > 0);
1862 gtk_combo_box_set_active (GTK_COMBO_BOX (audio_combo), active_idx);
1865 for (i = 0; i < n_text; i++) {
1866 g_signal_emit_by_name (pipeline, "get-text-tags", i, &tags);
1870 const GValue *value;
1872 str = gst_structure_to_string ((GstStructure *) tags);
1873 g_print ("text %d: %s\n", i, str);
1876 /* get the language code if we can */
1877 value = gst_tag_list_get_value_index (tags, GST_TAG_LANGUAGE_CODE, 0);
1878 if (value && G_VALUE_HOLDS_STRING (value)) {
1879 name = g_strdup_printf ("text %s", g_value_get_string (value));
1882 /* find good name for the label if we didn't use a tag */
1884 name = g_strdup_printf ("text %d", i + 1);
1886 gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (text_combo), name);
1889 state = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (text_checkbox));
1890 gtk_widget_set_sensitive (text_combo, state && n_text > 0);
1891 gtk_combo_box_set_active (GTK_COMBO_BOX (text_combo), active_idx);
1893 need_streams = FALSE;
1898 video_combo_cb (GtkComboBox * combo, GstPipeline * pipeline)
1902 active = gtk_combo_box_get_active (combo);
1904 g_print ("setting current video track %d\n", active);
1905 g_object_set (pipeline, "current-video", active, NULL);
1909 audio_combo_cb (GtkComboBox * combo, GstPipeline * pipeline)
1913 active = gtk_combo_box_get_active (combo);
1915 g_print ("setting current audio track %d\n", active);
1916 g_object_set (pipeline, "current-audio", active, NULL);
1920 text_combo_cb (GtkComboBox * combo, GstPipeline * pipeline)
1924 active = gtk_combo_box_get_active (combo);
1926 g_print ("setting current text track %d\n", active);
1927 g_object_set (pipeline, "current-text", active, NULL);
1931 filter_features (GstPluginFeature * feature, gpointer data)
1933 GstElementFactory *f;
1935 if (!GST_IS_ELEMENT_FACTORY (feature))
1937 f = GST_ELEMENT_FACTORY (feature);
1938 if (!g_strrstr (gst_element_factory_get_klass (f), "Visualization"))
1945 init_visualization_features (void)
1949 vis_entries = g_array_new (FALSE, FALSE, sizeof (VisEntry));
1951 list = gst_registry_feature_filter (gst_registry_get_default (),
1952 filter_features, FALSE, NULL);
1954 for (walk = list; walk; walk = g_list_next (walk)) {
1958 entry.factory = GST_ELEMENT_FACTORY (walk->data);
1959 name = gst_element_factory_get_longname (entry.factory);
1961 g_array_append_val (vis_entries, entry);
1962 gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (vis_combo), name);
1964 gtk_combo_box_set_active (GTK_COMBO_BOX (vis_combo), 0);
1968 vis_combo_cb (GtkComboBox * combo, GstPipeline * pipeline)
1972 GstElement *element;
1974 /* get the selected index and get the factory for this index */
1975 index = gtk_combo_box_get_active (GTK_COMBO_BOX (vis_combo));
1976 if (vis_entries->len > 0) {
1977 entry = &g_array_index (vis_entries, VisEntry, index);
1979 /* create an instance of the element from the factory */
1980 element = gst_element_factory_create (entry->factory, NULL);
1984 /* set vis plugin for playbin2 */
1985 g_object_set (pipeline, "vis-plugin", element, NULL);
1990 volume_spinbutton_changed_cb (GtkSpinButton * button, GstPipeline * pipeline)
1994 volume = gtk_spin_button_get_value (button);
1996 g_object_set (pipeline, "volume", volume, NULL);
2000 volume_notify_cb (GstElement * pipeline, GParamSpec * arg, gpointer user_dat)
2002 gdouble cur_volume, new_volume;
2004 g_object_get (pipeline, "volume", &new_volume, NULL);
2005 cur_volume = gtk_spin_button_get_value (GTK_SPIN_BUTTON (volume_spinbutton));
2006 if (fabs (cur_volume - new_volume) > 0.001) {
2007 g_signal_handlers_block_by_func (volume_spinbutton,
2008 volume_spinbutton_changed_cb, pipeline);
2009 gtk_spin_button_set_value (GTK_SPIN_BUTTON (volume_spinbutton), new_volume);
2010 g_signal_handlers_unblock_by_func (volume_spinbutton,
2011 volume_spinbutton_changed_cb, pipeline);
2016 shot_cb (GtkButton * button, gpointer data)
2021 /* convert to our desired format (RGB24) */
2022 caps = gst_caps_new_simple ("video/x-raw-rgb",
2023 "bpp", G_TYPE_INT, 24, "depth", G_TYPE_INT, 24,
2024 /* Note: we don't ask for a specific width/height here, so that
2025 * videoscale can adjust dimensions from a non-1/1 pixel aspect
2026 * ratio to a 1/1 pixel-aspect-ratio */
2027 "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1,
2028 "endianness", G_TYPE_INT, G_BIG_ENDIAN,
2029 "red_mask", G_TYPE_INT, 0xff0000,
2030 "green_mask", G_TYPE_INT, 0x00ff00,
2031 "blue_mask", G_TYPE_INT, 0x0000ff, NULL);
2033 /* convert the latest frame to the requested format */
2034 g_signal_emit_by_name (pipeline, "convert-frame", caps, &buffer);
2035 gst_caps_unref (caps);
2043 GError *error = NULL;
2045 /* get the snapshot buffer format now. We set the caps on the appsink so
2046 * that it can only be an rgb buffer. The only thing we have not specified
2047 * on the caps is the height, which is dependant on the pixel-aspect-ratio
2048 * of the source material */
2049 caps = GST_BUFFER_CAPS (buffer);
2051 g_warning ("could not get snapshot format\n");
2054 s = gst_caps_get_structure (caps, 0);
2056 /* we need to get the final caps on the buffer to get the size */
2057 res = gst_structure_get_int (s, "width", &width);
2058 res |= gst_structure_get_int (s, "height", &height);
2060 g_warning ("could not get snapshot dimension\n");
2064 /* create pixmap from buffer and save, gstreamer video buffers have a stride
2065 * that is rounded up to the nearest multiple of 4 */
2066 pixbuf = gdk_pixbuf_new_from_data (GST_BUFFER_DATA (buffer),
2067 GDK_COLORSPACE_RGB, FALSE, 8, width, height,
2068 GST_ROUND_UP_4 (width * 3), NULL, NULL);
2070 /* save the pixbuf */
2071 gdk_pixbuf_save (pixbuf, "snapshot.png", "png", &error, NULL);
2074 gst_buffer_unref (buffer);
2078 /* called when the Step button is pressed */
2080 step_cb (GtkButton * button, gpointer data)
2086 gboolean flush, res;
2089 active = gtk_combo_box_get_active (GTK_COMBO_BOX (format_combo));
2091 gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON
2092 (step_amount_spinbutton));
2093 rate = gtk_spin_button_get_value (GTK_SPIN_BUTTON (step_rate_spinbutton));
2098 format = GST_FORMAT_BUFFERS;
2101 format = GST_FORMAT_TIME;
2102 amount *= GST_MSECOND;
2105 format = GST_FORMAT_UNDEFINED;
2109 event = gst_event_new_step (format, amount, rate, flush, FALSE);
2111 res = send_event (event);
2114 g_print ("Sending step event failed\n");
2119 message_received (GstBus * bus, GstMessage * message, GstPipeline * pipeline)
2121 const GstStructure *s;
2123 switch (GST_MESSAGE_TYPE (message)) {
2124 case GST_MESSAGE_ERROR:
2125 GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
2126 GST_DEBUG_GRAPH_SHOW_ALL, "seek.error");
2128 case GST_MESSAGE_WARNING:
2129 GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
2130 GST_DEBUG_GRAPH_SHOW_ALL, "seek.warning");
2136 s = gst_message_get_structure (message);
2137 g_print ("message from \"%s\" (%s): ",
2138 GST_STR_NULL (GST_ELEMENT_NAME (GST_MESSAGE_SRC (message))),
2139 gst_message_type_get_name (GST_MESSAGE_TYPE (message)));
2143 sstr = gst_structure_to_string (s);
2144 g_print ("%s\n", sstr);
2147 g_print ("no message details\n");
2151 static gboolean shuttling = FALSE;
2152 static gdouble shuttle_rate = 0.0;
2153 static gdouble play_rate = 1.0;
2156 do_shuttle (GstElement * element)
2161 duration = 40 * GST_MSECOND;
2165 gst_element_send_event (element,
2166 gst_event_new_step (GST_FORMAT_TIME, duration, shuttle_rate, FALSE,
2171 msg_sync_step_done (GstBus * bus, GstMessage * message, GstElement * element)
2177 gboolean intermediate;
2181 gst_message_parse_step_done (message, &format, &amount, &rate, &flush,
2182 &intermediate, &duration, &eos);
2185 g_print ("stepped till EOS\n");
2189 if (g_static_mutex_trylock (&state_mutex)) {
2191 do_shuttle (element);
2192 g_static_mutex_unlock (&state_mutex);
2194 /* ignore step messages that come while we are doing a state change */
2195 g_print ("state change is busy\n");
2200 shuttle_toggled (GtkToggleButton * button, GstElement * element)
2204 active = gtk_toggle_button_get_active (button);
2206 if (active != shuttling) {
2208 g_print ("shuttling %s\n", shuttling ? "active" : "inactive");
2212 pause_cb (NULL, NULL);
2213 gst_element_get_state (element, NULL, NULL, -1);
2219 shuttle_rate_switch (GstElement * element)
2225 if (state == GST_STATE_PLAYING) {
2226 /* pause when we need to */
2227 pause_cb (NULL, NULL);
2228 gst_element_get_state (element, NULL, NULL, -1);
2231 if (play_rate == 1.0)
2236 g_print ("rate changed to %lf %" GST_TIME_FORMAT "\n", play_rate,
2237 GST_TIME_ARGS (position));
2239 flags = GST_SEEK_FLAG_FLUSH;
2240 flags |= GST_SEEK_FLAG_ACCURATE;
2242 if (play_rate >= 0.0) {
2243 s_event = gst_event_new_seek (play_rate,
2244 GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, position,
2245 GST_SEEK_TYPE_SET, GST_CLOCK_TIME_NONE);
2247 s_event = gst_event_new_seek (play_rate,
2248 GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, G_GINT64_CONSTANT (0),
2249 GST_SEEK_TYPE_SET, position);
2251 res = send_event (s_event);
2253 gst_element_get_state (element, NULL, NULL, SEEK_TIMEOUT);
2255 g_print ("seek failed\n");
2260 shuttle_value_changed (GtkRange * range, GstElement * element)
2264 rate = gtk_adjustment_get_value (shuttle_adjustment);
2267 g_print ("rate 0.0, pause\n");
2268 pause_cb (NULL, NULL);
2269 gst_element_get_state (element, NULL, NULL, -1);
2271 g_print ("rate changed %0.3g\n", rate);
2273 if ((rate < 0.0 && play_rate > 0.0) || (rate > 0.0 && play_rate < 0.0)) {
2274 shuttle_rate_switch (element);
2277 shuttle_rate = ABS (rate);
2278 if (state != GST_STATE_PLAYING) {
2279 do_shuttle (element);
2280 play_cb (NULL, NULL);
2286 msg_async_done (GstBus * bus, GstMessage * message, GstPipeline * pipeline)
2288 GST_DEBUG ("async done");
2289 /* when we get ASYNC_DONE we can query position, duration and other
2291 update_scale (pipeline);
2293 /* update the available streams */
2294 update_streams (pipeline);
2298 msg_state_changed (GstBus * bus, GstMessage * message, GstPipeline * pipeline)
2300 const GstStructure *s;
2302 s = gst_message_get_structure (message);
2304 /* We only care about state changed on the pipeline */
2305 if (s && GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (pipeline)) {
2306 GstState old, new, pending;
2308 gst_message_parse_state_changed (message, &old, &new, &pending);
2310 /* When state of the pipeline changes to paused or playing we start updating scale */
2311 if (new == GST_STATE_PLAYING) {
2312 set_update_scale (TRUE);
2314 set_update_scale (FALSE);
2317 /* dump graph for (some) pipeline state changes */
2321 dump_name = g_strdup_printf ("seek.%s_%s",
2322 gst_element_state_get_name (old), gst_element_state_get_name (new));
2324 GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
2325 GST_DEBUG_GRAPH_SHOW_ALL, dump_name);
2333 msg_segment_done (GstBus * bus, GstMessage * message, GstPipeline * pipeline)
2340 GST_DEBUG ("position is %" GST_TIME_FORMAT, GST_TIME_ARGS (position));
2341 gst_message_parse_segment_done (message, &format, &position);
2342 GST_DEBUG ("end of segment at %" GST_TIME_FORMAT, GST_TIME_ARGS (position));
2345 /* in the segment-done callback we never flush as this would not make sense
2346 * for seamless playback. */
2348 flags |= GST_SEEK_FLAG_SEGMENT;
2350 flags |= GST_SEEK_FLAG_SKIP;
2352 s_event = gst_event_new_seek (rate,
2353 GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, G_GINT64_CONSTANT (0),
2354 GST_SEEK_TYPE_SET, duration);
2356 GST_DEBUG ("restart loop with rate %lf to 0 / %" GST_TIME_FORMAT,
2357 rate, GST_TIME_ARGS (duration));
2359 res = send_event (s_event);
2361 g_print ("segment seek failed\n");
2364 /* in stream buffering mode we PAUSE the pipeline until we receive a 100%
2367 do_stream_buffering (gint percent)
2371 gtk_statusbar_pop (GTK_STATUSBAR (statusbar), status_id);
2372 bufstr = g_strdup_printf ("Buffering...%d", percent);
2373 gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, bufstr);
2376 if (percent == 100) {
2377 /* a 100% message means buffering is done */
2379 /* if the desired state is playing, go back */
2380 if (state == GST_STATE_PLAYING) {
2381 /* no state management needed for live pipelines */
2383 fprintf (stderr, "Done buffering, setting pipeline to PLAYING ...\n");
2384 gst_element_set_state (pipeline, GST_STATE_PLAYING);
2386 gtk_statusbar_pop (GTK_STATUSBAR (statusbar), status_id);
2387 gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Playing");
2390 /* buffering busy */
2391 if (buffering == FALSE && state == GST_STATE_PLAYING) {
2392 /* we were not buffering but PLAYING, PAUSE the pipeline. */
2394 fprintf (stderr, "Buffering, setting pipeline to PAUSED ...\n");
2395 gst_element_set_state (pipeline, GST_STATE_PAUSED);
2403 do_download_buffering (gint percent)
2405 if (!buffering && percent < 100) {
2410 bufstr = g_strdup_printf ("Downloading...");
2411 gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, bufstr);
2414 /* once we get a buffering message, we'll do the fill update */
2415 set_update_fill (TRUE);
2417 if (state == GST_STATE_PLAYING && !is_live) {
2418 fprintf (stderr, "Downloading, setting pipeline to PAUSED ...\n");
2419 gst_element_set_state (pipeline, GST_STATE_PAUSED);
2420 /* user has to manually start the playback */
2421 state = GST_STATE_PAUSED;
2427 msg_buffering (GstBus * bus, GstMessage * message, GstPipeline * data)
2431 gst_message_parse_buffering (message, &percent);
2433 /* get more stats */
2434 gst_message_parse_buffering_stats (message, &mode, NULL, NULL,
2438 case GST_BUFFERING_DOWNLOAD:
2439 do_download_buffering (percent);
2441 case GST_BUFFERING_LIVE:
2443 case GST_BUFFERING_TIMESHIFT:
2444 case GST_BUFFERING_STREAM:
2445 do_stream_buffering (percent);
2451 msg_clock_lost (GstBus * bus, GstMessage * message, GstPipeline * data)
2453 g_print ("clock lost! PAUSE and PLAY to select a new clock\n");
2454 if (state == GST_STATE_PLAYING) {
2455 gst_element_set_state (pipeline, GST_STATE_PAUSED);
2456 gst_element_set_state (pipeline, GST_STATE_PLAYING);
2460 #if defined (GDK_WINDOWING_X11) || defined (GDK_WINDOWING_WIN32)
2462 static GstElement *xoverlay_element = NULL;
2463 static gulong embed_xid = 0;
2465 /* We set the xid here in response to the prepare-xwindow-id message via a
2466 * bus sync handler because we don't know the actual videosink used from the
2467 * start (as we don't know the pipeline, or bin elements such as autovideosink
2468 * or gconfvideosink may be used which create the actual videosink only once
2469 * the pipeline is started) */
2470 static GstBusSyncReply
2471 bus_sync_handler (GstBus * bus, GstMessage * message, GstPipeline * data)
2473 if ((GST_MESSAGE_TYPE (message) == GST_MESSAGE_ELEMENT) &&
2474 gst_structure_has_name (message->structure, "prepare-xwindow-id")) {
2475 GstElement *element = GST_ELEMENT (GST_MESSAGE_SRC (message));
2477 xoverlay_element = element;
2479 g_print ("got prepare-xwindow-id, setting XID %lu\n", embed_xid);
2481 if (g_object_class_find_property (G_OBJECT_GET_CLASS (element),
2482 "force-aspect-ratio")) {
2483 g_object_set (element, "force-aspect-ratio", TRUE, NULL);
2486 /* Should have been initialised from main thread before (can't use
2487 * GDK_WINDOW_XID here with Gtk+ >= 2.18, because the sync handler will
2488 * be called from a streaming thread and GDK_WINDOW_XID maps to more than
2489 * a simple structure lookup with Gtk+ >= 2.18, where 'more' is stuff that
2490 * shouldn't be done from a non-GUI thread without explicit locking). */
2491 g_assert (embed_xid != 0);
2493 gst_x_overlay_set_window_handle (GST_X_OVERLAY (element), embed_xid);
2495 return GST_BUS_PASS;
2500 draw_cb (GtkWidget * widget, cairo_t * cr, gpointer data)
2502 if (state < GST_STATE_PAUSED) {
2505 width = gtk_widget_get_allocated_width (widget);
2506 height = gtk_widget_get_allocated_height (widget);
2507 cairo_set_source_rgb (cr, 0, 0, 0);
2508 cairo_rectangle (cr, 0, 0, width, height);
2513 if (xoverlay_element)
2514 gst_x_overlay_expose (GST_X_OVERLAY (xoverlay_element));
2520 realize_cb (GtkWidget * widget, gpointer data)
2522 GdkWindow *window = gtk_widget_get_window (widget);
2524 /* This is here just for pedagogical purposes, GDK_WINDOW_XID will call it
2526 if (!gdk_window_ensure_native (window))
2527 g_error ("Couldn't create native window needed for GstXOverlay!");
2529 #if defined (GDK_WINDOWING_WIN32)
2530 embed_xid = GDK_WINDOW_HWND (window);
2531 g_print ("Window realize: video window HWND = %lu\n", embed_xid);
2533 embed_xid = GDK_WINDOW_XID (window);
2534 g_print ("Window realize: video window XID = %lu\n", embed_xid);
2539 msg_eos (GstBus * bus, GstMessage * message, GstPipeline * data)
2541 message_received (bus, message, data);
2543 /* Set new uri for playerbins and continue playback */
2544 if (l && (pipeline_type == 14 || pipeline_type == 16)) {
2545 stop_cb (NULL, NULL);
2546 l = g_list_next (l);
2548 playerbin_set_uri (GST_ELEMENT (data), l->data);
2549 play_cb (NULL, NULL);
2555 msg_step_done (GstBus * bus, GstMessage * message, GstPipeline * data)
2558 message_received (bus, message, data);
2562 connect_bus_signals (GstElement * pipeline)
2564 GstBus *bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
2566 #if defined (GDK_WINDOWING_X11) || defined (GDK_WINDOWING_WIN32)
2567 /* handle prepare-xwindow-id element message synchronously */
2568 gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bus_sync_handler,
2572 gst_bus_add_signal_watch_full (bus, G_PRIORITY_HIGH);
2573 gst_bus_enable_sync_message_emission (bus);
2575 g_signal_connect (bus, "message::state-changed",
2576 (GCallback) msg_state_changed, pipeline);
2577 g_signal_connect (bus, "message::segment-done", (GCallback) msg_segment_done,
2579 g_signal_connect (bus, "message::async-done", (GCallback) msg_async_done,
2582 g_signal_connect (bus, "message::new-clock", (GCallback) message_received,
2584 g_signal_connect (bus, "message::clock-lost", (GCallback) msg_clock_lost,
2586 g_signal_connect (bus, "message::error", (GCallback) message_received,
2588 g_signal_connect (bus, "message::warning", (GCallback) message_received,
2590 g_signal_connect (bus, "message::eos", (GCallback) msg_eos, pipeline);
2591 g_signal_connect (bus, "message::tag", (GCallback) message_received,
2593 g_signal_connect (bus, "message::element", (GCallback) message_received,
2595 g_signal_connect (bus, "message::segment-done", (GCallback) message_received,
2597 g_signal_connect (bus, "message::buffering", (GCallback) msg_buffering,
2599 // g_signal_connect (bus, "message::step-done", (GCallback) msg_step_done,
2601 g_signal_connect (bus, "message::step-start", (GCallback) msg_step_done,
2603 g_signal_connect (bus, "sync-message::step-done",
2604 (GCallback) msg_sync_step_done, pipeline);
2606 gst_object_unref (bus);
2609 /* Return GList of paths described in location string */
2611 handle_wildcards (const gchar * location)
2614 gchar *path = g_path_get_dirname (location);
2615 gchar *pattern = g_path_get_basename (location);
2616 GPatternSpec *pspec = g_pattern_spec_new (pattern);
2617 GDir *dir = g_dir_open (path, 0, NULL);
2620 g_print ("matching %s from %s\n", pattern, path);
2623 g_print ("opening directory %s failed\n", path);
2627 while ((name = g_dir_read_name (dir)) != NULL) {
2628 if (g_pattern_match_string (pspec, name)) {
2629 res = g_list_append (res, g_strjoin ("/", path, name, NULL));
2630 g_print (" found clip %s\n", name);
2636 g_pattern_spec_free (pspec);
2644 delete_event_cb (void)
2646 stop_cb (NULL, NULL);
2651 print_usage (int argc, char **argv)
2655 g_print ("usage: %s <type> <filename>\n", argv[0]);
2656 g_print (" possible types:\n");
2658 for (i = 0; i < NUM_TYPES; i++) {
2659 g_print (" %d = %s\n", i, pipelines[i].name);
2664 main (int argc, char **argv)
2666 GtkWidget *window, *hbox, *vbox, *panel, *expander, *pb2vbox, *boxes,
2667 *flagtable, *boxes2, *step;
2668 GtkWidget *play_button, *pause_button, *stop_button, *shot_button;
2669 GtkWidget *accurate_checkbox, *key_checkbox, *loop_checkbox, *flush_checkbox;
2670 GtkWidget *scrub_checkbox, *play_scrub_checkbox;
2671 GtkWidget *rate_label, *volume_label;
2672 GOptionEntry options[] = {
2673 {"audiosink", '\0', 0, G_OPTION_ARG_STRING, &opt_audiosink_str,
2674 "audio sink to use (default: " DEFAULT_AUDIOSINK ")", NULL},
2675 {"stats", 's', 0, G_OPTION_ARG_NONE, &stats,
2676 "Show pad stats", NULL},
2677 {"elem", 'e', 0, G_OPTION_ARG_NONE, &elem_seek,
2678 "Seek on elements instead of pads", NULL},
2679 {"verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose,
2680 "Verbose properties", NULL},
2681 {"videosink", '\0', 0, G_OPTION_ARG_STRING, &opt_videosink_str,
2682 "video sink to use (default: " DEFAULT_VIDEOSINK ")", NULL},
2685 GOptionContext *ctx;
2688 #if !GLIB_CHECK_VERSION (2, 31, 0)
2689 if (!g_thread_supported ())
2690 g_thread_init (NULL);
2693 ctx = g_option_context_new ("- test seeking in gsteamer");
2694 g_option_context_add_main_entries (ctx, options, NULL);
2695 g_option_context_add_group (ctx, gst_init_get_option_group ());
2696 g_option_context_add_group (ctx, gtk_get_option_group (TRUE));
2698 if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
2699 g_print ("Error initializing: %s\n", err->message);
2703 if (opt_audiosink_str == NULL)
2704 opt_audiosink_str = g_strdup (DEFAULT_AUDIOSINK);
2706 if (opt_videosink_str == NULL)
2707 opt_videosink_str = g_strdup (DEFAULT_VIDEOSINK);
2709 GST_DEBUG_CATEGORY_INIT (seek_debug, "seek", 0, "seek example");
2712 print_usage (argc, argv);
2716 pipeline_type = atoi (argv[1]);
2718 if (pipeline_type < 0 || pipeline_type >= NUM_TYPES) {
2719 print_usage (argc, argv);
2723 pipeline_spec = argv[2];
2725 if (g_path_is_absolute (pipeline_spec) &&
2726 (g_strrstr (pipeline_spec, "*") != NULL ||
2727 g_strrstr (pipeline_spec, "?") != NULL)) {
2728 paths = handle_wildcards (pipeline_spec);
2730 paths = g_list_prepend (paths, g_strdup (pipeline_spec));
2734 g_print ("opening %s failed\n", pipeline_spec);
2740 pipeline = pipelines[pipeline_type].func ((gchar *) l->data);
2741 g_assert (pipeline);
2743 /* initialize gui elements ... */
2744 window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
2745 video_window = gtk_drawing_area_new ();
2746 g_signal_connect (video_window, "draw", G_CALLBACK (draw_cb), NULL);
2747 g_signal_connect (video_window, "realize", G_CALLBACK (realize_cb), NULL);
2748 gtk_widget_set_double_buffered (video_window, FALSE);
2750 statusbar = gtk_statusbar_new ();
2751 status_id = gtk_statusbar_get_context_id (GTK_STATUSBAR (statusbar), "seek");
2752 gtk_statusbar_push (GTK_STATUSBAR (statusbar), status_id, "Stopped");
2753 hbox = gtk_hbox_new (FALSE, 0);
2754 vbox = gtk_vbox_new (FALSE, 0);
2755 flagtable = gtk_table_new (4, 2, FALSE);
2756 gtk_container_set_border_width (GTK_CONTAINER (vbox), 3);
2758 /* media controls */
2759 play_button = gtk_button_new_from_stock (GTK_STOCK_MEDIA_PLAY);
2760 pause_button = gtk_button_new_from_stock (GTK_STOCK_MEDIA_PAUSE);
2761 stop_button = gtk_button_new_from_stock (GTK_STOCK_MEDIA_STOP);
2764 accurate_checkbox = gtk_check_button_new_with_label ("Accurate Seek");
2765 key_checkbox = gtk_check_button_new_with_label ("Key-unit Seek");
2766 loop_checkbox = gtk_check_button_new_with_label ("Loop");
2767 flush_checkbox = gtk_check_button_new_with_label ("Flush");
2768 scrub_checkbox = gtk_check_button_new_with_label ("Scrub");
2769 play_scrub_checkbox = gtk_check_button_new_with_label ("Play Scrub");
2770 skip_checkbox = gtk_check_button_new_with_label ("Play Skip");
2771 rate_spinbutton = gtk_spin_button_new_with_range (-100, 100, 0.1);
2772 gtk_spin_button_set_digits (GTK_SPIN_BUTTON (rate_spinbutton), 3);
2773 rate_label = gtk_label_new ("Rate");
2775 gtk_widget_set_tooltip_text (accurate_checkbox,
2776 "accurate position is requested, this might be considerably slower for some formats");
2777 gtk_widget_set_tooltip_text (key_checkbox,
2778 "seek to the nearest keyframe. This might be faster but less accurate");
2779 gtk_widget_set_tooltip_text (loop_checkbox, "loop playback");
2780 gtk_widget_set_tooltip_text (flush_checkbox, "flush pipeline after seeking");
2781 gtk_widget_set_tooltip_text (rate_spinbutton, "define the playback rate, "
2782 "negative value trigger reverse playback");
2783 gtk_widget_set_tooltip_text (scrub_checkbox, "show images while seeking");
2784 gtk_widget_set_tooltip_text (play_scrub_checkbox, "play video while seeking");
2785 gtk_widget_set_tooltip_text (skip_checkbox,
2786 "Skip frames while playing at high frame rates");
2788 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (flush_checkbox), TRUE);
2789 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (scrub_checkbox), TRUE);
2791 gtk_spin_button_set_value (GTK_SPIN_BUTTON (rate_spinbutton), rate);
2797 step = gtk_expander_new ("step options");
2798 hbox = gtk_hbox_new (FALSE, 0);
2800 format_combo = gtk_combo_box_text_new ();
2801 gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (format_combo),
2803 gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (format_combo),
2805 gtk_combo_box_set_active (GTK_COMBO_BOX (format_combo), 0);
2806 gtk_box_pack_start (GTK_BOX (hbox), format_combo, FALSE, FALSE, 2);
2808 step_amount_spinbutton = gtk_spin_button_new_with_range (1, 1000, 1);
2809 gtk_spin_button_set_digits (GTK_SPIN_BUTTON (step_amount_spinbutton), 0);
2810 gtk_spin_button_set_value (GTK_SPIN_BUTTON (step_amount_spinbutton), 1.0);
2811 gtk_box_pack_start (GTK_BOX (hbox), step_amount_spinbutton, FALSE, FALSE,
2814 step_rate_spinbutton = gtk_spin_button_new_with_range (0.0, 100, 0.1);
2815 gtk_spin_button_set_digits (GTK_SPIN_BUTTON (step_rate_spinbutton), 3);
2816 gtk_spin_button_set_value (GTK_SPIN_BUTTON (step_rate_spinbutton), 1.0);
2817 gtk_box_pack_start (GTK_BOX (hbox), step_rate_spinbutton, FALSE, FALSE, 2);
2819 step_button = gtk_button_new_from_stock (GTK_STOCK_MEDIA_FORWARD);
2820 gtk_button_set_label (GTK_BUTTON (step_button), "Step");
2821 gtk_box_pack_start (GTK_BOX (hbox), step_button, FALSE, FALSE, 2);
2823 g_signal_connect (G_OBJECT (step_button), "clicked", G_CALLBACK (step_cb),
2827 shuttle_checkbox = gtk_check_button_new_with_label ("Shuttle");
2828 gtk_box_pack_start (GTK_BOX (hbox), shuttle_checkbox, FALSE, FALSE, 2);
2829 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (shuttle_checkbox), FALSE);
2830 g_signal_connect (shuttle_checkbox, "toggled", G_CALLBACK (shuttle_toggled),
2833 shuttle_adjustment =
2834 GTK_ADJUSTMENT (gtk_adjustment_new (0.0, -3.00, 4.0, 0.1, 1.0, 1.0));
2835 shuttle_hscale = gtk_hscale_new (shuttle_adjustment);
2836 gtk_scale_set_digits (GTK_SCALE (shuttle_hscale), 2);
2837 gtk_scale_set_value_pos (GTK_SCALE (shuttle_hscale), GTK_POS_TOP);
2838 g_signal_connect (shuttle_hscale, "value_changed",
2839 G_CALLBACK (shuttle_value_changed), pipeline);
2840 g_signal_connect (shuttle_hscale, "format_value",
2841 G_CALLBACK (shuttle_format_value), pipeline);
2843 gtk_box_pack_start (GTK_BOX (hbox), shuttle_hscale, TRUE, TRUE, 2);
2845 gtk_container_add (GTK_CONTAINER (step), hbox);
2850 GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.00, N_GRAD, 0.1, 1.0, 1.0));
2851 hscale = gtk_hscale_new (adjustment);
2852 gtk_scale_set_digits (GTK_SCALE (hscale), 2);
2853 gtk_scale_set_value_pos (GTK_SCALE (hscale), GTK_POS_RIGHT);
2854 gtk_range_set_show_fill_level (GTK_RANGE (hscale), TRUE);
2855 gtk_range_set_fill_level (GTK_RANGE (hscale), N_GRAD);
2857 g_signal_connect (hscale, "button_press_event", G_CALLBACK (start_seek),
2859 g_signal_connect (hscale, "button_release_event", G_CALLBACK (stop_seek),
2861 g_signal_connect (hscale, "format_value", G_CALLBACK (format_value),
2864 if (pipeline_type == 16) {
2865 /* the playbin2 panel controls for the video/audio/subtitle tracks */
2866 panel = gtk_hbox_new (FALSE, 0);
2867 video_combo = gtk_combo_box_text_new ();
2868 audio_combo = gtk_combo_box_text_new ();
2869 text_combo = gtk_combo_box_text_new ();
2870 gtk_widget_set_sensitive (video_combo, FALSE);
2871 gtk_widget_set_sensitive (audio_combo, FALSE);
2872 gtk_widget_set_sensitive (text_combo, FALSE);
2873 gtk_box_pack_start (GTK_BOX (panel), video_combo, TRUE, TRUE, 2);
2874 gtk_box_pack_start (GTK_BOX (panel), audio_combo, TRUE, TRUE, 2);
2875 gtk_box_pack_start (GTK_BOX (panel), text_combo, TRUE, TRUE, 2);
2876 g_signal_connect (G_OBJECT (video_combo), "changed",
2877 G_CALLBACK (video_combo_cb), pipeline);
2878 g_signal_connect (G_OBJECT (audio_combo), "changed",
2879 G_CALLBACK (audio_combo_cb), pipeline);
2880 g_signal_connect (G_OBJECT (text_combo), "changed",
2881 G_CALLBACK (text_combo_cb), pipeline);
2882 /* playbin2 panel for flag checkboxes and volume/mute */
2883 boxes = gtk_hbox_new (FALSE, 0);
2884 vis_checkbox = gtk_check_button_new_with_label ("Vis");
2885 video_checkbox = gtk_check_button_new_with_label ("Video");
2886 audio_checkbox = gtk_check_button_new_with_label ("Audio");
2887 text_checkbox = gtk_check_button_new_with_label ("Text");
2888 mute_checkbox = gtk_check_button_new_with_label ("Mute");
2889 download_checkbox = gtk_check_button_new_with_label ("Download");
2890 buffer_checkbox = gtk_check_button_new_with_label ("Buffer");
2891 volume_label = gtk_label_new ("Volume");
2892 volume_spinbutton = gtk_spin_button_new_with_range (0, 10.0, 0.1);
2893 gtk_spin_button_set_value (GTK_SPIN_BUTTON (volume_spinbutton), 1.0);
2894 gtk_box_pack_start (GTK_BOX (boxes), video_checkbox, TRUE, TRUE, 2);
2895 gtk_box_pack_start (GTK_BOX (boxes), audio_checkbox, TRUE, TRUE, 2);
2896 gtk_box_pack_start (GTK_BOX (boxes), text_checkbox, TRUE, TRUE, 2);
2897 gtk_box_pack_start (GTK_BOX (boxes), vis_checkbox, TRUE, TRUE, 2);
2898 gtk_box_pack_start (GTK_BOX (boxes), mute_checkbox, TRUE, TRUE, 2);
2899 gtk_box_pack_start (GTK_BOX (boxes), download_checkbox, TRUE, TRUE, 2);
2900 gtk_box_pack_start (GTK_BOX (boxes), buffer_checkbox, TRUE, TRUE, 2);
2901 gtk_box_pack_start (GTK_BOX (boxes), volume_label, TRUE, TRUE, 2);
2902 gtk_box_pack_start (GTK_BOX (boxes), volume_spinbutton, TRUE, TRUE, 2);
2903 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (vis_checkbox), FALSE);
2904 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (audio_checkbox), TRUE);
2905 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (video_checkbox), TRUE);
2906 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (text_checkbox), TRUE);
2907 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (mute_checkbox), FALSE);
2908 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (download_checkbox), FALSE);
2909 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (buffer_checkbox), FALSE);
2910 g_signal_connect (G_OBJECT (vis_checkbox), "toggled",
2911 G_CALLBACK (vis_toggle_cb), pipeline);
2912 g_signal_connect (G_OBJECT (audio_checkbox), "toggled",
2913 G_CALLBACK (audio_toggle_cb), pipeline);
2914 g_signal_connect (G_OBJECT (video_checkbox), "toggled",
2915 G_CALLBACK (video_toggle_cb), pipeline);
2916 g_signal_connect (G_OBJECT (text_checkbox), "toggled",
2917 G_CALLBACK (text_toggle_cb), pipeline);
2918 g_signal_connect (G_OBJECT (mute_checkbox), "toggled",
2919 G_CALLBACK (mute_toggle_cb), pipeline);
2920 g_signal_connect (G_OBJECT (download_checkbox), "toggled",
2921 G_CALLBACK (download_toggle_cb), pipeline);
2922 g_signal_connect (G_OBJECT (buffer_checkbox), "toggled",
2923 G_CALLBACK (buffer_toggle_cb), pipeline);
2924 g_signal_connect (G_OBJECT (volume_spinbutton), "value_changed",
2925 G_CALLBACK (volume_spinbutton_changed_cb), pipeline);
2926 /* playbin2 panel for snapshot */
2927 boxes2 = gtk_hbox_new (FALSE, 0);
2928 shot_button = gtk_button_new_from_stock (GTK_STOCK_SAVE);
2929 gtk_widget_set_tooltip_text (shot_button,
2930 "save a screenshot .png in the current directory");
2931 g_signal_connect (G_OBJECT (shot_button), "clicked", G_CALLBACK (shot_cb),
2933 vis_combo = gtk_combo_box_text_new ();
2934 g_signal_connect (G_OBJECT (vis_combo), "changed",
2935 G_CALLBACK (vis_combo_cb), pipeline);
2936 gtk_widget_set_sensitive (vis_combo, FALSE);
2937 gtk_box_pack_start (GTK_BOX (boxes2), shot_button, TRUE, TRUE, 2);
2938 gtk_box_pack_start (GTK_BOX (boxes2), vis_combo, TRUE, TRUE, 2);
2940 /* fill the vis combo box and the array of factories */
2941 init_visualization_features ();
2943 panel = boxes = boxes2 = NULL;
2946 /* do the packing stuff ... */
2947 gtk_window_set_default_size (GTK_WINDOW (window), 250, 96);
2948 /* FIXME: can we avoid this for audio only? */
2949 gtk_widget_set_size_request (GTK_WIDGET (video_window), -1,
2950 DEFAULT_VIDEO_HEIGHT);
2951 gtk_container_add (GTK_CONTAINER (window), vbox);
2952 gtk_box_pack_start (GTK_BOX (vbox), video_window, TRUE, TRUE, 2);
2953 gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 2);
2954 gtk_box_pack_start (GTK_BOX (hbox), play_button, FALSE, FALSE, 2);
2955 gtk_box_pack_start (GTK_BOX (hbox), pause_button, FALSE, FALSE, 2);
2956 gtk_box_pack_start (GTK_BOX (hbox), stop_button, FALSE, FALSE, 2);
2957 gtk_box_pack_start (GTK_BOX (hbox), flagtable, FALSE, FALSE, 2);
2958 gtk_table_attach_defaults (GTK_TABLE (flagtable), accurate_checkbox, 0, 1, 0,
2960 gtk_table_attach_defaults (GTK_TABLE (flagtable), flush_checkbox, 1, 2, 0, 1);
2961 gtk_table_attach_defaults (GTK_TABLE (flagtable), loop_checkbox, 2, 3, 0, 1);
2962 gtk_table_attach_defaults (GTK_TABLE (flagtable), key_checkbox, 0, 1, 1, 2);
2963 gtk_table_attach_defaults (GTK_TABLE (flagtable), scrub_checkbox, 1, 2, 1, 2);
2964 gtk_table_attach_defaults (GTK_TABLE (flagtable), play_scrub_checkbox, 2, 3,
2966 gtk_table_attach_defaults (GTK_TABLE (flagtable), skip_checkbox, 3, 4, 0, 1);
2967 gtk_table_attach_defaults (GTK_TABLE (flagtable), rate_label, 4, 5, 0, 1);
2968 gtk_table_attach_defaults (GTK_TABLE (flagtable), rate_spinbutton, 4, 5, 1,
2970 if (panel && boxes && boxes2) {
2971 expander = gtk_expander_new ("playbin2 options");
2972 pb2vbox = gtk_vbox_new (FALSE, 0);
2973 gtk_box_pack_start (GTK_BOX (pb2vbox), panel, FALSE, FALSE, 2);
2974 gtk_box_pack_start (GTK_BOX (pb2vbox), boxes, FALSE, FALSE, 2);
2975 gtk_box_pack_start (GTK_BOX (pb2vbox), boxes2, FALSE, FALSE, 2);
2976 gtk_container_add (GTK_CONTAINER (expander), pb2vbox);
2977 gtk_box_pack_start (GTK_BOX (vbox), expander, FALSE, FALSE, 2);
2979 gtk_box_pack_start (GTK_BOX (vbox), step, FALSE, FALSE, 2);
2980 gtk_box_pack_start (GTK_BOX (vbox), hscale, FALSE, FALSE, 2);
2981 gtk_box_pack_start (GTK_BOX (vbox), statusbar, FALSE, FALSE, 2);
2983 /* connect things ... */
2984 g_signal_connect (G_OBJECT (play_button), "clicked", G_CALLBACK (play_cb),
2986 g_signal_connect (G_OBJECT (pause_button), "clicked", G_CALLBACK (pause_cb),
2988 g_signal_connect (G_OBJECT (stop_button), "clicked", G_CALLBACK (stop_cb),
2990 g_signal_connect (G_OBJECT (accurate_checkbox), "toggled",
2991 G_CALLBACK (accurate_toggle_cb), pipeline);
2992 g_signal_connect (G_OBJECT (key_checkbox), "toggled",
2993 G_CALLBACK (key_toggle_cb), pipeline);
2994 g_signal_connect (G_OBJECT (loop_checkbox), "toggled",
2995 G_CALLBACK (loop_toggle_cb), pipeline);
2996 g_signal_connect (G_OBJECT (flush_checkbox), "toggled",
2997 G_CALLBACK (flush_toggle_cb), pipeline);
2998 g_signal_connect (G_OBJECT (scrub_checkbox), "toggled",
2999 G_CALLBACK (scrub_toggle_cb), pipeline);
3000 g_signal_connect (G_OBJECT (play_scrub_checkbox), "toggled",
3001 G_CALLBACK (play_scrub_toggle_cb), pipeline);
3002 g_signal_connect (G_OBJECT (skip_checkbox), "toggled",
3003 G_CALLBACK (skip_toggle_cb), pipeline);
3004 g_signal_connect (G_OBJECT (rate_spinbutton), "value_changed",
3005 G_CALLBACK (rate_spinbutton_changed_cb), pipeline);
3007 g_signal_connect (G_OBJECT (window), "delete-event", delete_event_cb, NULL);
3010 gtk_widget_show_all (window);
3012 /* realize window now so that the video window gets created and we can
3013 * obtain its XID before the pipeline is started up and the videosink
3014 * asks for the XID of the window to render onto */
3015 gtk_widget_realize (window);
3017 #if defined (GDK_WINDOWING_X11) || defined (GDK_WINDOWING_WIN32)
3018 /* we should have the XID now */
3019 g_assert (embed_xid != 0);
3023 g_signal_connect (pipeline, "deep_notify",
3024 G_CALLBACK (gst_object_default_deep_notify), NULL);
3027 connect_bus_signals (pipeline);
3030 g_print ("NULL pipeline\n");
3031 gst_element_set_state (pipeline, GST_STATE_NULL);
3033 g_print ("free pipeline\n");
3034 gst_object_unref (pipeline);
3036 g_list_foreach (paths, (GFunc) g_free, NULL);
3037 g_list_free (paths);