forked from pool/alsa-utils
Takashi Iwai
8bad45cd50
- Build with libsamplerate for aloop (bnc#792173) - Add a patch to handle alsaloop properly without libsamplerate (bnc#792173): 0010-alsaloop-Make-alsaloop-working-without-libsamplerate.patch 0011-alsaloop-Fix-missing-endif.patch - Backport fixes from upstream 0006-alsamixer-fix-handling-of-removed-controls.patch 0007-aplay-Show-usage-if-no-parameter-is-passed.patch 0008-amixer-fix-rounding-of-relative-changes.patch 0009-amixer-Fix-parsing-container-TLV-entries.patch OBS-URL: https://build.opensuse.org/request/show/143675 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/alsa-utils?expand=0&rev=66
29 lines
771 B
Diff
29 lines
771 B
Diff
From c7b9d3e39431eddd3a205a3f583a07884a90bb1b Mon Sep 17 00:00:00 2001
|
|
From: Takashi Iwai <tiwai@suse.de>
|
|
Date: Fri, 30 Nov 2012 14:53:12 +0100
|
|
Subject: [PATCH] alsaloop: Fix missing #endif
|
|
|
|
Sorry, forgotten.
|
|
|
|
Signed-off-by: Takashi Iwai <tiwai@suse.de>
|
|
---
|
|
alsaloop/alsaloop.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/alsaloop/alsaloop.c b/alsaloop/alsaloop.c
|
|
index 6e94564..e1a36d2 100644
|
|
--- a/alsaloop/alsaloop.c
|
|
+++ b/alsaloop/alsaloop.c
|
|
@@ -389,7 +389,7 @@ static int parse_config(int argc, char *argv[], snd_output_t *output,
|
|
int arg_resample = 0;
|
|
#ifdef USE_SAMPLERATE
|
|
int arg_samplerate = SRC_SINC_FASTEST + 1;
|
|
-#else
|
|
+#endif
|
|
int arg_sync = SYNC_TYPE_AUTO;
|
|
int arg_slave = SLAVE_TYPE_AUTO;
|
|
int arg_thread = 0;
|
|
--
|
|
1.8.0.1
|
|
|