Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Unified Diff: content/renderer/media/gpu/rtc_video_decoder.cc

Issue 2668293002: VPX HW encode using MediaFoundation
Patch Set: adding all Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/renderer/media/gpu/rtc_video_encoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « no previous file | content/renderer/media/gpu/rtc_video_encoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698