aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_internal.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-01-04 13:31:20 +0100
committerMax Kellermann <max@duempel.org>2010-01-04 20:54:01 +0100
commit0e183d3fa1f216729725127d868d66268e1a35d4 (patch)
tree63f14bdadec2e24104fa0fe957d2a30900e25385 /src/decoder_internal.h
parentcd8f92c9285e9b3b460ff47d2f251bfabce544da (diff)
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 'src/decoder_internal.h')
-rw-r--r--src/decoder_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_internal.h b/src/decoder_internal.h
index b15b0688..159b40b9 100644
--- a/src/decoder_internal.h
+++ b/src/decoder_internal.h
@@ -53,7 +53,7 @@ struct decoder {
/** the chunk currently being written to */
struct music_chunk *chunk;
- struct replay_gain_info *replay_gain;
+ struct replay_gain_state *replay_gain;
};
/**