diff options
author | Max Kellermann <max@duempel.org> | 2009-12-14 21:36:25 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-25 17:51:08 +0100 |
commit | 870436a592b081c4630b9ecc36ff8daecf6496cc (patch) | |
tree | 96aca67066a54b308cd2958467bb17b81234f3fb /src/main.c | |
parent | 6a17233f78d177bacc3b13fa4e8ac15fe08a4f51 (diff) | |
download | mpd-870436a592b081c4630b9ecc36ff8daecf6496cc.tar.gz mpd-870436a592b081c4630b9ecc36ff8daecf6496cc.tar.xz mpd-870436a592b081c4630b9ecc36ff8daecf6496cc.zip |
output_init: use the normalize filter plugin
Use the plugin instead of the glue code in normalize.c. This is used
wrapped inside a "autoconv" filter, to enable normalization for all
input file formats.
Diffstat (limited to '')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c index 882664d49..a40dae369 100644 --- a/src/main.c +++ b/src/main.c @@ -49,7 +49,6 @@ #include "state_file.h" #include "tag.h" #include "dbUtils.h" -#include "normalize.h" #include "zeroconf.h" #include "event_pipe.h" #include "dirvec.h" @@ -348,7 +347,6 @@ int main(int argc, char *argv[]) audio_output_all_init(); client_manager_init(); replay_gain_global_init(); - initNormalization(); if (!input_stream_global_init(&error)) { g_warning("%s", error->message); @@ -426,7 +424,6 @@ int main(int argc, char *argv[]) playlist_list_global_finish(); input_stream_global_finish(); - finishNormalization(); audio_output_all_finish(); volume_finish(); mapper_finish(); |