I learned how to encode wav into an mp3 using lame_encode_buffer_interleaved from this question: Is there any LAME c++ wraper\simplifier (working on Linux Mac and Win from pure code)?

Now I want to decode the mp3 back into wav. I know there's lame_decode but I don't know how to use it since it requires two pcm buffers (pcm_l and pcm_r). I don't understand how to put them together into a well-formed wav file, because I don't really know how they works.

Now can someone provide a simple working example on decoding an mp3 into a wav using lame in C/C++?

Thanks.

link|improve this question

50% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Take a look into the lame fronted source code. Start at thelame_decoder function in the /frontend/lame_main.c file, it decodes a mp3 file and write the wave header.

link|improve this answer
1  
You mean: /frontend/lame_main.c -> lame_decoder(...) – TacB0sS Feb 11 at 18:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.