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

Unified Diff: ppapi/c/private/pp_content_decryptor.h

Issue 11028087: Add decoder de-initialize and reset to the Pepper CDM API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renaming and generalizing done... 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
Index: ppapi/c/private/pp_content_decryptor.h
diff --git a/ppapi/c/private/pp_content_decryptor.h b/ppapi/c/private/pp_content_decryptor.h
index 8467e9f90f8899a3550ca4f2c70f4ca1656f9f4d..201af825ca7aa496f28aac3a132cdfb7a214b01c 100644
--- a/ppapi/c/private/pp_content_decryptor.h
+++ b/ppapi/c/private/pp_content_decryptor.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From private/pp_content_decryptor.idl modified Wed Oct 3 16:16:49 2012. */
+/* From private/pp_content_decryptor.idl modified Tue Oct 9 18:32:54 2012. */
#ifndef PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_
#define PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_
@@ -302,5 +302,22 @@ PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_DecryptedFrameInfo, 56);
* @}
*/
+/**
+ * @addtogroup Enums
+ * @{
+ */
+/**
+ * <code>PP_StreamType</code> contains stream type constants.
+ */
+typedef enum {
+ PP_STREAMTYPE_UNKNOWN = 0,
+ PP_STREAMTYPE_AUDIO = 1,
+ PP_STREAMTYPE_VIDEO = 2
+} PP_StreamType;
+PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_StreamType, 4);
+/**
+ * @}
+ */
+
#endif /* PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_ */

Powered by Google App Engine
This is Rietveld 408576698