Home | History | Annotate | Download | only in tinyalsa

Lines Matching refs:config

110     struct pcm_config config;
116 config.channels = channels;
117 config.rate = rate;
118 config.period_size = 1024;
119 config.period_count = 4;
121 config.format = PCM_FORMAT_S32_LE;
123 config.format = PCM_FORMAT_S16_LE;
124 config.start_threshold = 0;
125 config.stop_threshold = 0;
126 config.silence_threshold = 0;
128 pcm = pcm_open(0, device, PCM_OUT, &config);