Home | History | Annotate | Download | only in audio

Lines Matching defs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
380 struct stub_stream_in *in;
383 in = (struct stub_stream_in *)calloc(1, sizeof(struct stub_stream_in));
384 if (!in)
387 in->stream.common.get_sample_rate = in_get_sample_rate;
388 in->stream.common.set_sample_rate = in_set_sample_rate;
389 in->stream.common.get_buffer_size = in_get_buffer_size;
390 in->stream.common.get_channels = in_get_channels;
391 in->stream.common.get_format = in_get_format;
392 in->stream.common.set_format = in_set_format;
393 in->stream.common.standby = in_standby;
394 in->stream.common.dump = in_dump;
395 in->stream.common.set_parameters = in_set_parameters;
396 in->stream.common.get_parameters = in_get_parameters;
397 in->stream.common.add_audio_effect = in_add_audio_effect;
398 in->stream.common.remove_audio_effect = in_remove_audio_effect;
399 in->stream.set_gain = in_set_gain;
400 in->stream.read = in_read;
401 in->stream.get_input_frames_lost = in_get_input_frames_lost;
403 *stream_in = &in->stream;
407 free(in);
413 struct audio_stream_in *in)