From bb124f787d3cd72ef02a5c437a9a9a663f17d06a Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Thu, 3 Oct 2013 05:32:54 -0400 Subject: [PATCH] scenario: do not set default seek flags Seeks will be done with no particular flags, unless specified in the scenario. --- validate/gst/validate/gst-validate-scenario.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate/gst/validate/gst-validate-scenario.c b/validate/gst/validate/gst-validate-scenario.c index d7d7ee34ba..4f92ac6a35 100644 --- a/validate/gst/validate/gst-validate-scenario.c +++ b/validate/gst/validate/gst-validate-scenario.c @@ -133,7 +133,7 @@ _execute_seek (GstValidateScenario * scenario, GstValidateAction * action) gdouble rate = 1.0, dstart, dstop; GstFormat format = GST_FORMAT_TIME; - GstSeekFlags flags = GST_SEEK_FLAG_ACCURATE | GST_SEEK_FLAG_FLUSH; + GstSeekFlags flags = 0; GstSeekType start_type = GST_SEEK_TYPE_SET; GstClockTime start; GstSeekType stop_type = GST_SEEK_TYPE_SET;