| Index: webrtc/video/video_decoder.cc
|
| diff --git a/webrtc/video/video_decoder.cc b/webrtc/video/video_decoder.cc
|
| index 602799e075baf9253da968ac52eb1ab5090def04..5bf503cd80242632bc57414e412ac62fc653579e 100644
|
| --- a/webrtc/video/video_decoder.cc
|
| +++ b/webrtc/video/video_decoder.cc
|
| @@ -25,6 +25,7 @@ VideoDecoder* VideoDecoder::Create(VideoDecoder::DecoderType codec_type) {
|
| case kVp8:
|
| return VP8Decoder::Create();
|
| case kVp9:
|
| + RTC_DCHECK(VP9Decoder::IsSupported());
|
| return VP9Decoder::Create();
|
| case kUnsupportedCodec:
|
| LOG(LS_ERROR) << "Creating NullVideoDecoder for unsupported codec.";
|
|
|