From b1547818e6e7c6dcc3bfa30d46fde3d2b881419d Mon Sep 17 00:00:00 2001 From: Julien Moutte Date: Sun, 14 Dec 2003 17:31:07 +0000 Subject: Fixing makefile. Smarter seek Original commit message from CVS: Fixing makefile. Smarter seek --- examples/gstplay/player.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'examples/gstplay/player.c') diff --git a/examples/gstplay/player.c b/examples/gstplay/player.c index 7e07c611..09811e63 100644 --- a/examples/gstplay/player.c +++ b/examples/gstplay/player.c @@ -20,6 +20,7 @@ #include static GMainLoop *loop = NULL; +static gint64 length = 0; static void got_time_tick (GstPlay *play, gint64 time_nanos) @@ -31,6 +32,7 @@ static void got_stream_length (GstPlay *play, gint64 length_nanos) { g_message ("got length %llu", length_nanos); + length = length_nanos; } static void @@ -48,7 +50,7 @@ got_eos (GstPlay *play) static gboolean seek_timer (GstPlay *play) { - gst_play_seek_to_time (play, 163439850000LL); + gst_play_seek_to_time (play, length / 2); return FALSE; } -- cgit v1.2.1