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
1 changed files with 1 additions and 1 deletions

View File

@ -1164,7 +1164,7 @@ int MP3Exporter::InitializeStream(int channels, int sampleRate)
lame_set_num_channels(mGF, channels);
lame_set_in_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);
// Add the VbrTag for all types. For ABR/VBR, a Xing tag will be created.