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