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

Unified Diff: media/formats/mp4/avc.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/mp2t/es_parser_h264.cc ('k') | media/formats/mp4/box_definitions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/mp4/avc.cc
diff --git a/media/formats/mp4/avc.cc b/media/formats/mp4/avc.cc
index 5a3d605290e8131d1ae0c48cc6c96d7b9430dfea..2067e51539f697a3b02ffa95e4c3ea97a2129a5f 100644
--- a/media/formats/mp4/avc.cc
+++ b/media/formats/mp4/avc.cc
@@ -65,7 +65,7 @@ bool AVC::ConvertFrameToAnnexB(int length_size,
std::vector<uint8_t>* buffer,
std::vector<SubsampleEntry>* subsamples) {
RCHECK(length_size == 1 || length_size == 2 || length_size == 4);
- DVLOG(5) << __FUNCTION__ << " length_size=" << length_size
+ DVLOG(5) << __func__ << " length_size=" << length_size
<< " buffer->size()=" << buffer->size()
<< " subsamples=" << (subsamples ? subsamples->size() : 0);
@@ -184,7 +184,7 @@ bool AVC::IsValidAnnexB(const std::vector<uint8_t>& buffer,
bool AVC::IsValidAnnexB(const uint8_t* buffer,
size_t size,
const std::vector<SubsampleEntry>& subsamples) {
- DVLOG(3) << __FUNCTION__;
+ DVLOG(3) << __func__;
DCHECK(buffer);
if (size == 0)
« no previous file with comments | « media/formats/mp2t/es_parser_h264.cc ('k') | media/formats/mp4/box_definitions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698