summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2020-03-20 09:05:52 -0300
committerThibault Saunier <tsaunier@igalia.com>2020-10-23 12:18:40 -0300
commit6c08b2c570730f2cfdd53b698944b97cf25de02e (patch)
tree810c986f9aefed60fae1d7b96a879926ec71bf51
parent5b7ac9750201d6c3eb047a3326f9e3317b89ab35 (diff)
validate: Scale down even more to speed up encoding in VP9
From 3min to 50secs to execute here. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/172>
-rw-r--r--validate/launcher/apps/gstvalidate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/validate/launcher/apps/gstvalidate.py b/validate/launcher/apps/gstvalidate.py
index f8f0513..d9cf6db 100644
--- a/validate/launcher/apps/gstvalidate.py
+++ b/validate/launcher/apps/gstvalidate.py
@@ -1284,8 +1284,8 @@ not been tested and explicitly activated if you set use --wanted-tests ALL""")
self.add_encoding_formats([
MediaFormatCombination("ogg", "vorbis", "theora"),
MediaFormatCombination("webm", "vorbis", "vp8"),
- MediaFormatCombination(
- "webm", "vorbis", "vp9", video_restriction="video/x-raw,width=320,height=240"),
+ MediaFormatCombination("webm", "vorbis", "vp9",
+ video_restriction="video/x-raw,width=160,height=120"),
MediaFormatCombination("mp4", "mp3", "h264"),
MediaFormatCombination("mkv", "vorbis", "h264"),
])