| 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 2d91991c1b1381ec206d6a081eb5fdc385cdf7a7..0696440983c343da6802a045a03ef9dfc0419df7 100644
 | 
| --- a/talk/app/webrtc/java/src/org/webrtc/MediaCodecVideoDecoder.java
 | 
| +++ b/talk/app/webrtc/java/src/org/webrtc/MediaCodecVideoDecoder.java
 | 
| @@ -27,6 +27,7 @@
 | 
|  
 | 
|  package org.webrtc;
 | 
|  
 | 
| +import android.graphics.SurfaceTexture;
 | 
|  import android.media.MediaCodec;
 | 
|  import android.media.MediaCodecInfo;
 | 
|  import android.media.MediaCodecInfo.CodecCapabilities;
 | 
| @@ -48,6 +49,7 @@ import java.util.concurrent.TimeUnit;
 | 
|  
 | 
|  // Java-side of peerconnection_jni.cc:MediaCodecVideoDecoder.
 | 
|  // This class is an implementation detail of the Java PeerConnection API.
 | 
| +@SuppressWarnings("deprecation")
 | 
|  public class MediaCodecVideoDecoder {
 | 
|    // This class is constructed, operated, and destroyed by its C++ incarnation,
 | 
|    // so the class and its methods have non-public visibility.  The API this
 | 
| 
 |