| Index: ppapi/c/private/ppb_content_decryptor_private.h
|
| diff --git a/ppapi/c/private/ppb_content_decryptor_private.h b/ppapi/c/private/ppb_content_decryptor_private.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9381b91772422c56dfd0eae0aca469fe666a7c8c
|
| --- /dev/null
|
| +++ b/ppapi/c/private/ppb_content_decryptor_private.h
|
| @@ -0,0 +1,193 @@
|
| +/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file.
|
| + */
|
| +
|
| +/* From private/ppb_content_decryptor_private.idl,
|
| + * modified Fri Aug 10 07:56:59 2012.
|
| + */
|
| +
|
| +#ifndef PPAPI_C_PRIVATE_PPB_CONTENT_DECRYPTOR_PRIVATE_H_
|
| +#define PPAPI_C_PRIVATE_PPB_CONTENT_DECRYPTOR_PRIVATE_H_
|
| +
|
| +#include "ppapi/c/pp_bool.h"
|
| +#include "ppapi/c/pp_instance.h"
|
| +#include "ppapi/c/pp_macros.h"
|
| +#include "ppapi/c/pp_resource.h"
|
| +#include "ppapi/c/pp_stdint.h"
|
| +#include "ppapi/c/pp_var.h"
|
| +
|
| +#define PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_1 \
|
| + "PPB_ContentDecryptor_Private;0.1"
|
| +#define PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE \
|
| + PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_1
|
| +
|
| +/**
|
| + * @file
|
| + * This file defines the <code>PPB_ContentDecryptor_Private</code>
|
| + * interface.
|
| + */
|
| +
|
| +
|
| +/**
|
| + * @addtogroup Interfaces
|
| + * @{
|
| + */
|
| +/**
|
| + * <code>PPB_ContentDecryptor_Private</code> structure contains the function
|
| + * pointers the browser MUST implement to support plugins implementing the
|
| + * <code>PPP_ContentDecryptor_Private</code> interface. This interface provides
|
| + * browser side support for v0.1 of the proposed Encrypted Media Extensions:
|
| + * http://goo.gl/rbdnR
|
| + */
|
| +struct PPB_ContentDecryptor_Private_0_1 {
|
| + /**
|
| + * The decryptor requires a key that has not been provided.
|
| + *
|
| + * Sent when the decryptor encounters encrypted content, but it does not have
|
| + * the key required to decrypt the data. The plugin will call this method in
|
| + * response to a call to a decrypt method on the
|
| + * <code>PPP_ContentDecryptor_Private<code> interface, In response, the
|
| + * application must provide a key to the decryptor plugin by calling
|
| + * <code>AddKey()</code> on the <code>PPP_ContentDecryptor_Private<code>
|
| + * interface.
|
| + *
|
| + * @param[in] key_system A <code>PP_Var</code> of type
|
| + * <code>PP_VARTYPE_STRING</code> containing the name of the key system.
|
| + *
|
| + * @param[in] session_id A <code>PP_Var</code> of type
|
| + * <code>PP_VARTYPE_STRING</code> containing the session ID.
|
| + *
|
| + * @param[in] init_data A <code>PP_Var</code> of type
|
| + * <code>PP_VARTYPE_ARRAYBUFFER</code> containing content specific
|
| + * initialization data.
|
| + */
|
| + void (*NeedKey)(PP_Instance instance,
|
| + struct PP_Var key_system,
|
| + struct PP_Var session_id,
|
| + struct PP_Var init_data);
|
| + /**
|
| + * A key has been added as the result of a call to the <code>AddKey()</code>
|
| + * method on the <code>PPP_ContentDecryptor_Private</code> interface, and
|
| + * decryption of content can proceed.
|
| + *
|
| + * Note: the above describes the most simple case. Depending on the key
|
| + * system, a series of <code>KeyMessage()</code> calls with the application
|
| + * providing more data via additional calls to <code>AddKey()</code> could be
|
| + * required. <code>KeyAdded()</code> is sent once the sequence is completed,
|
| + * and the decryptor plugin is ready to begin decryption of data.
|
| + *
|
| + * @param[in] key_system A <code>PP_Var</code> of type
|
| + * <code>PP_VARTYPE_STRING</code> containing the name of the key system.
|
| + *
|
| + * @param[in] session_id A <code>PP_Var</code> of type
|
| + * <code>PP_VARTYPE_STRING</code> containing the session ID.
|
| + */
|
| + void (*KeyAdded)(PP_Instance instance,
|
| + struct PP_Var key_system,
|
| + struct PP_Var session_id);
|
| + /**
|
| + * A message or request has been generated by or for key_system, and needs to
|
| + * be sent to a key server.
|
| + *
|
| + * For example, in response to successful key request generation resulting
|
| + * from a call to the <code>GenerateKeyRequest()</code> method on the
|
| + * <code>PPP_ContentDecryptor_Private</code> interface, the decryptor will
|
| + * send a key message with the session ID.
|
| + *
|
| + * Note that <code>KeyMessage()</code> can be used for purposes other than
|
| + * responses to <code>GenerateKeyRequest()</code> calls. Of note is the text
|
| + * in the comment for <code>KeyAdded()</code>, which describes a sequence of
|
| + * <code>AddKey()</code> and <code>KeyMessage()</code> calls required to
|
| + * prepare for decryption.
|
| + *
|
| + * @param[in] key_system A <code>PP_Var</code> of type
|
| + * <code>PP_VARTYPE_STRING</code> containing the name of the key system.
|
| + *
|
| + * @param[in] session_id A <code>PP_Var</code> of type
|
| + * <code>PP_VARTYPE_STRING</code> containing the session ID.
|
| + *
|
| + * @param[in] resource A <code>PP_Resource</code> corresponding to a
|
| + * <code>PPB_Buffer_Dev</code> resource that contains the message.
|
| + *
|
| + * @param[in] session_id A <code>PP_Var</code> of type
|
| + * <code>PP_VARTYPE_STRING</code> containing the default URL for key system.
|
| + */
|
| + void (*KeyMessage)(PP_Instance instance,
|
| + struct PP_Var key_system,
|
| + struct PP_Var session_id,
|
| + PP_Resource message,
|
| + struct PP_Var default_url);
|
| + /**
|
| + * An error occurred in a <code>PPP_ContentDecryptor_Private</code> method,
|
| + * or within the plugin implementing the interface.
|
| + *
|
| + * @param[in] key_system A <code>PP_Var</code> of type
|
| + * <code>PP_VARTYPE_STRING</code> containing the name of the key system.
|
| + *
|
| + * @param[in] session_id A <code>PP_Var</code> of type
|
| + * <code>PP_VARTYPE_STRING</code> containing the session ID.
|
| + *
|
| + * @param[in] media_error A media stack error code.
|
| + *
|
| + * @param[in] system_error A system error code.
|
| + */
|
| + void (*KeyError)(PP_Instance instance,
|
| + struct PP_Var key_system,
|
| + struct PP_Var session_id,
|
| + int32_t media_error,
|
| + int32_t system_error);
|
| + /**
|
| + * Called after the <code>Decrypt()</code> method on the
|
| + * <code>PPP_ContentDecryptor_Private</code> interface completes to
|
| + * deliver decrypted_block to the browser.
|
| + *
|
| + * @param[in] resource A <code>PP_Resource</code> corresponding to a
|
| + * <code>PPB_Buffer_Dev</code> resource that contains a decrypted data
|
| + * block.
|
| + *
|
| + * @param[in] request_id A unique value the user agent can use to associate
|
| + * decrypted_block with a decrypt call.
|
| + */
|
| + void (*DeliverBlock)(PP_Instance instance,
|
| + PP_Resource decrypted_block,
|
| + uint64_t request_id);
|
| + /**
|
| + * Called after the <code>DecryptAndDecode</code> method on the
|
| + * <code>PPP_ContentDecryptor_Private</code> interface completes to
|
| + * deliver decrypted_frame to the browser.
|
| + *
|
| + * @param[in] resource A <code>PP_Resource</code> corresponding to a
|
| + * <code>PPB_Buffer_Dev</code> resource that contains a decrypted video
|
| + * frame.
|
| + *
|
| + * @param[in] request_id A unique value the user agent can use to associate
|
| + * decrypted_frame with a decrypt call.
|
| + */
|
| + void (*DeliverFrame)(PP_Instance instance,
|
| + PP_Resource decrypted_frame,
|
| + uint64_t request_id);
|
| + /**
|
| + * Called after the <code>DecryptAndDecode()</code> method on the
|
| + * <code>PPP_ContentDecryptor_Private</code> interface completes to
|
| + * deliver decrypted_samples to the browser.
|
| + *
|
| + * @param[in] resource A <code>PP_Resource</code> corresponding to a
|
| + * <code>PPB_Buffer_Dev</code> resource that contains a decrypted buffer
|
| + * of audio samples.
|
| + *
|
| + * @param[in] request_id A unique value the user agent can use to associate
|
| + * decrypted_samples with a decrypt call.
|
| + */
|
| + void (*DeliverSamples)(PP_Instance instance,
|
| + PP_Resource decrypted_samples,
|
| + uint64_t request_id);
|
| +};
|
| +
|
| +typedef struct PPB_ContentDecryptor_Private_0_1 PPB_ContentDecryptor_Private;
|
| +/**
|
| + * @}
|
| + */
|
| +
|
| +#endif /* PPAPI_C_PRIVATE_PPB_CONTENT_DECRYPTOR_PRIVATE_H_ */
|
| +
|
|
|