diff options
author | Max Kellermann <max@duempel.org> | 2010-01-04 13:31:20 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-01-04 20:54:01 +0100 |
commit | 0e183d3fa1f216729725127d868d66268e1a35d4 (patch) | |
tree | 63f14bdadec2e24104fa0fe957d2a30900e25385 /src/decoder_thread.c | |
parent | cd8f92c9285e9b3b460ff47d2f251bfabce544da (diff) | |
download | mpd-0e183d3fa1f216729725127d868d66268e1a35d4.tar.gz mpd-0e183d3fa1f216729725127d868d66268e1a35d4.tar.xz mpd-0e183d3fa1f216729725127d868d66268e1a35d4.zip |
replay_gain: refactor API, move code to replay_gain_state.c
The replay_gain_state struct holds the precalculated scale factor,
which is removed from struct replay_gain_info.
Diffstat (limited to '')
-rw-r--r-- | src/decoder_thread.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c index f793fd032..625ec46cc 100644 --- a/src/decoder_thread.c +++ b/src/decoder_thread.c @@ -31,7 +31,7 @@ #include "mapper.h" #include "path.h" #include "uri.h" -#include "replay_gain.h" +#include "replay_gain_state.h" #include <glib.h> @@ -303,7 +303,8 @@ decoder_run_song(struct decoder_control *dc, { struct decoder decoder = { .dc = dc, - .replay_gain = NULL, + .replay_gain = replay_gain_state_new(replay_gain_preamp, + replay_gain_missing_preamp), }; int ret; @@ -332,7 +333,7 @@ decoder_run_song(struct decoder_control *dc, /* flush the last chunk */ if (decoder.replay_gain != NULL) - replay_gain_info_free(decoder.replay_gain); + replay_gain_state_free(decoder.replay_gain); if (decoder.chunk != NULL) decoder_flush_chunk(&decoder); |