diff options
Diffstat (limited to 'src/decoder_internal.h')
-rw-r--r-- | src/decoder_internal.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/decoder_internal.h b/src/decoder_internal.h index 159b40b92..9e7e2037a 100644 --- a/src/decoder_internal.h +++ b/src/decoder_internal.h @@ -22,6 +22,7 @@ #include "decoder_command.h" #include "pcm_convert.h" +#include "replay_gain_info.h" struct input_stream; @@ -53,7 +54,13 @@ struct decoder { /** the chunk currently being written to */ struct music_chunk *chunk; - struct replay_gain_state *replay_gain; + struct replay_gain_info replay_gain_info; + + /** + * A positive serial number for checking if replay gain info + * has changed since the last check. + */ + unsigned replay_gain_serial; }; /** |