1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-04 22:49:07 +02:00

Do not disable the bit reservoir as space is wasted in each

frame that could be utilized by succeeding frame.
This commit is contained in:
lllucius 2011-03-31 22:44:44 +00:00
parent 4474d348b3
commit 549ce5920a

View File

@ -1164,7 +1164,7 @@ int MP3Exporter::InitializeStream(int channels, int sampleRate)
lame_set_num_channels(mGF, channels); lame_set_num_channels(mGF, channels);
lame_set_in_samplerate(mGF, sampleRate); lame_set_in_samplerate(mGF, sampleRate);
lame_set_out_samplerate(mGF, sampleRate); lame_set_out_samplerate(mGF, sampleRate);
lame_set_disable_reservoir(mGF, true); lame_set_disable_reservoir(mGF, false);
lame_set_padding_type(mGF, PAD_NO); lame_set_padding_type(mGF, PAD_NO);
// Add the VbrTag for all types. For ABR/VBR, a Xing tag will be created. // Add the VbrTag for all types. For ABR/VBR, a Xing tag will be created.