summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-08-15 16:19:24 +0200
committerSebastian Dröge <sebastian@centricular.com>2015-08-15 16:19:46 +0200
commit233c99fbb774b3817e8927f9c05899d8dc0967d5 (patch)
tree58486e10a3c027c23da909ebb35e03924ca1dd87
parent14414c13c5cc75525e3e7bb118dfbd588d0b9acc (diff)
validate/launcher: Treat DASH like HLS in another place
-rw-r--r--validate/launcher/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/validate/launcher/utils.py b/validate/launcher/utils.py
index f7ee633..09752da 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