Home
last modified time | relevance | path

Searched refs:inputp (Results 1 - 11 of 11) sorted by relevance

/third_party/ffmpeg/libavfilter/
H A Dvf_mergeplanes.c211 InputParam *inputp = &inputsp[i]; in config_output() local
229 inputp->planewidth[1] = in config_output()
230 inputp->planewidth[2] = AV_CEIL_RSHIFT(((indesc->comp[1].depth > 8) + 1) * inlink->w, indesc->log2_chroma_w); in config_output()
231 inputp->planewidth[0] = in config_output()
232 inputp->planewidth[3] = ((indesc->comp[0].depth > 8) + 1) * inlink->w; in config_output()
233 inputp->planeheight[1] = in config_output()
234 inputp->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, indesc->log2_chroma_h); in config_output()
235 inputp->planeheight[0] = in config_output()
236 inputp->planeheight[3] = inlink->h; in config_output()
237 inputp in config_output()
251 InputParam *inputp = &inputsp[input]; config_output() local
[all...]
/third_party/alsa-lib/src/
H A Dinput.c171 * \param inputp The function puts the pointer to the new input object
172 * at the address specified by \p inputp.
179 int snd_input_stdio_attach(snd_input_t **inputp, FILE *fp, int _close) in snd_input_stdio_attach() argument
183 assert(inputp && fp); in snd_input_stdio_attach()
197 *inputp = input; in snd_input_stdio_attach()
203 * \param inputp The functions puts the pointer to the new input object
204 * at the address specified by \p inputp.
209 int snd_input_stdio_open(snd_input_t **inputp, const char *file, const char *mode) in snd_input_stdio_open() argument
217 err = snd_input_stdio_attach(inputp, fp, 1); in snd_input_stdio_open()
297 * \param inputp Th
306 snd_input_buffer_open(snd_input_t **inputp, const char *buf, ssize_t size) snd_input_buffer_open() argument
[all...]
H A Dconf.c624 * param inputp - The functions puts the pointer to the new input object
625 * at the address specified by \p inputp.
638 static int input_stdio_open(snd_input_t **inputp, const char *file, in input_stdio_open() argument
647 return snd_input_stdio_open(inputp, file, "r"); in input_stdio_open()
660 err = snd_input_stdio_open(inputp, full_path, "r"); in input_stdio_open()
/third_party/alsa-lib/src/rawmidi/
H A Drawmidi_virt.c311 int snd_rawmidi_virtual_open(snd_rawmidi_t **inputp, snd_rawmidi_t **outputp, in snd_rawmidi_virtual_open() argument
320 if (inputp) in snd_rawmidi_virtual_open()
321 *inputp = 0; in snd_rawmidi_virtual_open()
338 if (inputp) { in snd_rawmidi_virtual_open()
356 *inputp = rmidi; in snd_rawmidi_virtual_open()
389 if (inputp) in snd_rawmidi_virtual_open()
390 free(*inputp); in snd_rawmidi_virtual_open()
397 int _snd_rawmidi_virtual_open(snd_rawmidi_t **inputp, snd_rawmidi_t **outputp, in _snd_rawmidi_virtual_open() argument
431 if (inputp) in _snd_rawmidi_virtual_open()
450 if (inputp) in _snd_rawmidi_virtual_open()
[all...]
H A Drawmidi.c172 static int snd_rawmidi_open_conf(snd_rawmidi_t **inputp, snd_rawmidi_t **outputp, in snd_rawmidi_open_conf() argument
261 err = open_func(inputp, outputp, name, rawmidi_root, rawmidi_conf, mode); in snd_rawmidi_open_conf()
264 if (inputp) { in snd_rawmidi_open_conf()
265 (*inputp)->open_func = open_func; in snd_rawmidi_open_conf()
266 snd_rawmidi_params_default(*inputp, &params); in snd_rawmidi_open_conf()
267 err = snd_rawmidi_params(*inputp, &params); in snd_rawmidi_open_conf()
286 static int snd_rawmidi_open_noupdate(snd_rawmidi_t **inputp, snd_rawmidi_t **outputp, in snd_rawmidi_open_noupdate() argument
296 err = snd_rawmidi_open_conf(inputp, outputp, name, root, rawmidi_conf, mode); in snd_rawmidi_open_noupdate()
303 * \param inputp Returned input handle (NULL if not wanted)
312 int snd_rawmidi_open(snd_rawmidi_t **inputp, snd_rawmidi_ argument
345 snd_rawmidi_open_lconf(snd_rawmidi_t **inputp, snd_rawmidi_t **outputp, const char *name, int mode, snd_config_t *lconf) snd_rawmidi_open_lconf() argument
[all...]
H A Drawmidi_hw.c315 int snd_rawmidi_hw_open(snd_rawmidi_t **inputp, snd_rawmidi_t **outputp, in snd_rawmidi_hw_open() argument
332 if (inputp) in snd_rawmidi_hw_open()
333 *inputp = NULL; in snd_rawmidi_hw_open()
336 if (!inputp && !outputp) in snd_rawmidi_hw_open()
357 if (!inputp) in snd_rawmidi_hw_open()
431 if (inputp) { in snd_rawmidi_hw_open()
445 *inputp = rmidi; in snd_rawmidi_hw_open()
468 if (inputp) in snd_rawmidi_hw_open()
469 free(*inputp); in snd_rawmidi_hw_open()
475 int _snd_rawmidi_hw_open(snd_rawmidi_t **inputp, snd_rawmidi_ argument
[all...]
H A Dump.c26 * \param inputp Returned input handle (NULL if not wanted)
35 int snd_ump_open(snd_ump_t **inputp, snd_ump_t **outputp, const char *name, in snd_ump_open() argument
41 if (inputp) in snd_ump_open()
42 *inputp = NULL; in snd_ump_open()
45 if (!inputp && !outputp) in snd_ump_open()
49 if (inputp) { in snd_ump_open()
78 if (inputp) in snd_ump_open()
79 *inputp = input; in snd_ump_open()
H A Drawmidi_local.h62 int snd_rawmidi_virtual_open(snd_rawmidi_t **inputp, snd_rawmidi_t **outputp,
/third_party/alsa-lib/include/
H A Dinput.h66 int snd_input_stdio_open(snd_input_t **inputp, const char *file, const char *mode);
67 int snd_input_stdio_attach(snd_input_t **inputp, FILE *fp, int _close);
68 int snd_input_buffer_open(snd_input_t **inputp, const char *buffer, ssize_t size);
H A Dump.h23 int snd_ump_open(snd_ump_t **inputp, snd_ump_t **outputp, const char *name, int mode);
/third_party/alsa-utils/amidi/
H A Damidi.c58 static snd_rawmidi_t *input, **inputp; variable
613 inputp = &input; in main()
615 inputp = NULL; in main()
621 if ((err = snd_rawmidi_open(inputp, outputp, port_name, SND_RAWMIDI_NONBLOCK)) < 0) { in main()
626 if (inputp) in main()
647 if (inputp) { in main()
755 if (inputp) in main()

Completed in 13 milliseconds