aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutputs/audioOutput_alsa.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-09-08 20:42:34 +0200
committerMax Kellermann <max@duempel.org>2008-09-08 20:42:34 +0200
commitfa246e02befbeaea2a3e9b53be7d24f1f7215fe8 (patch)
tree2d34ab7c75359c57d0c86e1f4286d329d01f69cc /src/audioOutputs/audioOutput_alsa.c
parent7bd98c08ce149a999c14352762cfe741e591c8fb (diff)
downloadmpd-fa246e02befbeaea2a3e9b53be7d24f1f7215fe8.tar.gz
mpd-fa246e02befbeaea2a3e9b53be7d24f1f7215fe8.tar.xz
mpd-fa246e02befbeaea2a3e9b53be7d24f1f7215fe8.zip
alsa: capitalize "ALSA" consistently in messages
That's the name of this project.
Diffstat (limited to '')
-rw-r--r--src/audioOutputs/audioOutput_alsa.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/audioOutputs/audioOutput_alsa.c b/src/audioOutputs/audioOutput_alsa.c
index f2c68ce3f..c8b909032 100644
--- a/src/audioOutputs/audioOutput_alsa.c
+++ b/src/audioOutputs/audioOutput_alsa.c
@@ -110,7 +110,7 @@ static int alsa_testDefault(void)
snd_config_update_free_global();
if (ret) {
- WARNING("Error opening default alsa device: %s\n",
+ WARNING("Error opening default ALSA device: %s\n",
snd_strerror(-ret));
return -1;
} else
@@ -182,7 +182,7 @@ configure_hw:
err = snd_pcm_hw_params_set_access(ad->pcmHandle, hwparams,
SND_PCM_ACCESS_MMAP_INTERLEAVED);
if (err < 0) {
- ERROR("Cannot set mmap'ed mode on alsa device \"%s\": "
+ ERROR("Cannot set mmap'ed mode on ALSA device \"%s\": "
" %s\n", ad->device, snd_strerror(-err));
ERROR("Falling back to direct write mode\n");
ad->useMmap = 0;
@@ -297,7 +297,7 @@ configure_hw:
audioOutput->open = 1;
- DEBUG("alsa device \"%s\" will be playing %i bit, %i channel audio at "
+ DEBUG("ALSA device \"%s\" will be playing %i bit, %i channel audio at "
"%i Hz\n", ad->device, (int)audioFormat->bits,
channels, sampleRate);
@@ -305,10 +305,10 @@ configure_hw:
error:
if (cmd) {
- ERROR("Error opening alsa device \"%s\" (%s): %s\n",
+ ERROR("Error opening ALSA device \"%s\" (%s): %s\n",
ad->device, cmd, snd_strerror(-err));
} else {
- ERROR("Error opening alsa device \"%s\": %s\n", ad->device,
+ ERROR("Error opening ALSA device \"%s\": %s\n", ad->device,
snd_strerror(-err));
}
fail:
@@ -322,9 +322,9 @@ fail:
static int alsa_errorRecovery(AlsaData * ad, int err)
{
if (err == -EPIPE) {
- DEBUG("Underrun on alsa device \"%s\"\n", ad->device);
+ DEBUG("Underrun on ALSA device \"%s\"\n", ad->device);
} else if (err == -ESTRPIPE) {
- DEBUG("alsa device \"%s\" was suspended\n", ad->device);
+ DEBUG("ALSA device \"%s\" was suspended\n", ad->device);
}
switch (snd_pcm_state(ad->pcmHandle)) {
@@ -395,7 +395,7 @@ static int alsa_playAudio(struct audio_output *audioOutput,
if (ret < 0) {
if (alsa_errorRecovery(ad, ret) < 0) {
- ERROR("closing alsa device \"%s\" due to write "
+ ERROR("closing ALSA device \"%s\" due to write "
"error: %s\n", ad->device,
snd_strerror(-errno));
alsa_closeDevice(audioOutput);