From 33d16221ccafac260107d06834cdaa36c4a4ee6b Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Tue, 22 Dec 2020 00:09:29 +0100 Subject: [PATCH] Remove some logs --- src/ext/lib/video-transform/Scaler.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ext/lib/video-transform/Scaler.js b/src/ext/lib/video-transform/Scaler.js index d907c33..b625ac2 100644 --- a/src/ext/lib/video-transform/Scaler.js +++ b/src/ext/lib/video-transform/Scaler.js @@ -94,10 +94,8 @@ class Scaler { if (ar.type !== AspectRatio.FitHeight) { if (playerAr < compensatedStreamAr) { - console.warn('AR CORRECT FACTOR') arCorrectionFactor = this.conf.player.dimensions.width / this.conf.video.offsetWidth; } else if (ar.type !== AspectRatio.Reset) { - console.warn('ANTI-HEIGHTCOMPENSATION') arCorrectionFactor /= heightCompensationFactor; } }