aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-07-20 20:37:36 +0200
committerMax Kellermann <max@duempel.org>2010-07-20 22:59:04 +0200
commitfb19aa355e566898fcb18bf3a5700a8e5f236696 (patch)
tree16cb01595384035f4bbc4e78982b7106ec988068 /src
parent6135419ac3b958c04422bcb68b0e34fe0dfaaf14 (diff)
replay_gain_info: fix indentation
Diffstat (limited to 'src')
-rw-r--r--src/replay_gain_info.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/replay_gain_info.c b/src/replay_gain_info.c
index 66f46def..3b4ab457 100644
--- a/src/replay_gain_info.c
+++ b/src/replay_gain_info.c
@@ -25,19 +25,16 @@ replay_gain_tuple_scale(const struct replay_gain_tuple *tuple, float preamp, flo
{
float scale;
- if (replay_gain_tuple_defined(tuple))
- {
- scale = pow(10.0, tuple->gain / 20.0);
- scale *= preamp;
- if (scale > 15.0)
- scale = 15.0;
+ if (replay_gain_tuple_defined(tuple)) {
+ scale = pow(10.0, tuple->gain / 20.0);
+ scale *= preamp;
+ if (scale > 15.0)
+ scale = 15.0;
- if (peak_limit)
- if (scale * tuple->peak > 1.0)
+ if (peak_limit && scale * tuple->peak > 1.0)
scale = 1.0 / tuple->peak;
- } else {
+ } else
scale = missing_preamp;
- }
return scale;
}