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

Unified Diff: ppapi/c/pp_codecs.h

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/c/pp_codecs.h
diff --git a/ppapi/c/pp_codecs.h b/ppapi/c/pp_codecs.h
index b98769e36a9b1d74139979bcb9dba0c5f57edc25..356a10bac4d23f4c2d7db55dac4ea4d4f09837dc 100644
--- a/ppapi/c/pp_codecs.h
+++ b/ppapi/c/pp_codecs.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From pp_codecs.idl modified Tue May 6 05:14:19 2014. */
+/* From pp_codecs.idl modified Tue Jun 10 13:32:45 2014. */
#ifndef PPAPI_C_PP_CODECS_H_
#define PPAPI_C_PP_CODECS_H_
@@ -35,7 +35,8 @@ typedef enum {
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
} PP_VideoProfile;
/**
* @}
@@ -66,7 +67,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