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

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: 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 unified diff | Download patch | Annotate | Revision Log
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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 /** 253 /**
254 * Height of the video frame, in pixels. 254 * Height of the video frame, in pixels.
255 */ 255 */
256 int32_t height; 256 int32_t height;
257 257
258 /** 258 /**
259 * Information needed by the client to track the decrypted frame. 259 * Information needed by the client to track the decrypted frame.
260 */ 260 */
261 PP_DecryptTrackingInfo tracking_info; 261 PP_DecryptTrackingInfo tracking_info;
262 }; 262 };
263
264 /**
265 * <code>PP_StreamType</code> contains stream type constants.
266 */
267 [assert_size(4)]
268 enum PP_StreamType {
brettw 2012/10/11 20:53:43 Can you give this struct (and the defines below) a
Tom Finegan 2012/10/12 05:01:56 Done.
269 PP_STREAMTYPE_UNKNOWN = 0,
270 PP_STREAMTYPE_AUDIO = 1,
271 PP_STREAMTYPE_VIDEO = 2
272 };
OLDNEW
« no previous file with comments | « no previous file | ppapi/api/private/ppb_content_decryptor_private.idl » ('j') | ppapi/c/private/ppp_content_decryptor_private.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698