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

Unified Diff: media/gpu/android_video_encode_accelerator.cc

Issue 2251993004: media/.../{android_,gpu_}video_encode_accelerator{,_host} cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
Index: media/gpu/android_video_encode_accelerator.cc
diff --git a/media/gpu/android_video_encode_accelerator.cc b/media/gpu/android_video_encode_accelerator.cc
index 62c320fc520444ad413a2402233a52ed5d8e7faa..afc391fb6227db01d911efcbde140f14a8ee49ed 100644
--- a/media/gpu/android_video_encode_accelerator.cc
+++ b/media/gpu/android_video_encode_accelerator.cc
@@ -140,9 +140,9 @@ bool AndroidVideoEncodeAccelerator::Initialize(
VideoCodecProfile output_profile,
uint32_t initial_bitrate,
Client* client) {
- DVLOG(3) << __PRETTY_FUNCTION__ << " format: " << format
+ DVLOG(3) << __func__ << " format: " << VideoPixelFormatToString(format)
<< ", input_visible_size: " << input_visible_size.ToString()
- << ", output_profile: " << output_profile
+ << ", output_profile: " << GetProfileName(output_profile)
<< ", initial_bitrate: " << initial_bitrate;
DCHECK(!media_codec_);
DCHECK(thread_checker_.CalledOnValidThread());

Powered by Google App Engine
This is Rietveld 408576698