OLD | NEW |
---|---|
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 Loading... | |
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 }; | |
OLD | NEW |