Lines Matching defs:input_device
52 "input_device=<device number for the source> "
102 "input_device",
576 unsigned int input_device;
595 pa_log("device and device_name are no longer supported. Please use input_device, input_device_name, output_device and output_device_name.");
635 /* Set the input_device to be opened. If set input_device_name is used,
636 * else input_device if set and lastly WAVE_MAPPER is the default */
637 input_device = WAVE_MAPPER;
638 if (pa_modargs_get_value_u32(ma, "input_device", &input_device) < 0) {
639 pa_log("failed to parse input_device argument");
650 input_device = i;
652 pa_log("input_device not found: %s", input_device_name);
656 if (waveInGetDevCaps(input_device, &pwic, sizeof(pwic)) == MMSYSERR_NOERROR)
681 result = waveInOpen(&hwi, input_device, &wf, 0, 0, WAVE_FORMAT_DIRECT | WAVE_FORMAT_QUERY);
686 result = waveInOpen(&hwi, input_device, &wf, (DWORD_PTR) chunk_ready_cb, (DWORD_PTR) u, CALLBACK_FUNCTION);