tests/examples/seek/seek.c: Don't let double and tripple clicks mess up our state.

Original commit message from CVS:
* tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
(stop_seek):
Don't let double and tripple clicks mess up our state.
This commit is contained in:
Wim Taymans 2006-03-29 13:54:24 +00:00
parent 6eef85d9f7
commit ac97d94384
2 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-03-29 Wim Taymans <wim@fluendo.com>
* tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
(stop_seek):
Don't let double and tripple clicks mess up our state.
2006-03-28 Tim-Philipp Müller <tim at centricular dot net> 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
* gst/playback/gstplaybin.c: (gen_video_element), * gst/playback/gstplaybin.c: (gen_video_element),

View file

@ -1004,6 +1004,7 @@ static void do_seek (GtkWidget * widget);
static gboolean static gboolean
end_scrub (GtkWidget * widget) end_scrub (GtkWidget * widget)
{ {
GST_DEBUG ("end scrub, PAUSE");
gst_element_set_state (pipeline, GST_STATE_PAUSED); gst_element_set_state (pipeline, GST_STATE_PAUSED);
seek_timeout_id = 0; seek_timeout_id = 0;
@ -1087,12 +1088,15 @@ seek_cb (GtkWidget * widget)
{ {
/* If the timer hasn't expired yet, then the pipeline is running */ /* If the timer hasn't expired yet, then the pipeline is running */
if (scrub && seek_timeout_id != 0) { if (scrub && seek_timeout_id != 0) {
GST_DEBUG ("do scrub seek, PAUSED");
gst_element_set_state (pipeline, GST_STATE_PAUSED); gst_element_set_state (pipeline, GST_STATE_PAUSED);
} }
GST_DEBUG ("do seek");
do_seek (widget); do_seek (widget);
if (scrub) { if (scrub) {
GST_DEBUG ("do scrub seek, PLAYING");
gst_element_set_state (pipeline, GST_STATE_PLAYING); gst_element_set_state (pipeline, GST_STATE_PLAYING);
if (seek_timeout_id == 0) { if (seek_timeout_id == 0) {
@ -1121,8 +1125,13 @@ set_update_scale (gboolean active)
static gboolean static gboolean
start_seek (GtkWidget * widget, GdkEventButton * event, gpointer user_data) start_seek (GtkWidget * widget, GdkEventButton * event, gpointer user_data)
{ {
if (state == GST_STATE_PLAYING && flush_seek) if (event->type != GDK_BUTTON_PRESS)
return FALSE;
if (state == GST_STATE_PLAYING && flush_seek) {
GST_DEBUG ("start scrub seek, PAUSE");
gst_element_set_state (pipeline, GST_STATE_PAUSED); gst_element_set_state (pipeline, GST_STATE_PAUSED);
}
set_update_scale (FALSE); set_update_scale (FALSE);
@ -1143,6 +1152,7 @@ stop_seek (GtkWidget * widget, gpointer user_data)
} }
if (!flush_seek) { if (!flush_seek) {
GST_DEBUG ("do final seek");
do_seek (widget); do_seek (widget);
} }
@ -1152,6 +1162,7 @@ stop_seek (GtkWidget * widget, gpointer user_data)
/* Still scrubbing, so the pipeline is already playing */ /* Still scrubbing, so the pipeline is already playing */
} else { } else {
if (state == GST_STATE_PLAYING) { if (state == GST_STATE_PLAYING) {
GST_DEBUG ("stop scrub seek, PLAYING");
gst_element_set_state (pipeline, GST_STATE_PLAYING); gst_element_set_state (pipeline, GST_STATE_PLAYING);
} }
} }