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

Side by Side Diff: ppapi/c/dev/ppb_video_layer_dev.h

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 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 | « ppapi/c/dev/ppb_video_decoder_dev.h ('k') | ppapi/c/dev/ppb_websocket_dev.h » ('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) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 /* From dev/ppb_video_layer_dev.idl modified Tue Nov 29 11:43:36 2011. */ 6 /* From dev/ppb_video_layer_dev.idl modified Wed Dec 14 18:08:00 2011. */
7 7
8 #ifndef PPAPI_C_DEV_PPB_VIDEO_LAYER_DEV_H_ 8 #ifndef PPAPI_C_DEV_PPB_VIDEO_LAYER_DEV_H_
9 #define PPAPI_C_DEV_PPB_VIDEO_LAYER_DEV_H_ 9 #define PPAPI_C_DEV_PPB_VIDEO_LAYER_DEV_H_
10 10
11 #include "ppapi/c/pp_bool.h" 11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_instance.h" 12 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/c/pp_macros.h" 13 #include "ppapi/c/pp_macros.h"
14 #include "ppapi/c/pp_point.h" 14 #include "ppapi/c/pp_point.h"
15 #include "ppapi/c/pp_rect.h" 15 #include "ppapi/c/pp_rect.h"
16 #include "ppapi/c/pp_resource.h" 16 #include "ppapi/c/pp_resource.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 * PPB_VideoLayer can be used in two modes: 76 * PPB_VideoLayer can be used in two modes:
77 * 77 *
78 * Software Decoding Mode 78 * Software Decoding Mode
79 * In this mode the video layer needs to be updated with system memory manually 79 * In this mode the video layer needs to be updated with system memory manually
80 * using UpdateContent(). 80 * using UpdateContent().
81 * 81 *
82 * Hardware Decoding Mode 82 * Hardware Decoding Mode
83 * In this mode the content of the video layer is updated by a hardware video 83 * In this mode the content of the video layer is updated by a hardware video
84 * decoder. 84 * decoder.
85 */ 85 */
86 struct PPB_VideoLayer_Dev { 86 struct PPB_VideoLayer_Dev_0_1 {
87 /** 87 /**
88 * Creates a video layer. 88 * Creates a video layer.
89 */ 89 */
90 PP_Resource (*Create)(PP_Instance instance, PP_VideoLayerMode_Dev mode); 90 PP_Resource (*Create)(PP_Instance instance, PP_VideoLayerMode_Dev mode);
91 /** 91 /**
92 * Returns true if the input parameter is a video layer. 92 * Returns true if the input parameter is a video layer.
93 */ 93 */
94 PP_Bool (*IsVideoLayer)(PP_Resource layer); 94 PP_Bool (*IsVideoLayer)(PP_Resource layer);
95 /** 95 /**
96 * Set the pixel format of this video layer. By default it is RGBA. 96 * Set the pixel format of this video layer. By default it is RGBA.
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 * planes[0] - Y plane 146 * planes[0] - Y plane
147 * planes[1] - U plane, 2x2 subsampled 147 * planes[1] - U plane, 2x2 subsampled
148 * planes[2] - V plane, 2x2 subsampled 148 * planes[2] - V plane, 2x2 subsampled
149 * 149 *
150 * Return true if successful. 150 * Return true if successful.
151 */ 151 */
152 PP_Bool (*UpdateContent)(PP_Resource layer, 152 PP_Bool (*UpdateContent)(PP_Resource layer,
153 uint32_t no_of_planes, 153 uint32_t no_of_planes,
154 const void* planes[]); 154 const void* planes[]);
155 }; 155 };
156
157 typedef struct PPB_VideoLayer_Dev_0_1 PPB_VideoLayer_Dev;
156 /** 158 /**
157 * @} 159 * @}
158 */ 160 */
159 161
160 #endif /* PPAPI_C_DEV_PPB_VIDEO_LAYER_DEV_H_ */ 162 #endif /* PPAPI_C_DEV_PPB_VIDEO_LAYER_DEV_H_ */
161 163
OLDNEW
« no previous file with comments | « ppapi/c/dev/ppb_video_decoder_dev.h ('k') | ppapi/c/dev/ppb_websocket_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698