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

Unified Diff: ppapi/api/private/pp_content_decryptor.idl

Issue 11023004: Update PPP side of Pepper CDM API to support video decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased, CQ'ing. Created 8 years, 2 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 | « no previous file | ppapi/api/private/ppp_content_decryptor_private.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/private/pp_content_decryptor.idl
diff --git a/ppapi/api/private/pp_content_decryptor.idl b/ppapi/api/private/pp_content_decryptor.idl
index 8fb33a5706ef7f4db2a4040d22903cec63c628c6..248b7356b2d29946e6c7b48f062ae3064d0d44f1 100644
--- a/ppapi/api/private/pp_content_decryptor.idl
+++ b/ppapi/api/private/pp_content_decryptor.idl
@@ -114,6 +114,60 @@ struct PP_EncryptedBlockInfo {
};
/**
+ * <code>PP_DecryptedFrameFormat</code> contains video frame formats.
+ */
+[assert_size(4)]
+enum PP_DecryptedFrameFormat {
+ PP_DECRYPTEDFRAMEFORMAT_UNKNOWN = 0,
+ PP_DECRYPTEDFRAMEFORMAT_EMPTY = 1,
+ PP_DECRYPTEDFRAMEFORMAT_YV12 = 2,
+ PP_DECRYPTEDFRAMEFORMAT_I420 = 3
+};
+
+/**
+ * <code>PP_VideoCodec</code> contains video codec type constants.
+ */
+[assert_size(4)]
+enum PP_VideoCodec {
+ PP_VIDEOCODEC_UNKNOWN = 0,
+ PP_VIDEOCODEC_VP8 = 1
+};
+
+/**
+ * <code>PP_EncryptedVideoFrameInfo</code> contains the information required
+ * to decrypt and decode a video frame.
+ * TODO(tomfinegan): Revisit necessity of including format information in this
+ * struct once we decide how to implement video decoder initialization.
+ */
+[assert_size(256)]
+struct PP_EncryptedVideoFrameInfo {
+ /**
+ * The decoded video frame format.
+ */
+ PP_DecryptedFrameFormat format;
+
+ /**
+ * The video frame codec type.
+ */
+ PP_VideoCodec codec;
+
+ /**
+ * Video frame width in pixels.
+ */
+ int32_t width;
+
+ /**
+ * Video frame height in pixels.
+ */
+ int32_t height;
+
+ /**
+ * Information required to decrypt the frame.
+ */
+ PP_EncryptedBlockInfo encryption_info;
+};
+
+/**
* The <code>PP_DecryptResult</code> enum contains decryption and decoding
* result constants.
*/
@@ -154,17 +208,6 @@ struct PP_DecryptedBlockInfo {
};
/**
- * <code>PP_DecryptedFrameFormat</code> contains video frame formats.
- */
-[assert_size(4)]
-enum PP_DecryptedFrameFormat {
- PP_DECRYPTEDFRAMEFORMAT_UNKNOWN = 0,
- PP_DECRYPTEDFRAMEFORMAT_EMPTY = 1,
- PP_DECRYPTEDFRAMEFORMAT_YV12 = 2,
- PP_DECRYPTEDFRAMEFORMAT_I420 = 3
-};
-
-/**
* <code>PP_DecryptedFramePlanes</code> provides YUV plane index values for
* accessing plane offsets stored in <code>PP_DecryptedFrameInfo</code>.
*/
« no previous file with comments | « no previous file | ppapi/api/private/ppp_content_decryptor_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698