| 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 836a131648718b92ba21f60ca25f4dd55bd4b6a4..738fa59afd82b69aa3865b762d532da0a11c0312 100644
|
| --- a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
|
| +++ b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
|
| @@ -608,6 +608,10 @@ int VP9EncoderImpl::RegisterEncodeCompleteCallback(
|
| return WEBRTC_VIDEO_CODEC_OK;
|
| }
|
|
|
| +const char* VP9EncoderImpl::ImplementationName() const {
|
| + return "libvpx";
|
| +}
|
| +
|
| VP9Decoder* VP9Decoder::Create() {
|
| return new VP9DecoderImpl();
|
| }
|
| @@ -781,4 +785,9 @@ int VP9DecoderImpl::Release() {
|
| inited_ = false;
|
| return WEBRTC_VIDEO_CODEC_OK;
|
| }
|
| +
|
| +const char* VP9DecoderImpl::ImplementationName() const {
|
| + return "libvpx";
|
| +}
|
| +
|
| } // namespace webrtc
|
|
|