From af1f5031603d0cef6db31f5119eb51a502d67c87 Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Sat, 24 Mar 2018 12:09:48 +0100 Subject: select dash-stream as default, provide legacy streams under the legacy label --- model/Room.php | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) (limited to 'model/Room.php') diff --git a/model/Room.php b/model/Room.php index 9ec6ebe..7089532 100644 --- a/model/Room.php +++ b/model/Room.php @@ -212,6 +212,15 @@ class Room public function getSelectionNames() { $selections = array(); + if($this->hasDash()) + $selections[] = 'dash'; + + if($this->hasAudio()) + $selections[] = 'audio'; + + if($this->hasMusic()) + $selections[] = 'music'; + if($this->hasHdVideo()) $selections[] = 'hd'; @@ -221,15 +230,6 @@ class Room if($this->hasSlides()) $selections[] = 'slides'; - if($this->hasAudio()) - $selections[] = 'audio'; - - if($this->hasMusic()) - $selections[] = 'music'; - - if($this->hasDash()) - $selections[] = 'dash'; - return $selections; } @@ -241,11 +241,8 @@ class Room public function getTabNames() { $tabs = array(); - if($this->hasVideo()) - $tabs[] = 'video'; - - if($this->hasSlides()) - $tabs[] = 'slides'; + if($this->hasDash()) + $tabs[] = 'dash'; if($this->hasAudio()) $tabs[] = 'audio'; @@ -253,8 +250,11 @@ class Room if($this->hasMusic()) $tabs[] = 'music'; - if($this->hasDash()) - $tabs[] = 'dash'; + if($this->hasVideo()) + $tabs[] = 'video'; + + if($this->hasSlides()) + $tabs[] = 'slides'; return $tabs; } @@ -331,6 +331,7 @@ class Room public function selectStream($selection, $language = 'native') { + if($selection == 'video') $selection = 'hd'; $selections = $this->getSelectionNames(); if(count($selections) == 0) -- cgit v1.2.3