From: Xavi Artigas Date: Thu, 5 Jul 2012 15:04:15 +0000 (+0200) Subject: Slightly better backward seek. Not working yet, though. X-Git-Tag: 1.19.3~489^2~562^2~169 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1fae49828c1d71c57efd9e06a3b907715f0e311;p=platform%2Fupstream%2Fgstreamer.git Slightly better backward seek. Not working yet, though. --- diff --git a/gst-sdk/tutorials/basic-tutorial-13.c b/gst-sdk/tutorials/basic-tutorial-13.c index 0a2eca0..d6a0718 100644 --- a/gst-sdk/tutorials/basic-tutorial-13.c +++ b/gst-sdk/tutorials/basic-tutorial-13.c @@ -28,7 +28,7 @@ static void send_seek_event (CustomData *data) { GST_SEEK_TYPE_SET, position, GST_SEEK_TYPE_NONE, 0); } else { seek_event = gst_event_new_seek (data->rate, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH | GST_SEEK_FLAG_ACCURATE, - GST_SEEK_TYPE_NONE, 0, GST_SEEK_TYPE_SET, position); + GST_SEEK_TYPE_SET, 0, GST_SEEK_TYPE_SET, position); } if (data->video_sink == NULL) {