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

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

Issue 1154153003: Relanding 1143663007: VideoFrame: Separate Pixel Format from Storage Type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added NV12 support in CrOS Created 5 years, 7 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:
Download patch
« no previous file with comments | « media/video/gpu_memory_buffer_video_frame_pool.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 600c054a63fd5257aa6a4aa674072bd1dddb3e66..03787dea3acabb063b85b42931086dfd390888de 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -15812,6 +15812,9 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</histogram>
<histogram name="Media.VideoFormat" enum="VideoFormat">
+ <obsolete>
+ Replaced by Media.VideoFramePixelFormat 05/2015.
+ </obsolete>
<owner>mcasas@chromium.org</owner>
<summary>Pixel format used in HTML5 video. Emitted on video load.</summary>
</histogram>
@@ -15823,6 +15826,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Media.VideoFramePixelFormat" enum="VideoFramePixelFormat">
+ <owner>mcasas@chromium.org</owner>
+ <summary>Pixel format used in HTML5 video. Emitted on video load.</summary>
+</histogram>
+
<histogram name="Media.VideoPixelFormat" enum="VideoPixelFormat">
<obsolete>
Replaced by Media.VideoFormat 05/2015.
@@ -66558,6 +66566,9 @@ To add a new entry, add it with any value and run test to compute valid value.
</enum>
<enum name="VideoFormat" type="int">
+ <obsolete>
+ Deprecated as of 05/2015. Substituted by VideoFramePixelFormat.
+ </obsolete>
<int value="0" label="UNKNOWN"/>
<int value="1" label="YV12"/>
<int value="2" label="I420"/>
@@ -66576,6 +66587,18 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="2" label="HD Rec 709"/>
</enum>
+<enum name="VideoFramePixelFormat" type="int">
+ <int value="0" label="UNKNOWN"/>
+ <int value="1" label="YV12"/>
+ <int value="2" label="I420"/>
+ <int value="3" label="YV16"/>
+ <int value="4" label="YV12A"/>
+ <int value="5" label="YV24"/>
+ <int value="6" label="NV12 (Mac only)"/>
+ <int value="7" label="ARGB"/>
+ <int value="8" label="xRGB"/>
+</enum>
+
<enum name="VideoPixelFormat" type="int">
<obsolete>
Deprecated as of 05/2015. Substituted by VideoFormat.
« no previous file with comments | « media/video/gpu_memory_buffer_video_frame_pool.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698