diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2006-07-27 00:50:59 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2006-07-27 00:50:59 +0000 |
commit | 22b16884a2fb054ed219f07774cc16ec3af34c26 (patch) | |
tree | 605a3313d64b7a048c9cab56b2db210eaf7d40a5 /src/playlist.c | |
parent | bf5336cebd9e31e0eb0664ef62ce5c6751aa31a3 (diff) | |
download | mpd-22b16884a2fb054ed219f07774cc16ec3af34c26.tar.gz mpd-22b16884a2fb054ed219f07774cc16ec3af34c26.tar.xz mpd-22b16884a2fb054ed219f07774cc16ec3af34c26.zip |
Use AudioCompress for volume normalization
git-svn-id: https://svn.musicpd.org/mpd/trunk@4474 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/playlist.c')
-rw-r--r-- | src/playlist.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/playlist.c b/src/playlist.c index 37c2aeb5c..2f4feee7d 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -167,15 +167,8 @@ void initPlaylist(void) } playlist_saveAbsolutePaths = getBoolConfigParam(CONF_SAVE_ABSOLUTE_PATHS); - if (playlist_saveAbsolutePaths == -1) { - /* not set */ - playlist_saveAbsolutePaths = 0; - } else if (playlist_saveAbsolutePaths < 0) { - param = getConfigParam(CONF_SAVE_ABSOLUTE_PATHS); - ERROR("%s is not \"yes\" or \"no\" on line %i\n", - CONF_SAVE_ABSOLUTE_PATHS, param->line); - exit(EXIT_FAILURE); - } + if (playlist_saveAbsolutePaths == -1) playlist_saveAbsolutePaths = 0; + else if (playlist_saveAbsolutePaths < 0) exit(EXIT_FAILURE); playlist.songs = malloc(sizeof(Song *) * playlist_max_length); playlist.songMod = malloc(sizeof(mpd_uint32) * playlist_max_length); |