Mp3 encoding with the lame plugin was broken due to a partly initialized
lame_global_flags struct in /plugins/libmp3lame_encoder/mp3encoder.cc.
I removed the new instance of this struct altogether, since I suspect that
it had not function whatsoever anymore.

Bram
-- 
[EMAIL PROTECTED] - http://www.stack.nl/%7Ebrama/

"Eye for an eye, will make the whole world go blind" - Ghandi
63d62
<     lame_global_flags lgf;
73d71
<     lame_init_params(&lgf);
76c74
<     mp3extra.nBlockSize      = lgf.framesize;      // based on an
---
>     mp3extra.nBlockSize      = gf.framesize;      // based on an

Reply via email to