Chromium Code Reviews| Index: ppapi/c/ppb_audio_config.h |
| =================================================================== |
| --- ppapi/c/ppb_audio_config.h (revision 97869) |
| +++ ppapi/c/ppb_audio_config.h (working copy) |
| @@ -3,7 +3,7 @@ |
| * found in the LICENSE file. |
| */ |
| -/* From ppb_audio_config.idl modified Wed Aug 17 11:16:34 2011. */ |
| +/* From ppb_audio_config.idl modified Tue Aug 23 14:00:50 2011. */ |
| #ifndef PPAPI_C_PPB_AUDIO_CONFIG_H_ |
| #define PPAPI_C_PPB_AUDIO_CONFIG_H_ |
| @@ -92,13 +92,14 @@ |
| * right channel sample. |
| * Data will always be in the native endian format of the platform. |
| * |
| - * @param[in] instance A <code>PP_Instance indentifying</code> one instance |
| + * @param[in] instance A <code>PP_Instance</code> identifying one instance |
| * of a module. |
| * @param[in] sample_rate A P<code>P_AudioSampleRate</code> which is either |
| * <code>PP_AUDIOSAMPLERATE_44100</code> or |
| * <code>PP_AUDIOSAMPLERATE_48000</code>. |
| * @param[in] sample_frame_count A <code>uint32_t</code> frame count returned |
| * from the <code>RecommendSampleFrameCount</code> function. |
| + * |
| * @return A <code>PP_Resource</code> containing the |
| * <code>PPB_Audio_Config</code> if successful or a null resource if the |
| * sample frame count or bit rate are not supported. |
| @@ -125,6 +126,7 @@ |
| * <code>PP_AUDIOSAMPLERATE_48000.</code> |
| * @param[in] requested_sample_frame_count A <code>uint_32t</code> requested |
| * frame count. |
| + * |
| * @return A <code>uint32_t</code> containing the recommended sample frame |
| * count if successful. |
| */ |
| @@ -135,9 +137,10 @@ |
| * IsAudioConfig() determines if the given resource is a |
| * <code>PPB_Audio_Config</code>. |
| * |
| - * @param[in] resource A <code>PP_Resource</code> containing the audio config |
| - * resource. |
| - * @return A <code>PP_BOOL</code> containing <code>PP_TRUE</code> if the given |
| + * @param[in] resource A <code>PP_Resource</code> corresponding to an audio |
| + * config resource. |
| + * |
| + * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if the given |
|
dmichael (off chromium)
2011/08/23 20:16:11
PP_TRUE->PP_True, PP_FALSE->PP_False (globally, ju
jond
2011/08/23 21:15:29
Done.
|
| * resource is an <code>AudioConfig</code> resource, otherwise |
| * <code>PP_FALSE</code>. |
| */ |
| @@ -146,8 +149,9 @@ |
| * GetSampleRate() returns the sample rate for the given |
| * <code>PPB_Audio_Config</code>. |
| * |
| - * @param[in] config A <code>PP_Resource</code> containing the |
| + * @param[in] config A <code>PP_Resource</code> corresponding to an |
| * <code>PPB_Audio_Config</code>. |
| + * |
| * @return A <code>PP_AudioSampleRate</code> containing sample rate or |
| * <code>PP_AUDIOSAMPLERATE_NONE</code> if the resource is invalid. |
| */ |
| @@ -156,12 +160,12 @@ |
| * GetSampleFrameCount() returns the sample frame count for the given |
| * <code>PPB_Audio_Config</code>. |
| * |
| - * @param[in] config A <code>PP_Resource</code> containing the audio config |
| - * resource. |
| + * @param[in] config A <code>PP_Resource</code> corresponding to an audio |
| + * config resource. |
| + * |
| * @return A <code>uint32_t</code> containing sample frame count or |
| * 0 if the resource is invalid. Refer to |
| - * <code>RecommendSampleFrameCount</code> for more information on sample |
| - * frame counts. |
| + * <code>RecommendSampleFrameCount</code> for more on sample frame counts. |
| */ |
| uint32_t (*GetSampleFrameCount)(PP_Resource config); |
| }; |