From 233c99fbb774b3817e8927f9c05899d8dc0967d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 15 Aug 2015 16:19:24 +0200 Subject: [PATCH] validate/launcher: Treat DASH like HLS in another place --- validate/launcher/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate/launcher/utils.py b/validate/launcher/utils.py index f7ee63347f..09752da9ce 100644 --- a/validate/launcher/utils.py +++ b/validate/launcher/utils.py @@ -54,7 +54,7 @@ class Protocols(object): @staticmethod def needs_clock_sync(protocol): - if protocol == Protocols.HLS: + if protocol in [Protocols.HLS, Protocols.DASH]: return True return False