lame: Set quality level to 2

Set the quality level to 2 as per recommended by the lame headers as
"near-best quality, not too slow."
master
Alex Smith 2014-07-23 20:05:55 -04:00
parent 85b19ee91a
commit 3227399ed8
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ public:
lame_set_out_samplerate(lgf, App->GetSampleRateHz());
lame_set_num_channels(lgf, App->NumAudioChannels());
lame_set_disable_reservoir(lgf, TRUE); //bit reservoir has to be disabled for seamless streaming
lame_set_quality(lgf, 2);
lame_set_VBR(lgf, vbr_off);
lame_set_brate(lgf, bitRate);
lame_init_params(lgf);