diff options
author | Max Kellermann <max@duempel.org> | 2010-02-15 21:23:24 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-02-15 21:23:24 +0100 |
commit | b21e4d9a589c02bffed9a1793d9fc2dc52044c12 (patch) | |
tree | 694936fb9629d3eecd06d258ead66b7b879fc29c /src/replay_gain_info.h | |
parent | eeef501ed865b4ef9e0c971829a39a98c7b81ee9 (diff) | |
download | mpd-b21e4d9a589c02bffed9a1793d9fc2dc52044c12.tar.gz mpd-b21e4d9a589c02bffed9a1793d9fc2dc52044c12.tar.xz mpd-b21e4d9a589c02bffed9a1793d9fc2dc52044c12.zip |
replay_gain_state: moved code to replay_gain_tuple_scale()
Moved (and renamed) the function calc_replay_gain_scale() to
replay_gain_info.c.
Diffstat (limited to '')
-rw-r--r-- | src/replay_gain_info.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/replay_gain_info.h b/src/replay_gain_info.h index 9a11a8965..9fcae22ab 100644 --- a/src/replay_gain_info.h +++ b/src/replay_gain_info.h @@ -57,4 +57,7 @@ replay_gain_tuple_defined(const struct replay_gain_tuple *tuple) return tuple->gain > 0.0; } +float +replay_gain_tuple_scale(const struct replay_gain_tuple *tuple, float preamp); + #endif |