summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2014-04-17 12:58:48 +0200
committerThibault Saunier <tsaunier@gnome.org>2014-04-17 12:58:48 +0200
commitbbbd5fe2d04dbea2155a77a6d346a0f1dcbae542 (patch)
tree731335ecb41a83df87c94728d9f4ff39c9c1bcc3
parentad25b4d160b8d76522c9ef9fd48f036b39390765 (diff)
validate:launcher: ring-buffer-max-size is in bytes
-rw-r--r--validate/tools/launcher/apps/gst-validate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/validate/tools/launcher/apps/gst-validate.py b/validate/tools/launcher/apps/gst-validate.py
index 04862e0..083a046 100644
--- a/validate/tools/launcher/apps/gst-validate.py
+++ b/validate/tools/launcher/apps/gst-validate.py
@@ -62,8 +62,8 @@ class PlaybinDescriptor(PipelineDescriptor):
pipe += " uri=%s" % uri
if hasattr(scenario, "reverse-playback") and protocol == Protocols.HTTP:
- # 10MB so we can reverse playbacl
- pipe += " ring-buffer-max-size=10240"
+ # 10MB so we can reverse playback
+ pipe += " ring-buffer-max-size=10485760"
return pipe