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

Side by Side Diff: ppapi/c/ppb_audio.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/pp_var.h ('k') | ppapi/c/ppb_audio_config.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 ppb_audio.idl modified Mon Aug 29 10:11:34 2011. */ 6 /* From ppb_audio.idl modified Wed Oct 5 14:06:02 2011. */
7 7
8 #ifndef PPAPI_C_PPB_AUDIO_H_ 8 #ifndef PPAPI_C_PPB_AUDIO_H_
9 #define PPAPI_C_PPB_AUDIO_H_ 9 #define PPAPI_C_PPB_AUDIO_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_resource.h" 14 #include "ppapi/c/pp_resource.h"
15 #include "ppapi/c/pp_stdint.h" 15 #include "ppapi/c/pp_stdint.h"
16 16
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 * PP_AUDIOSAMPLERATE_44100, 4096); 71 * PP_AUDIOSAMPLERATE_44100, 4096);
72 * PP_Resource pp_audio_config = audio_config_interface->CreateStereo16Bit( 72 * PP_Resource pp_audio_config = audio_config_interface->CreateStereo16Bit(
73 * pp_instance, PP_AUDIOSAMPLERATE_44100, count); 73 * pp_instance, PP_AUDIOSAMPLERATE_44100, count);
74 * PP_Resource pp_audio = audio_interface->Create(pp_instance, pp_audio_config, 74 * PP_Resource pp_audio = audio_interface->Create(pp_instance, pp_audio_config,
75 * audio_callback, NULL); 75 * audio_callback, NULL);
76 * audio_interface->StartPlayback(pp_audio); 76 * audio_interface->StartPlayback(pp_audio);
77 * 77 *
78 * ...audio_callback() will now be periodically invoked on a separate thread... 78 * ...audio_callback() will now be periodically invoked on a separate thread...
79 * </code> 79 * </code>
80 */ 80 */
81 struct PPB_Audio { 81 struct PPB_Audio_1_0 {
82 /** 82 /**
83 * Create() creates an audio resource. No sound will be heard until 83 * Create() creates an audio resource. No sound will be heard until
84 * StartPlayback() is called. The callback is called with the buffer address 84 * StartPlayback() is called. The callback is called with the buffer address
85 * and given user data whenever the buffer needs to be filled. From within the 85 * and given user data whenever the buffer needs to be filled. From within the
86 * callback, you should not call <code>PPB_Audio</code> functions. The 86 * callback, you should not call <code>PPB_Audio</code> functions. The
87 * callback will be called on a different thread than the one which created 87 * callback will be called on a different thread than the one which created
88 * the interface. For performance-critical applications (i.e. low-latency 88 * the interface. For performance-critical applications (i.e. low-latency
89 * audio), the callback should avoid blocking or calling functions that can 89 * audio), the callback should avoid blocking or calling functions that can
90 * obtain locks, such as malloc. The layout and the size of the buffer passed 90 * obtain locks, such as malloc. The layout and the size of the buffer passed
91 * to the audio callback will be determined by the device configuration and is 91 * to the audio callback will be determined by the device configuration and is
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 * resource. 149 * resource.
150 * 150 *
151 * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if 151 * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if
152 * successful, otherwise <code>PP_FALSE</code>. Also returns 152 * successful, otherwise <code>PP_FALSE</code>. Also returns
153 * <code>PP_TRUE</code> (and is a no-op) if called while playback is already 153 * <code>PP_TRUE</code> (and is a no-op) if called while playback is already
154 * stopped. If a callback is in progress, StopPlayback() will block until the 154 * stopped. If a callback is in progress, StopPlayback() will block until the
155 * callback completes. 155 * callback completes.
156 */ 156 */
157 PP_Bool (*StopPlayback)(PP_Resource audio); 157 PP_Bool (*StopPlayback)(PP_Resource audio);
158 }; 158 };
159
160 typedef struct PPB_Audio_1_0 PPB_Audio;
159 /** 161 /**
160 * @} 162 * @}
161 */ 163 */
162 164
163 #endif /* PPAPI_C_PPB_AUDIO_H_ */ 165 #endif /* PPAPI_C_PPB_AUDIO_H_ */
164 166
OLDNEW
« no previous file with comments | « ppapi/c/pp_var.h ('k') | ppapi/c/ppb_audio_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698