mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-18 00:50:52 +02:00
ExportFFmpeg: dont set global_quality to -99999
This confuses the native aac encoder at least. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Benjamin Drung <bdrung@debian.org>
This commit is contained in:
parent
4348c9e9c4
commit
cda7ade23a
@ -436,7 +436,7 @@ bool ExportFFmpeg::InitCodecs(AudacityProject *project)
|
||||
{
|
||||
mEncAudioCodecCtx->flags |= CODEC_FLAG_QSCALE;
|
||||
}
|
||||
else mEncAudioCodecCtx->global_quality = -99999;
|
||||
else mEncAudioCodecCtx->global_quality = 0;
|
||||
mEncAudioCodecCtx->global_quality = mEncAudioCodecCtx->global_quality * FF_QP2LAMBDA;
|
||||
mEncAudioCodecCtx->sample_rate = mSampleRate;
|
||||
mEncAudioCodecCtx->channels = mChannels;
|
||||
|
Loading…
x
Reference in New Issue
Block a user