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

Unified Diff: include/libyuv/row.h

Issue 1429693006: rename yuv matrix constants to be more clear about what they are (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: git cl try Created 5 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.chromium ('k') | include/libyuv/version.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/libyuv/row.h
diff --git a/include/libyuv/row.h b/include/libyuv/row.h
index 08e1ff6425ab5f2c4bdac0fdaa4f7d69bc4102e7..4e02a212d9f82d1165bf52841cb2200a13fc5f42 100644
--- a/include/libyuv/row.h
+++ b/include/libyuv/row.h
@@ -447,14 +447,14 @@ struct YuvConstants {
#endif
// Conversion matrix for YUV to RGB
-extern const struct YuvConstants kYuvIConstants; // BT.601
-extern const struct YuvConstants kYuvJConstants; // JPeg color space
-extern const struct YuvConstants kYuvHConstants; // BT.709
-
-// Conversion matrix for YVU to BGR.
-extern const struct YuvConstants kYvuIConstants; // BT.601
-extern const struct YuvConstants kYvuJConstants; // JPeg color space
-extern const struct YuvConstants kYvuHConstants; // BT.709
+extern const struct YuvConstants kYuvI601Constants; // BT.601
+extern const struct YuvConstants kYuvJPEGConstants; // JPeg color space
+extern const struct YuvConstants kYuvH709Constants; // BT.709
+
+// Conversion matrix for YVU to BGR
+extern const struct YuvConstants kYvuI601Constants; // BT.601
+extern const struct YuvConstants kYvuJPEGConstants; // JPeg color space
+extern const struct YuvConstants kYvuH709Constants; // BT.709
#if defined(__APPLE__) || defined(__x86_64__) || defined(__llvm__)
#define OMITFP
« no previous file with comments | « README.chromium ('k') | include/libyuv/version.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698