Home | History | Annotate | Download | only in tinyalsa

Lines Matching defs:config

215     struct pcm_config config;
221 memset(&config, 0, sizeof(config));
222 config.channels = channels;
223 config.rate = rate;
224 config.period_size = period_size;
225 config.period_count = period_count;
227 config.format = PCM_FORMAT_S32_LE;
229 config.format = PCM_FORMAT_S16_LE;
230 config.start_threshold = 0;
231 config.stop_threshold = 0;
232 config.silence_threshold = 0;
238 pcm = pcm_open(card, device, PCM_OUT, &config);