From 549ce5920a939e1d13b7ff2fb83d5a370de10996 Mon Sep 17 00:00:00 2001 From: lllucius Date: Thu, 31 Mar 2011 22:44:44 +0000 Subject: [PATCH] Do not disable the bit reservoir as space is wasted in each frame that could be utilized by succeeding frame. --- src/export/ExportMP3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/export/ExportMP3.cpp b/src/export/ExportMP3.cpp index ca973b18b..fbd649889 100644 --- a/src/export/ExportMP3.cpp +++ b/src/export/ExportMP3.cpp @@ -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.