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

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: Log VideoFrame::Format, instead of ffmpeg's AvPixelFormat. 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..2c491efd00915eae25480f9574fae0af9fa7ab16 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" enum="FFmpegColorRanges">
+ <summary>Pixel format color range of HTML5 video.</summary>
+</histogram>
+
+<histogram name="Media.VideoPixelFormat" enum="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,12 @@ 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="FileDialogType" type="int">
<int value="0" label="Select folder"/>
<int value="1" label="Save as file"/>
@@ -27925,6 +27939,18 @@ other types of suffix sets.
<int value="12" label="VP9"/>
</enum>
+<enum name="VideoPixelFormat" type="int">
+ <int value="0" label="INVALID"/>
+ <int value="4" label="RGB32"/>
+ <int value="6" label="YV12"/>
+ <int value="7" label="YV16"/>
+ <int value="9" label="EMPTY"/>
+ <int value="11" label="I420"/>
+ <int value="12" label="NATIVE_TEXTURE"/>
+ <int value="13" label="HOLE"/>
+ <int value="14" label="YV12A"/>
+</enum>
+
<enum name="ViewFileType" type="int">
<int value="0" label="other"/>
<int value="1" label=".3ga"/>
« 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