| Index: content/renderer/media/gpu/rtc_video_decoder.cc
|
| diff --git a/content/renderer/media/gpu/rtc_video_decoder.cc b/content/renderer/media/gpu/rtc_video_decoder.cc
|
| index 01c136c11d2846202f87455e018205c51cd0318f..fe63ae408be6994352e3a2cdc0c7eaf0f66ef6fc 100644
|
| --- a/content/renderer/media/gpu/rtc_video_decoder.cc
|
| +++ b/content/renderer/media/gpu/rtc_video_decoder.cc
|
| @@ -745,7 +745,7 @@ void RTCVideoDecoder::CreateVDA(media::VideoCodecProfile profile,
|
| DCheckGpuVideoAcceleratorFactoriesTaskRunnerIsCurrent();
|
|
|
| if (!IsProfileSupported(profile)) {
|
| - DVLOG(1) << "Unsupported profile " << GetProfileName(profile);
|
| + LOG(ERROR) << "Unsupported profile " << GetProfileName(profile);
|
| } else {
|
| vda_ = factories_->CreateVideoDecodeAccelerator();
|
|
|
| @@ -753,6 +753,7 @@ void RTCVideoDecoder::CreateVDA(media::VideoCodecProfile profile,
|
| if (vda_ && !vda_->Initialize(config, this))
|
| vda_.release()->Destroy();
|
| vda_codec_profile_ = profile;
|
| + LOG(ERROR) << "Unsupported profile " << GetProfileName(profile);
|
| }
|
|
|
| if (waiter)
|
|
|