OLD | NEW |
1 /* Copyright (c) 2011 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 * This file defines the <code>PPB_VideoDecoder_Dev</code> interface. | 7 * This file defines the <code>PPB_VideoDecoder_Dev</code> interface. |
8 */ | 8 */ |
9 label Chrome { | 9 label Chrome { |
10 M14 = 0.1 | 10 M14 = 0.1 |
11 }; | 11 }; |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 * planes[1] - U plane, 2x2 subsampled | 137 * planes[1] - U plane, 2x2 subsampled |
138 * planes[2] - V plane, 2x2 subsampled | 138 * planes[2] - V plane, 2x2 subsampled |
139 * | 139 * |
140 * Return true if successful. | 140 * Return true if successful. |
141 */ | 141 */ |
142 PP_Bool UpdateContent( | 142 PP_Bool UpdateContent( |
143 [in] PP_Resource layer, | 143 [in] PP_Resource layer, |
144 [in] uint32_t no_of_planes, | 144 [in] uint32_t no_of_planes, |
145 [in, size_as=no_of_planes] mem_t[] planes); | 145 [in, size_as=no_of_planes] mem_t[] planes); |
146 }; | 146 }; |
OLD | NEW |