summaryrefslogtreecommitdiff
path: root/audio.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio.c')
-rw-r--r--audio.c5
1 files 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,