summaryrefslogtreecommitdiffstats
path: root/ppapi/c/ppb_audio.h
diff options
context:
space:
mode:
authorjond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-28 17:02:59 +0000
committerjond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-28 17:02:59 +0000
commite16d4401b81612b651077c569ad61990f6b420d1 (patch)
tree7db435956c38b329b4fd31e09a99e1c81f5d3861 /ppapi/c/ppb_audio.h
parent9cb3b066d2078163a51611fbf215af46ce46b97a (diff)
downloadchromium_src-e16d4401b81612b651077c569ad61990f6b420d1.zip
chromium_src-e16d4401b81612b651077c569ad61990f6b420d1.tar.gz
chromium_src-e16d4401b81612b651077c569ad61990f6b420d1.tar.bz2
pp_stdint.h: moved else, include, and endif
ppb.h: changed to relative url ppb_audio.h: changed to relative url ppb_audio_config.h: changed to relative url ppb_image_data.h: changed in/out to in,out (correct syntax) ppb_url_loader.h: removed a bunch of </li> tags that were unneeded and causing warnings, also rename parm to param and in/out to in,out ppp_instance.h: escaped some <embed> tags so they didn't confuse Doxygen. Review URL: http://codereview.chromium.org/7248017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90782 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/ppb_audio.h')
-rw-r--r--ppapi/c/ppb_audio.h24
1 files changed, 13 insertions, 11 deletions
diff --git a/ppapi/c/ppb_audio.h b/ppapi/c/ppb_audio.h
index fdc882b..6fb2978 100644
--- a/ppapi/c/ppb_audio.h
+++ b/ppapi/c/ppb_audio.h
@@ -16,10 +16,8 @@
/**
* @file
- * This file defines the PPB_Audio interface, which provides realtime stereo
- * audio streaming capabilities. Please refer to the
- * <a href="http://code.google.com/chrome/nativeclient/docs/audio.html">Pepper
- * Audio API Code Walkthrough</a> for information on using this interface.
+ * This file defines the <code>PPB_Audio</code> interface, which provides
+ * realtime stereo audio streaming capabilities.
*/
/**
@@ -28,9 +26,10 @@
*/
/**
- * PPB_Audio_Callback defines the type of an audio callback function used to
- * fill the audio buffer with data. Please see the Create() function in the
- * PPB_Audio interface for more details on this callback.
+ * <code>PPB_Audio_Callback</code> defines the type of an audio callback
+ * function used to fill the audio buffer with data. Please see the
+ * <code>Create()</code> function in the <code>PPB_Audio</code> interface for
+ * more details on this callback.
*/
typedef void (*PPB_Audio_Callback)(void* sample_buffer,
uint32_t buffer_size_in_bytes,
@@ -44,12 +43,15 @@ typedef void (*PPB_Audio_Callback)(void* sample_buffer,
* @{
*/
/**
- * The PPB_Audio interface contains pointers to several functions for handling
- * audio resources. Please see descriptions for each PPB_Audio and
- * PPB_AudioConfig function for more details.
+ * The <code>PPB_Audio</code> interface contains pointers to several functions
+ * for handling audio resources. Please refer to the
+ * <a href="/chrome/nativeclient/docs/audio.html">Pepper
+ * Audio API Code Walkthrough</a> for information on using this interface.
+ * Please see descriptions for each <code>PPB_Audio</code> and
+ * <code>PPB_AudioConfig</code> function for more details.
*
* A C example using PPB_Audio and PPB_AudioConfig:
- *
+ * @code
* void audio_callback(void* sample_buffer,
* uint32_t buffer_size_in_bytes,
* void* user_data) {