Home | History | Annotate | Download | only in audio

Lines Matching refs:threshold

124     unsigned int threshold;
305 static void alsa_set_threshold (snd_pcm_t *handle, snd_pcm_uframes_t threshold)
319 err = FF(snd_pcm_sw_params_set_start_threshold) (handle, sw_params, threshold);
322 alsa_logerr (err, "Failed to set software threshold to %ld\n",
323 threshold);
516 if (!in && conf.threshold) {
517 snd_pcm_uframes_t threshold;
538 threshold = (conf.threshold * bytes_per_sec) / 1000;
539 alsa_set_threshold (handle, threshold);
1027 {"THRESHOLD", AUD_OPT_INT, &conf.threshold,