mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 23:48:53 +00:00
validate/launcher: Treat DASH like HLS in another place
This commit is contained in:
parent
14414c13c5
commit
233c99fbb7
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ class Protocols(object):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def needs_clock_sync(protocol):
|
def needs_clock_sync(protocol):
|
||||||
if protocol == Protocols.HLS:
|
if protocol in [Protocols.HLS, Protocols.DASH]:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Reference in a new issue