diff options
author | Max Kellermann <max@duempel.org> | 2010-01-04 20:58:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-01-04 21:02:47 +0100 |
commit | 241e94936f165a35686fb4b8f60cb2e604f15bc7 (patch) | |
tree | a8835df8073dda028cf40e012603338e6477b7d7 /src/decoder | |
parent | 1330274ffc6f80d5dd768902b09849cf32f329d2 (diff) | |
download | mpd-241e94936f165a35686fb4b8f60cb2e604f15bc7.tar.gz mpd-241e94936f165a35686fb4b8f60cb2e604f15bc7.tar.xz mpd-241e94936f165a35686fb4b8f60cb2e604f15bc7.zip |
replay_gain: moved code to replay_gain_config.c
Diffstat (limited to '')
-rw-r--r-- | src/decoder_api.c | 2 | ||||
-rw-r--r-- | src/decoder_thread.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder_api.c b/src/decoder_api.c index 0a4e1d12f..afabb76af 100644 --- a/src/decoder_api.c +++ b/src/decoder_api.c @@ -28,7 +28,7 @@ #include "pipe.h" #include "chunk.h" #include "replay_gain_state.h" -#include "replay_gain.h" +#include "replay_gain_config.h" #include <glib.h> diff --git a/src/decoder_thread.c b/src/decoder_thread.c index d2841436c..1539117f4 100644 --- a/src/decoder_thread.c +++ b/src/decoder_thread.c @@ -32,7 +32,7 @@ #include "path.h" #include "uri.h" #include "replay_gain_state.h" -#include "replay_gain.h" +#include "replay_gain_config.h" #include <glib.h> |