diff options
author | Max Kellermann <max@duempel.org> | 2009-01-17 20:23:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-17 20:23:27 +0100 |
commit | 4d472c265ed0b3f7f61ee624c01c8ef319db7c99 (patch) | |
tree | 8ec3ea874c741c9b0e1ab70db2a96e02acec8225 /src/audio.c | |
parent | 2bbf378dd8a3f12b4b79228ce562402c29d2cd09 (diff) | |
download | mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.tar.gz mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.tar.xz mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.zip |
conf: no CamelCase, part I
Renamed functions, types, variables.
Diffstat (limited to '')
-rw-r--r-- | src/audio.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/audio.c b/src/audio.c index 4b3a60718..78d07a5a9 100644 --- a/src/audio.c +++ b/src/audio.c @@ -43,9 +43,9 @@ static unsigned int audioOutputArraySize; unsigned int audio_output_count(void) { unsigned int nr = 0; - ConfigParam *param = NULL; + struct config_param *param = NULL; - while ((param = getNextConfigParam(CONF_AUDIO_OUTPUT, param))) + while ((param = config_get_next_param(CONF_AUDIO_OUTPUT, param))) nr++; if (!nr) nr = 1; /* we'll always have at least one device */ @@ -55,7 +55,7 @@ unsigned int audio_output_count(void) /* make sure initPlayerData is called before this function!! */ void initAudioDriver(void) { - ConfigParam *param = NULL; + struct config_param *param = NULL; unsigned int i; notify_init(&audio_output_client_notify); @@ -68,7 +68,7 @@ void initAudioDriver(void) struct audio_output *output = &audioOutputArray[i]; unsigned int j; - param = getNextConfigParam(CONF_AUDIO_OUTPUT, param); + param = config_get_next_param(CONF_AUDIO_OUTPUT, param); /* only allow param to be NULL if there just one audioOutput */ assert(param || (audioOutputArraySize == 1)); @@ -106,7 +106,7 @@ void getOutputAudioFormat(const struct audio_format *inAudioFormat, void initAudioConfig(void) { - ConfigParam *param = getConfigParam(CONF_AUDIO_OUTPUT_FORMAT); + struct config_param *param = config_get_param(CONF_AUDIO_OUTPUT_FORMAT); if (NULL == param || NULL == param->value) return; @@ -467,7 +467,7 @@ bool mixer_control_getvol(unsigned int device, int *volume) return false; } -bool mixer_configure_legacy(char *name, ConfigParam *param) +bool mixer_configure_legacy(char *name, struct config_param *param) { unsigned i; struct audio_output *output; |