Lines Matching refs:in

3  * found in the LICENSE file.
8 * receiving audio samples from a MediaStream audio track in the browser.
39 * The sample rate of audio data in buffers. The attribute value is a
45 * The sample size of audio data in buffers in bytes. The attribute value is a
51 * The number of channels in audio buffers.
58 * The duration of an audio buffer in milliseconds.
70 * @param[in] resource The <code>PP_Resource</code> to test.
76 PP_Bool IsMediaStreamAudioTrack([in] PP_Resource resource);
97 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audio
99 * @param[in] attrib_list A list of attribute name-value pairs in which each
103 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upon
108 int32_t Configure([in] PP_Resource audio_track,
109 [in] int32_t[] attrib_list,
110 [in] PP_CompletionCallback callback);
115 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audio
117 * @param[in] attrib A <code>PP_MediaStreamAudioTrack_Attrib</code> for
124 int32_t GetAttrib([in] PP_Resource audio_track,
125 [in] PP_MediaStreamAudioTrack_Attrib attrib,
131 * @param[in] audio_track The <code>PP_Resource</code> to check.
136 PP_Var GetId([in] PP_Resource audio_track);
143 * @param[in] audio_track The <code>PP_Resource</code> to check.
149 PP_Bool HasEnded([in] PP_Resource audio_track);
157 * If there are no audio data in the input buffer,
162 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audio
166 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upon
171 int32_t GetBuffer([in] PP_Resource audio_track,
173 [in] PP_CompletionCallback callback);
181 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audio
183 * @param[in] buffer A <code>PP_Resource</code> corresponding to
188 int32_t RecycleBuffer([in] PP_Resource audio_track,
189 [in] PP_Resource buffer);
196 * @param[in] audio_track A <code>PP_Resource</code> corresponding to a
199 void Close([in] PP_Resource audio_track);