| 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());
|
|
|