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

Side by Side Diff: ppapi/api/private/pp_content_decryptor.idl

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: Address comments with the exception of renaming Deinit 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ppapi/api/private/ppb_content_decryptor_private.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 /** 6 /**
7 * The <code>PP_DecryptTrackingInfo</code> struct contains necessary information 7 * The <code>PP_DecryptTrackingInfo</code> struct contains necessary information
8 * that can be used to associate the decrypted block with a decrypt request 8 * that can be used to associate the decrypted block with a decrypt request
9 * and/or an input block. 9 * and/or an input block.
10 */ 10 */
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 */ 307 */
308 int32_t height; 308 int32_t height;
309 309
310 /** 310 /**
311 * Client-specified identifier for the associated video decoder initialization 311 * Client-specified identifier for the associated video decoder initialization
312 * request. By using this value, the client can associate a decoder 312 * request. By using this value, the client can associate a decoder
313 * initialization status response with an initialization request. 313 * initialization status response with an initialization request.
314 */ 314 */
315 uint32_t request_id; 315 uint32_t request_id;
316 }; 316 };
317
318 /**
319 * <code>PP_DecryptorStreamType</code> contains stream type constants.
320 */
321 [assert_size(4)]
322 enum PP_DecryptorStreamType {
323 PP_DECRYPTORSTREAMTYPE_AUDIO = 0,
324 PP_DECRYPTORSTREAMTYPE_VIDEO = 1
325 };
OLDNEW
« no previous file with comments | « no previous file | ppapi/api/private/ppb_content_decryptor_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698