Commit cf6ca1b0 authored by Max Kellermann's avatar Max Kellermann

player/CrossFade: use C++11 initializers

parent 37bd6de6
...@@ -29,22 +29,15 @@ struct CrossFadeSettings { ...@@ -29,22 +29,15 @@ struct CrossFadeSettings {
/** /**
* The configured cross fade duration [s]. * The configured cross fade duration [s].
*/ */
FloatDuration duration; FloatDuration duration{0};
float mixramp_db; float mixramp_db{0};
/** /**
* The configured MixRapm delay [s]. A non-positive value * The configured MixRapm delay [s]. A non-positive value
* disables MixRamp. * disables MixRamp.
*/ */
FloatDuration mixramp_delay; FloatDuration mixramp_delay{-1};
CrossFadeSettings()
:duration(0),
mixramp_db(0),
mixramp_delay(-1)
{}
/** /**
* Calculate how many music pipe chunks should be used for crossfading. * Calculate how many music pipe chunks should be used for crossfading.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment