validate/launcher: Treat DASH like HLS in another place
authorSebastian Dröge <sebastian@centricular.com>
Sat, 15 Aug 2015 14:19:24 +0000 (16:19 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Sat, 15 Aug 2015 14:19:46 +0000 (16:19 +0200)
validate/launcher/utils.py

index f7ee633..09752da 100644 (file)
@@ -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