[alsa-devel] [PATCH alsa-utils] speaker-test: increase the maximum supported rate to 384000
There are some devices around supporting this sample rate so let's make speaker-test capable to deal with them.
Signed-off-by: Antonio Ospite ao2@amarulasolutions.com --- speaker-test/speaker-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/speaker-test/speaker-test.c b/speaker-test/speaker-test.c index 3c89c38..de42a0c 100644 --- a/speaker-test/speaker-test.c +++ b/speaker-test/speaker-test.c @@ -999,7 +999,7 @@ int main(int argc, char *argv[]) { case 'r': rate = atoi(optarg); rate = rate < 4000 ? 4000 : rate; - rate = rate > 196000 ? 196000 : rate; + rate = rate > 384000 ? 384000 : rate; break; case 'c': channels = atoi(optarg);
At Wed, 16 Jan 2013 17:06:04 +0100, Antonio Ospite wrote:
There are some devices around supporting this sample rate so let's make speaker-test capable to deal with them.
Signed-off-by: Antonio Ospite ao2@amarulasolutions.com
Thanks, applied now.
Takashi
speaker-test/speaker-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/speaker-test/speaker-test.c b/speaker-test/speaker-test.c index 3c89c38..de42a0c 100644 --- a/speaker-test/speaker-test.c +++ b/speaker-test/speaker-test.c @@ -999,7 +999,7 @@ int main(int argc, char *argv[]) { case 'r': rate = atoi(optarg); rate = rate < 4000 ? 4000 : rate;
rate = rate > 196000 ? 196000 : rate;
case 'c': channels = atoi(optarg);rate = rate > 384000 ? 384000 : rate; break;
-- 1.7.10.4
participants (2)
-
Antonio Ospite
-
Takashi Iwai