Lines Matching refs:outputp
180 * \param outputp The function puts the pointer to the new output object
181 * at the address specified by \p outputp.
188 int snd_output_stdio_attach(snd_output_t **outputp, FILE *fp, int _close)
192 assert(outputp && fp);
206 *outputp = output;
212 * \param outputp The function puts the pointer to the new output object
213 * at the address specified by \p outputp.
218 int snd_output_stdio_open(snd_output_t **outputp, const char *file, const char *mode)
226 err = snd_output_stdio_attach(outputp, fp, 1);
379 * \param outputp The function puts the pointer to the new output object
380 * at the address specified by \p outputp.
383 int snd_output_buffer_open(snd_output_t **outputp)
387 assert(outputp);
402 *outputp = output;