Index: webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc |
diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc |
index 21096bd82eb37c09f0d9d6350e47e9ef62074406..a00af6449d718cf7b02d08b0e839477a16a705da 100644 |
--- a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc |
+++ b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc |
@@ -809,6 +809,10 @@ int VP9EncoderImpl::RegisterEncodeCompleteCallback( |
return WEBRTC_VIDEO_CODEC_OK; |
} |
+const char* VP9EncoderImpl::ImplementationName() const { |
+ return "libvpx"; |
+} |
+ |
VP9Decoder* VP9Decoder::Create() { |
return new VP9DecoderImpl(); |
} |
@@ -980,4 +984,9 @@ int VP9DecoderImpl::Release() { |
inited_ = false; |
return WEBRTC_VIDEO_CODEC_OK; |
} |
+ |
+const char* VP9DecoderImpl::ImplementationName() const { |
+ return "libvpx"; |
+} |
+ |
} // namespace webrtc |