Index: talk/app/webrtc/java/jni/androidmediadecoder_jni.cc |
diff --git a/talk/app/webrtc/java/jni/androidmediadecoder_jni.cc b/talk/app/webrtc/java/jni/androidmediadecoder_jni.cc |
index 4554e7b59cacbe590b12757faf1fae59e2a32599..62b45af1bdaa8527e3b10b5337d2da174a38f597 100644 |
--- a/talk/app/webrtc/java/jni/androidmediadecoder_jni.cc |
+++ b/talk/app/webrtc/java/jni/androidmediadecoder_jni.cc |
@@ -92,6 +92,8 @@ class MediaCodecVideoDecoder : public webrtc::VideoDecoder, |
// rtc::MessageHandler implementation. |
void OnMessage(rtc::Message* msg) override; |
+ const char* ImplementationName() const override; |
+ |
private: |
// CHECK-fail if not running on |codec_thread_|. |
void CheckOnCodecThread(); |
@@ -894,5 +896,9 @@ void MediaCodecVideoDecoderFactory::DestroyVideoDecoder( |
delete decoder; |
} |
+const char* MediaCodecVideoDecoder::ImplementationName() const { |
+ return "MediaCodec"; |
+} |
+ |
} // namespace webrtc_jni |