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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 }; |
OLD | NEW |