From: Jaroslav Kysela Date: Mon, 21 Feb 2000 12:28:43 +0000 (+0000) Subject: SND_PCM_RATE_PLL -> SND_PCM_RATE_CONTINUOUS X-Git-Tag: v1.0.3~1319 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=022addf7613ade79d1dfb624e52e84b5999fa11d;p=alsa-lib.git SND_PCM_RATE_PLL -> SND_PCM_RATE_CONTINUOUS --- diff --git a/test/pcmtest.c b/test/pcmtest.c index 44c995f5..afd1ca04 100644 --- a/test/pcmtest.c +++ b/test/pcmtest.c @@ -102,8 +102,10 @@ void info_channel(snd_pcm_t *handle, int channel, char *id) printf(" Special"); printf("\n"); printf(" rates :"); - if (chninfo.rates & SND_PCM_RATE_PLL) - printf(" PLL"); + if (chninfo.rates & SND_PCM_RATE_CONTINUOUS) + printf(" Continuous"); + if (chninfo.rates & SND_PCM_RATE_KNOT) + printf(" Knot"); if (chninfo.rates & SND_PCM_RATE_8000) printf(" 8000"); if (chninfo.rates & SND_PCM_RATE_11025)