diff options
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) |