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

Unified Diff: media/base/video_types.h

Issue 2370453003: 12-bit vp9 video support (Closed)
Patch Set: typO Created 4 years, 3 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
« no previous file with comments | « media/base/video_frame.cc ('k') | media/base/video_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/video_types.h
diff --git a/media/base/video_types.h b/media/base/video_types.h
index 7590b1b3a25d4e67a0018eda302f129861aa7cdd..a79f3e4c1793cf0a4d54eae14ae2c17514cdcf9e 100644
--- a/media/base/video_types.h
+++ b/media/base/video_types.h
@@ -54,9 +54,13 @@ enum VideoPixelFormat {
PIXEL_FORMAT_YUV444P9 = 20,
PIXEL_FORMAT_YUV444P10 = 21,
+ PIXEL_FORMAT_YUV420P12 = 22,
+ PIXEL_FORMAT_YUV422P12 = 23,
+ PIXEL_FORMAT_YUV444P12 = 24,
+
// Please update UMA histogram enumeration when adding new formats here.
PIXEL_FORMAT_MAX =
- PIXEL_FORMAT_YUV444P10, // Must always be equal to largest entry logged.
+ PIXEL_FORMAT_YUV444P12, // Must always be equal to largest entry logged.
};
// Color space or color range used for the pixels.
« no previous file with comments | « media/base/video_frame.cc ('k') | media/base/video_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698