diff options
Diffstat (limited to 'src/replay_gain_info.c')
-rw-r--r-- | src/replay_gain_info.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/replay_gain_info.c b/src/replay_gain_info.c index 76bd98acd..9ab5b05fa 100644 --- a/src/replay_gain_info.c +++ b/src/replay_gain_info.c @@ -35,3 +35,11 @@ replay_gain_tuple_scale(const struct replay_gain_tuple *tuple, float preamp) return scale; } + +void +replay_gain_info_complete(struct replay_gain_info *info) +{ + if (!replay_gain_tuple_defined(&info->tuples[REPLAY_GAIN_ALBUM])) + info->tuples[REPLAY_GAIN_ALBUM] = + info->tuples[REPLAY_GAIN_TRACK]; +} |