diff --git a/sdk/android/api/org/webrtc/EglRenderer.java b/sdk/android/api/org/webrtc/EglRenderer.java index 921abe66e4..0a0479b311 100644 --- a/sdk/android/api/org/webrtc/EglRenderer.java +++ b/sdk/android/api/org/webrtc/EglRenderer.java @@ -332,7 +332,6 @@ public class EglRenderer implements VideoSink { * Set if the video stream should be mirrored horizontally or not. */ public void setMirror(final boolean mirror) { - logD("setMirrorHorizontally: " + mirror); synchronized (layoutLock) { this.mirrorHorizontally = mirror; } @@ -342,7 +341,6 @@ public class EglRenderer implements VideoSink { * Set if the video stream should be mirrored vertically or not. */ public void setMirrorVertically(final boolean mirrorVertically) { - logD("setMirrorVertically: " + mirrorVertically); synchronized (layoutLock) { this.mirrorVertically = mirrorVertically; } @@ -353,7 +351,6 @@ public class EglRenderer implements VideoSink { * Set this to 0 to disable cropping. */ public void setLayoutAspectRatio(float layoutAspectRatio) { - logD("setLayoutAspectRatio: " + layoutAspectRatio); synchronized (layoutLock) { this.layoutAspectRatio = layoutAspectRatio; } @@ -366,7 +363,6 @@ public class EglRenderer implements VideoSink { * reduction. */ public void setFpsReduction(float fps) { - logD("setFpsReduction: " + fps); synchronized (fpsReductionLock) { final long previousRenderPeriodNs = minRenderPeriodNs; if (fps <= 0) {