diff options
author | Jaroslav Kysela <perex@perex.cz> | 2000-02-21 12:28:43 +0000 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2000-02-21 12:28:43 +0000 |
commit | 022addf7613ade79d1dfb624e52e84b5999fa11d (patch) | |
tree | a1fd092ab6d16ff673c0368220500758e63b1921 /test | |
parent | b3160628560add422f5c00acc2f1d97f7cc5f175 (diff) |
SND_PCM_RATE_PLL -> SND_PCM_RATE_CONTINUOUS
Diffstat (limited to 'test')
-rw-r--r-- | test/pcmtest.c | 6 |
1 files 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) |