From 022addf7613ade79d1dfb624e52e84b5999fa11d Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 21 Feb 2000 12:28:43 +0000 Subject: [PATCH] SND_PCM_RATE_PLL -> SND_PCM_RATE_CONTINUOUS --- test/pcmtest.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) -- 2.47.1