Lines Matching refs:pcm_cfg
248 const char *test_name, snd_config_t *pcm_cfg) in test_pcm_time() argument
283 desc = conf_get_string(pcm_cfg, "description", NULL, NULL); in test_pcm_time()
295 cs = conf_get_string(pcm_cfg, "format", NULL, "S16_LE"); in test_pcm_time()
299 conf_get_string_array(pcm_cfg, "alt_formats", NULL, in test_pcm_time()
301 rate = conf_get_long(pcm_cfg, "rate", NULL, 48000); in test_pcm_time()
302 channels = conf_get_long(pcm_cfg, "channels", NULL, 2); in test_pcm_time()
303 period_size = conf_get_long(pcm_cfg, "period_size", NULL, 4096); in test_pcm_time()
304 buffer_size = conf_get_long(pcm_cfg, "buffer_size", NULL, 16384); in test_pcm_time()
515 snd_config_t *pcm_cfg; in run_time_tests() local
526 pcm_cfg = snd_config_iterator_entry(i); in run_time_tests()
527 if (snd_config_get_id(pcm_cfg, &test_name) < 0) in run_time_tests()
529 test_type = conf_get_string(pcm_cfg, "type", NULL, "time"); in run_time_tests()
531 test_pcm_time(pcm, class, test_name, pcm_cfg); in run_time_tests()
557 snd_config_t *global_config, *cfg, *pcm_cfg; in main() local