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

Unified Diff: ppapi/api/pp_codecs.idl

Issue 336833003: Pepper: Add VP9 support to PPB_VideoDecoder API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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: ppapi/api/pp_codecs.idl
diff --git a/ppapi/api/pp_codecs.idl b/ppapi/api/pp_codecs.idl
index 8a7c0f7b9edd520feda45c1348c27528a9b3a0df..ecb61d0233182736e2432686e8915aa697f96707 100644
--- a/ppapi/api/pp_codecs.idl
+++ b/ppapi/api/pp_codecs.idl
@@ -19,7 +19,8 @@ enum PP_VideoProfile {
PP_VIDEOPROFILE_H264STEREOHIGH = 9,
PP_VIDEOPROFILE_H264MULTIVIEWHIGH = 10,
PP_VIDEOPROFILE_VP8MAIN = 11,
- PP_VIDEOPROFILE_MAX = PP_VIDEOPROFILE_VP8MAIN
+ PP_VIDEOPROFILE_VP9MAIN = 12,
+ PP_VIDEOPROFILE_MAX = PP_VIDEOPROFILE_VP9MAIN
};
/**
@@ -45,7 +46,7 @@ struct PP_VideoPicture {
* GL_TEXTURE_2D (normalized texture coordinates)
* GL_TEXTURE_RECTANGLE_ARB (dimension dependent texture coordinates)
*
- * The pixel format of the texture is GL_BGRA.
+ * The pixel format of the texture is GL_RGBA.
*/
uint32_t texture_target;

Powered by Google App Engine
This is Rietveld 408576698