From 1a74d7be4143c8afb51cd2c2a338ac165866d047 Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Sun, 12 Oct 2008 11:47:33 +0200
Subject: alsa: moved code to alsa_configure()

Move code which loads configuration to alsa_configure().  This removes
one indent level.
---
 src/audioOutputs/audioOutput_alsa.c | 31 ++++++++++++++++++-------------
 1 file changed, 18 insertions(+), 13 deletions(-)

(limited to 'src/audioOutputs')

diff --git a/src/audioOutputs/audioOutput_alsa.c b/src/audioOutputs/audioOutput_alsa.c
index 8e3cbb9d6..ab6e888b2 100644
--- a/src/audioOutputs/audioOutput_alsa.c
+++ b/src/audioOutputs/audioOutput_alsa.c
@@ -66,6 +66,22 @@ static void freeAlsaData(AlsaData * ad)
 	free(ad);
 }
 
+static void
+alsa_configure(AlsaData *ad, ConfigParam *param)
+{
+	BlockParam *bp;
+
+	if ((bp = getBlockParam(param, "device")))
+		ad->device = xstrdup(bp->value);
+	ad->useMmap = getBoolBlockParam(param, "use_mmap", 1);
+	if (ad->useMmap == CONF_BOOL_UNSET)
+		ad->useMmap = 0;
+	if ((bp = getBlockParam(param, "buffer_time")))
+		ad->buffer_time = atoi(bp->value);
+	if ((bp = getBlockParam(param, "period_time")))
+		ad->period_time = atoi(bp->value);
+}
+
 static void *alsa_initDriver(mpd_unused struct audio_output *ao,
 			     mpd_unused const struct audio_format *audio_format,
 			     ConfigParam * param)
@@ -79,19 +95,8 @@ static void *alsa_initDriver(mpd_unused struct audio_output *ao,
 		free_global_registered = 1;
 	}
 
-	if (param) {
-		BlockParam *bp;
-
-		if ((bp = getBlockParam(param, "device")))
-			ad->device = xstrdup(bp->value);
-		ad->useMmap = getBoolBlockParam(param, "use_mmap", 1);
-		if (ad->useMmap == CONF_BOOL_UNSET)
-			ad->useMmap = 0;
-		if ((bp = getBlockParam(param, "buffer_time")))
-			ad->buffer_time = atoi(bp->value);
-		if ((bp = getBlockParam(param, "period_time")))
-			ad->period_time = atoi(bp->value);
-	}
+	if (param)
+		alsa_configure(ad, param);
 
 	return ad;
 }
-- 
cgit v1.2.3