]> git.alsa-project.org Git - alsa-lib.git/commitdiff
SND_PCM_RATE_PLL -> SND_PCM_RATE_CONTINUOUS
authorJaroslav Kysela <perex@perex.cz>
Mon, 21 Feb 2000 12:28:43 +0000 (12:28 +0000)
committerJaroslav Kysela <perex@perex.cz>
Mon, 21 Feb 2000 12:28:43 +0000 (12:28 +0000)
test/pcmtest.c

index 44c995f5d3988dfe94e187981cda36c26f9471a4..afd1ca041672728cda70e11b9b67bd8edd360f38 100644 (file)
@@ -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)