From e160264c7f2294fe5a177778b17448658ec1b1cb Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Fri, 15 Jul 2016 08:57:28 -0400 Subject: [PATCH] tests:validate: Better choose tested rendering formats --- tests/validate/geslaunch.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/validate/geslaunch.py b/tests/validate/geslaunch.py index f118cbe2cb..96681e0e2d 100644 --- a/tests/validate/geslaunch.py +++ b/tests/validate/geslaunch.py @@ -37,8 +37,12 @@ if "win32" in sys.platform: GES_ENCODING_TARGET_COMBINATIONS = [ MediaFormatCombination("ogg", "vorbis", "theora"), MediaFormatCombination("webm", "vorbis", "vp8"), - MediaFormatCombination("mp4", "mp3", "h264"), - MediaFormatCombination("mkv", "vorbis", "h264")] + MediaFormatCombination("webm", "opus", "vp8"), + MediaFormatCombination("mp4", "aac", "h264"), + MediaFormatCombination("mp4", "ac3", "h264"), + MediaFormatCombination("mkv", "opus", "h264"), + MediaFormatCombination("mkv", "vorbis", "h264") +] def quote_uri(uri):