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

Unified Diff: media/formats/mp2t/es_parser_h264.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
« no previous file with comments | « media/formats/common/stream_parser_test_base.cc ('k') | media/formats/mp4/avc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/mp2t/es_parser_h264.cc
diff --git a/media/formats/mp2t/es_parser_h264.cc b/media/formats/mp2t/es_parser_h264.cc
index 805a3a0497027e34790e7e2815379767e0af2abf..815892222ad8fd4398bf23ee30aec5cd32c1f289 100644
--- a/media/formats/mp2t/es_parser_h264.cc
+++ b/media/formats/mp2t/es_parser_h264.cc
@@ -40,7 +40,7 @@ EsParserH264::~EsParserH264() {
}
void EsParserH264::Flush() {
- DVLOG(1) << __FUNCTION__;
+ DVLOG(1) << __func__;
if (!FindAUD(&current_access_unit_pos_))
return;
@@ -54,7 +54,7 @@ void EsParserH264::Flush() {
}
void EsParserH264::ResetInternal() {
- DVLOG(1) << __FUNCTION__;
+ DVLOG(1) << __func__;
h264_parser_.reset(new H264Parser());
current_access_unit_pos_ = 0;
next_access_unit_pos_ = 0;
« no previous file with comments | « media/formats/common/stream_parser_test_base.cc ('k') | media/formats/mp4/avc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698