Prevent VR from being initialized in listen mode (#2396)

This commit is contained in:
syeopite 2021-09-14 23:37:23 +00:00 committed by GitHub
parent 947fe4fbb3
commit 5054510d15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -149,7 +149,7 @@ player.on('error', function (event) {
});
// Enable VR video support
if (video_data.vr && video_data.params.vr_mode) {
if (!video_data.params.listen && video_data.vr && video_data.params.vr_mode) {
player.crossOrigin("anonymous")
switch (video_data.projection_type) {
case "EQUIRECTANGULAR":