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

Unified Diff: media/ffmpeg/ffmpeg_common.cc

Issue 148553003: Clean up histogram'd media enum max values. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment to ignore violations of PRESUBMIT. Created 6 years, 10 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/ffmpeg/ffmpeg_common.cc
diff --git a/media/ffmpeg/ffmpeg_common.cc b/media/ffmpeg/ffmpeg_common.cc
index 6e7bd155cd80d9f103cfbd7670e8e5381263cd3e..371193b62abebbf992767e4a5f5a82f33cef7d42 100644
--- a/media/ffmpeg/ffmpeg_common.cc
+++ b/media/ffmpeg/ffmpeg_common.cc
@@ -391,7 +391,7 @@ void AVStreamToVideoDecoderConfig(
if (record_stats) {
UMA_HISTOGRAM_ENUMERATION("Media.VideoColorRange",
stream->codec->color_range,
- AVCOL_RANGE_NB);
+ AVCOL_RANGE_NB); // PRESUBMIT_IGNORE_UMA_MAX
Ami GONE FROM CHROMIUM 2014/02/12 20:26:48 NOTE why IGNORE (like the other comment)
}
VideoFrame::Format format = PixelFormatToVideoFormat(stream->codec->pix_fmt);

Powered by Google App Engine
This is Rietveld 408576698