| 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 d5f83c4335dee6d999c368ab1c58808b84bc183b..750f7427cdd8a38d85ea93baa66ca49b5e1300b7 100644
|
| --- a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
|
| +++ b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
|
| @@ -47,6 +47,10 @@ int GetCpuSpeed(int width, int height) {
|
| #endif
|
| }
|
|
|
| +bool VP9Encoder::IsSupported() {
|
| + return true;
|
| +}
|
| +
|
| VP9Encoder* VP9Encoder::Create() {
|
| return new VP9EncoderImpl();
|
| }
|
| @@ -823,6 +827,10 @@ const char* VP9EncoderImpl::ImplementationName() const {
|
| return "libvpx";
|
| }
|
|
|
| +bool VP9Decoder::IsSupported() {
|
| + return true;
|
| +}
|
| +
|
| VP9Decoder* VP9Decoder::Create() {
|
| return new VP9DecoderImpl();
|
| }
|
|
|