Index: ppapi/api/ppb_audio.idl |
=================================================================== |
--- ppapi/api/ppb_audio.idl (revision 124481) |
+++ ppapi/api/ppb_audio.idl (working copy) |
@@ -25,7 +25,7 @@ |
/** |
* 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 |
+ * <a href="/native-client/{{pepperversion}}/devguide/coding/audio">Pepper |
* Audio API</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 |
@@ -33,7 +33,7 @@ |
* |
* <strong>Example: </strong> |
* |
- * <code> |
+ * @code |
* void audio_callback(void* sample_buffer, |
* uint32_t buffer_size_in_bytes, |
* void* user_data) { |
@@ -41,8 +41,8 @@ |
* } |
* |
* ...Assume the application has cached the audio configuration interface in |
- * <code>audio_config_interface</code> and the audio interface in |
- * <code>audio_interface</code>... |
+ * audio_config_interface and the audio interface in |
+ * audio_interface... |
* |
* uint32_t count = audio_config_interface->RecommendSampleFrameCount( |
* PP_AUDIOSAMPLERATE_44100, 4096); |
@@ -53,7 +53,7 @@ |
* audio_interface->StartPlayback(pp_audio); |
* |
* ...audio_callback() will now be periodically invoked on a separate thread... |
- * </code> |
+ * @endcode |
*/ |
interface PPB_Audio { |
/** |