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

Unified Diff: media/base/yuv_convert.h

Issue 591313008: Add support for Rec709 color space videos in software YUV convert path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
Index: media/base/yuv_convert.h
diff --git a/media/base/yuv_convert.h b/media/base/yuv_convert.h
index cf13edb17ab285ff5e74e52e2a26fce2f7a5cdff..8bb68831eac3b9b4b15c9d352d334d952b376059 100644
--- a/media/base/yuv_convert.h
+++ b/media/base/yuv_convert.h
@@ -27,6 +27,7 @@ enum YUVType {
YV16 = 0, // YV16 is half width and full height chroma channels.
YV12 = 1, // YV12 is half width and half height chroma channels.
YV12J = 2, // YV12J is the same as YV12, but in JPEG color range.
+ YV12HD = 3, // YV12HD is the same as YV12, but in 'HD' Rec709 color space.
};
// Get the appropriate value to bitshift by for vertical indices.

Powered by Google App Engine
This is Rietveld 408576698