validate/launcher: Treat DASH like HLS in another place

This commit is contained in:
Sebastian Dröge 2015-08-15 16:19:24 +02:00
parent 14414c13c5
commit 233c99fbb7

View 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