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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 45053003: Add UMA metrics for ffmpeg color ranges. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add enum for colorrange Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« media/ffmpeg/ffmpeg_common.cc ('K') | « media/ffmpeg/ffmpeg_common.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 8b4fcd93b193e90ec6017953e19e387cb4afbb89..fefd865fce53dcc210a7422999c9f873cf39b499 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -6206,6 +6206,14 @@ other types of suffix sets.
<summary>Coded width of HTML5 video.</summary>
</histogram>
+<histogram name="Media.VideoColorRange">
+ <summary>Pixel format color range of HTML5 video.</summary>
+</histogram>
+
+<histogram name="Media.VideoPixelFormat">
+ <summary>Pixel format of HTML5 video.</summary>
+</histogram>
+
<histogram name="Media.VideoVisibleAspectRatio">
<summary>Visible aspect ratio of HTML5 video.</summary>
</histogram>
@@ -22642,6 +22650,14 @@ other types of suffix sets.
<int value="1950507339" label="TAK"/>
</enum>
+<enum name="FFmpegColorRanges" type="int">
+ <int value="0" label="UNSPECIFIED"/>
+ <int value="1" label="MPEG"/>
+ <int value="2" label="JPEG"/>
+</enum>
+
+<enum name="FFmpegPixelFormats" type="int"/>
+
<enum name="FileDialogType" type="int">
<int value="0" label="Select folder"/>
<int value="1" label="Save as file"/>
« media/ffmpeg/ffmpeg_common.cc ('K') | « media/ffmpeg/ffmpeg_common.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698