From: Julian Scheel Date: Thu, 7 Jun 2018 09:10:55 +0000 (+0200) Subject: speaker-test: Allow sampling rates up to 768000 X-Git-Tag: v1.1.7~17 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=a3d81b6beab1ad33ea02f7d3c19f894490a661b9;p=alsa-utils.git speaker-test: Allow sampling rates up to 768000 There are audio devices around that support up to 768kHz playback, allow testing them by increasing the maximum supported sampling rate. Signed-off-by: Julian Scheel Signed-off-by: Takashi Iwai --- diff --git a/speaker-test/speaker-test.c b/speaker-test/speaker-test.c index 0cdecb3..773af0a 100644 --- a/speaker-test/speaker-test.c +++ b/speaker-test/speaker-test.c @@ -1034,7 +1034,7 @@ int main(int argc, char *argv[]) { case 'r': rate = atoi(optarg); rate = rate < 4000 ? 4000 : rate; - rate = rate > 384000 ? 384000 : rate; + rate = rate > 768000 ? 768000 : rate; break; case 'c': channels = atoi(optarg);