From fcb8a77e17c1d6ca4ff51ab598c53e842065a6e0 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Wed, 16 Jul 2014 19:38:01 +0200 Subject: [PATCH] validate:launcher: Avoid using sync=true on fakesinks Making the test run much faster! --- validate/tools/launcher/apps/gst-validate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validate/tools/launcher/apps/gst-validate.py b/validate/tools/launcher/apps/gst-validate.py index 455c106682..a55239c4ce 100644 --- a/validate/tools/launcher/apps/gst-validate.py +++ b/validate/tools/launcher/apps/gst-validate.py @@ -162,7 +162,7 @@ class GstValidatePlaybinTestsGenerator(GstValidatePipelineTestsGenerator): protocol = minfo.media_descriptor.get_protocol() if self.test_manager.options.mute: - fakesink = "'fakesink sync=true'" + fakesink = "'fakesink'" pipe += " audio-sink=%s video-sink=%s" %(fakesink, fakesink) pipe += " uri=%s" % uri @@ -235,7 +235,7 @@ class GstValidateMixerTestsGenerator(GstValidatePipelineTestsGenerator): pipe_arguments = {"mixer": self.mixer} if self.test_manager.options.mute: - pipe_arguments["sink"] = "'fakesink sync=true'" + pipe_arguments["sink"] = "'fakesink'" else: pipe_arguments["sink"] = "auto%ssink" % self.media_type