From 3b4ace14cfbfe852467549ed85f5d2ce8d367482 Mon Sep 17 00:00:00 2001 From: Johns Date: Wed, 29 Feb 2012 18:21:28 +0100 Subject: [PATCH] Add ac3 to info message for pass-through. --- audio.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/audio.c b/audio.c index af79c4d..5b3a00d 100644 --- a/audio.c +++ b/audio.c @@ -743,7 +743,8 @@ static snd_pcm_t *AlsaOpenPCM(int use_ac3) && !(device = AudioPCMDevice) && !(device = getenv("ALSA_DEVICE"))) { device = "default"; } - Info(_("audio/alsa: using device '%s'\n"), device); + Info(_("audio/alsa: using %sdevice '%s'\n"), use_ac3 ? "ac3 " : "", + device); // open none blocking; if device is already used, we don't want wait if ((err = @@ -1554,7 +1555,7 @@ static int OssOpenPCM(int use_ac3) && !(device = AudioPCMDevice) && !(device = getenv("OSS_AUDIODEV"))) { device = "/dev/dsp"; } - Info(_("audio/oss: using device '%s'\n"), device); + Info(_("audio/oss: using %sdevice '%s'\n"), use_ac3 ? "ac3" : "", device); if ((fildes = open(device, O_WRONLY)) < 0) { Error(_("audio/oss: can't open dsp device '%s': %s\n"), device,