forked from pool/alsa-utils
- Upstream fix: 0003-aplay-fix-two-off-by-one-errors.patch OBS-URL: https://build.opensuse.org/request/show/198043 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/alsa-utils?expand=0&rev=90
39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
From 719faff80962a5d93c09980673f08048ae58add6 Mon Sep 17 00:00:00 2001
|
|
From: Jurgen Kramer <gtmkramer@xs4all.nl>
|
|
Date: Mon, 9 Sep 2013 12:02:29 +0200
|
|
Subject: [PATCH] aplay: fix two off by one errors
|
|
|
|
Attached patch for aplay fixes two off-by-one errors preventing usage
|
|
of the last available sample format.
|
|
|
|
Signed-off-by: Takashi Iwai <tiwai@suse.de>
|
|
---
|
|
aplay/aplay.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/aplay/aplay.c b/aplay/aplay.c
|
|
index 89c6b06..e0631c4 100644
|
|
--- a/aplay/aplay.c
|
|
+++ b/aplay/aplay.c
|
|
@@ -242,7 +242,7 @@ _("Usage: %s [OPTION]... [FILE]...\n"
|
|
)
|
|
, command);
|
|
printf(_("Recognized sample formats are:"));
|
|
- for (k = 0; k < SND_PCM_FORMAT_LAST; ++k) {
|
|
+ for (k = 0; k <= SND_PCM_FORMAT_LAST; ++k) {
|
|
const char *s = snd_pcm_format_name(k);
|
|
if (s)
|
|
printf(" %s", s);
|
|
@@ -1114,7 +1114,7 @@ static void show_available_sample_formats(snd_pcm_hw_params_t* params)
|
|
snd_pcm_format_t format;
|
|
|
|
fprintf(stderr, "Available formats:\n");
|
|
- for (format = 0; format < SND_PCM_FORMAT_LAST; format++) {
|
|
+ for (format = 0; format <= SND_PCM_FORMAT_LAST; format++) {
|
|
if (snd_pcm_hw_params_test_format(handle, params, format) == 0)
|
|
fprintf(stderr, "- %s\n", snd_pcm_format_name(format));
|
|
}
|
|
--
|
|
1.8.4
|
|
|