fix MP3 VBR quality being inverted

This commit is contained in:
tildearrow 2025-10-24 15:04:43 -05:00
parent 22eb29cf6c
commit 4e98853784

View file

@ -140,7 +140,7 @@ bool DivEngine::getIsFadingOut() {
break; \
} \
if (exportBitRateMode==DIV_EXPORT_BITRATE_VARIABLE) { \
mappedLevel=exportVBRQuality*0.1; \
mappedLevel=1.0-(exportVBRQuality*0.1); \
} else { \
if (got.rate>=32000) { \
mappedLevel=(320000.0-(double)exportBitRate)/288000.0; \