X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fconf.c;h=efacd56e6bae6ed10ee773efdcd7922eb41adcda;hb=772cee17b53bb6795a5e98f1ae2acb7e7d6c25c1;hp=ccd8e05cde4dfefe3f8d7bd468569de9ddca24ad;hpb=bbd9b6d4378b7109929f6d9626310020c77ae230;p=umurmur.git diff --git a/src/conf.c b/src/conf.c index ccd8e05..efacd56 100644 --- a/src/conf.c +++ b/src/conf.c @@ -45,6 +45,7 @@ static config_t configuration; #define DEFAULT_MAX_BANDWIDTH 48000 #define DEFAULT_BINDPORT 64738 #define DEFAULT_BAN_LENGTH (60*60) +#define DEFAULT_OPUS_THRESHOLD 100 const char defaultconfig[] = DEFAULT_CONFIG; @@ -250,6 +251,14 @@ int getIntConf(param_t param) return config_setting_get_int(setting); } break; + case OPUS_THRESHOLD: + setting = config_lookup(&configuration, "opus_threshold"); + if (!setting) + return DEFAULT_OPUS_THRESHOLD; + else { + return config_setting_get_int(setting); + } + break; default: doAssert(false); }