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

Unified Diff: media/filters/ffmpeg_aac_bitstream_converter.cc

Issue 2518403004: media: Use __func__ instead of __FUNCTION__ (Closed)
Patch Set: rebase Created 4 years 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/filters/ffmpeg_aac_bitstream_converter.cc
diff --git a/media/filters/ffmpeg_aac_bitstream_converter.cc b/media/filters/ffmpeg_aac_bitstream_converter.cc
index c1d407d634f9a12afba8e7e56d77e4c9557381f6..0c84f485c2ee3b1c8f9beca21fe7b04892bca648 100644
--- a/media/filters/ffmpeg_aac_bitstream_converter.cc
+++ b/media/filters/ffmpeg_aac_bitstream_converter.cc
@@ -77,9 +77,8 @@ bool GenerateAdtsHeader(int codec,
hdr[2] |= (3 << 6);
break;
default:
- DLOG(ERROR) << "[" << __FUNCTION__ << "] "
- << "unsupported audio profile:"
- << audio_profile;
+ DLOG(ERROR) << "[" << __func__ << "] "
+ << "unsupported audio profile:" << audio_profile;
return false;
}
@@ -123,7 +122,7 @@ bool GenerateAdtsHeader(int codec,
hdr[3] |= (3 << 6);
break;
default:
- DLOG(ERROR) << "[" << __FUNCTION__ << "] "
+ DLOG(ERROR) << "[" << __func__ << "] "
<< "unsupported number of audio channels:"
<< channel_configuration;
return false;
« no previous file with comments | « media/filters/android/media_codec_audio_decoder.cc ('k') | media/filters/ffmpeg_h265_to_annex_b_bitstream_converter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698