| Index: talk/app/webrtc/java/src/org/webrtc/MediaCodecVideoDecoder.java
|
| diff --git a/talk/app/webrtc/java/src/org/webrtc/MediaCodecVideoDecoder.java b/talk/app/webrtc/java/src/org/webrtc/MediaCodecVideoDecoder.java
|
| index 434fc53612024d60c6f3eb6250c97266ef185aec..19002f70e15c42114aec54e3cf75db9687e54b8b 100644
|
| --- a/talk/app/webrtc/java/src/org/webrtc/MediaCodecVideoDecoder.java
|
| +++ b/talk/app/webrtc/java/src/org/webrtc/MediaCodecVideoDecoder.java
|
| @@ -609,8 +609,10 @@ public class MediaCodecVideoDecoder {
|
| // mediaCodec.releaseOutputBuffer has already been called.
|
| final DecodedOutputBuffer droppedFrame = dequeuedSurfaceOutputBuffers.remove();
|
| if (dequeueTimeoutMs > 0) {
|
| - Logging.w(TAG, "Draining decoder. Dropping frame with TS: "
|
| - + droppedFrame.timeStampMs + ". Total number of dropped frames: " + droppedFrames);
|
| + // TODO(perkj): Re-add the below log when VideoRenderGUI has been removed or fixed to
|
| + // return the one and only texture even if it does not render.
|
| + // Logging.w(TAG, "Draining decoder. Dropping frame with TS: "
|
| + // + droppedFrame.timeStampMs + ". Total number of dropped frames: " + droppedFrames);
|
| } else {
|
| Logging.w(TAG, "Too many output buffers. Dropping frame with TS: "
|
| + droppedFrame.timeStampMs + ". Total number of dropped frames: " + droppedFrames);
|
|
|