conf: improved boolean config parameter handling from -ke
the force flag will issue FATAL() if an invalid value is specified git-svn-id: https://svn.musicpd.org/mpd/trunk@6857 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
@@ -120,11 +120,10 @@ static signed long audio_linear_dither(unsigned int bits, mad_fixed_t sample,
|
||||
|
||||
static int mp3_plugin_init(void)
|
||||
{
|
||||
gaplessPlaybackEnabled = getBoolConfigParam(CONF_GAPLESS_MP3_PLAYBACK);
|
||||
if (gaplessPlaybackEnabled == -1)
|
||||
gaplessPlaybackEnabled = getBoolConfigParam(CONF_GAPLESS_MP3_PLAYBACK,
|
||||
1);
|
||||
if (gaplessPlaybackEnabled == CONF_BOOL_UNSET)
|
||||
gaplessPlaybackEnabled = DEFAULT_GAPLESS_MP3_PLAYBACK;
|
||||
else if (gaplessPlaybackEnabled < 0)
|
||||
exit(EXIT_FAILURE);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user