summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJaroslav Kysela <perex@perex.cz>2000-02-21 12:28:43 +0000
committerJaroslav Kysela <perex@perex.cz>2000-02-21 12:28:43 +0000
commit022addf7613ade79d1dfb624e52e84b5999fa11d (patch)
treea1fd092ab6d16ff673c0368220500758e63b1921 /test
parentb3160628560add422f5c00acc2f1d97f7cc5f175 (diff)
SND_PCM_RATE_PLL -> SND_PCM_RATE_CONTINUOUS
Diffstat (limited to 'test')
-rw-r--r--test/pcmtest.c6
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)