Click here to Skip to main content
15,867,568 members
Articles / Desktop Programming / MFC
Article

DLL To Decode MP3 To WAV/PCM

Rate me:
Please Sign up or sign in to vote.
4.56/5 (19 votes)
12 Jul 20043 min read 380.5K   9.2K   83   98
Source code to produce a DLL that converts MP3 files to WAV or PCM. It is based on the open source library libmad.

Sample Image - madlldlib.gif

Introduction

libmad is a powerful open source library written in C that decodes MP3 files to uncompressed PCM data. However, it compiles as a static library, limiting its access to C/C++. I have written code (based on the source madlld) that compiles to a DLL, enabling other languages (i.e., C#, Visual Basic etc.) to access the libmad library using the simple interface I've provided.

Programming the API

The DLL source is well documented, so I will concentrate on using the API, and allow the curious to poke around the guts on their own (it is likely that the API is of most interest to most people). However, a brief overview of the source is in order.

madlldlib is codified into a single, simple interface, consisting of just one function, CbMpegAudioDecoder(), which takes the names of the input and output files, and a callback function as parameters. The callback function is passed information about the decoding process (such as total bytes converted and frame count) as it decodes, which in turn can be used to update decoding status in whatever interface the developer chooses.

There is a small file, test.cpp, included in the source which demonstrates the API. It is kept as simple as possible to make it easy to understand.

First, test.cpp defines a function called mycb(). This function is the callback (function pointer) that madlldlib will send decoding status to. It is within this function that you will update status in your application. test.cpp merely formats the output and prints it to STDOUT.

C++
void __stdcall mycb (unsigned long fcnt, 
   unsigned long bcnt, struct mad_header *mhdr) {

    /*
     * If this is the first iteration (frame count is one)
     * then print out the MP3 layer information. Using this logic
     * one can retrieve information about the MP3 file, such as 
     * channels, layer, etc., that might be useful to the calling
     * code.
     */    
    if (fcnt == 1) {
        printf("frame:%d, tot. bytes:%d, layer:%d\n",fcnt,bcnt,mhdr->layer);
    }
    else {
        printf("frame:%d, tot. bytes:%d\n",fcnt,bcnt);
    }
    
}

As you can see, the output is very simple. You must define a function in your code with exactly the parameter types that mycb() has defined above (the names of the parameters, obviously, are up to you).

Next, we move into the main() function. After checking arguments and handling filenames, it calls the decoding function CbMpegAudioDecoder() with the given parameters.

C++
/* call the decoding function with input file,
 * output file, and callback (defined above). */
if (strcmp(argv[2], "pcm")==0) {        /* output raw PCM */
    status = CbMpegAudioDecoder(argv[1], outf, 0, statmsg, mycb);
}
else {                                    /* output as WAV */
    status = CbMpegAudioDecoder(argv[1], outf, 1, statmsg, mycb);
}

Note that it passed our callback function mycb() to CbMpegAudioDecoder(), which will send it information every decoding loop. The other item of interest is the parameter statmsg, which is used to relay any error messages our function may encounter. If, say, the MP3 file is corrupt, this message will end up in statmsg, which you can use to pass on to the user of your application.

The two files, armslen.cpp and armslen_test.cpp, give an example of decoding while sending status via a named pipe. This way you do not have to use madlldlib as a DLL in your project if you don't desire to. armslen.cpp compiles to an executable that takes parameters similar to test.cpp (input filename, output filename, output format). It then generates a named pipe server, and waits until a client program connects (armslen_test.cpp). Once the client makes the connection, armslen.cpp sends the decoding update status to the named pipe while it decodes the MP3. The client can then pick up, parse, and use the status to update its interface.

Source and Contact

The most current code will always be here.

If you have comments or questions, you can direct them to the mailing list madlldlib-dev.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWhat a disappointment Pin
Member 1200655723-Sep-15 6:07
Member 1200655723-Sep-15 6:07 
QuestionHow can we use it with C# Pin
brenntengel@yahoo.fr13-May-14 9:15
brenntengel@yahoo.fr13-May-14 9:15 
GeneralMy vote of 5 Pin
Revnge_SevnFold20-Nov-12 4:25
Revnge_SevnFold20-Nov-12 4:25 
Generalunable to load DLL 'madlldlib.dll' Pin
Muwanga Simon Peter27-Mar-10 7:48
Muwanga Simon Peter27-Mar-10 7:48 
QuestionHow to convert 24 bit, 48 KHz, PCM Stereo audio file to 16 bit, 48 KHz, PCM Stereo Pin
Programmervcpp16-Nov-08 20:46
Programmervcpp16-Nov-08 20:46 
GeneralEndian Pin
ds494023-Sep-08 16:42
ds494023-Sep-08 16:42 
GeneralMemory access error in C# Pin
peter.roca16-Sep-08 12:14
peter.roca16-Sep-08 12:14 
Questionhow to build a new dll using this source code? Pin
flyhawkxjtu8-Apr-08 4:18
flyhawkxjtu8-Apr-08 4:18 
Questionhow to config this program to 16 bit output? Pin
flyhawkxjtu8-Apr-08 1:32
flyhawkxjtu8-Apr-08 1:32 
GeneralConvert mp3 file to byte array Pin
ramyam20-Mar-08 21:25
ramyam20-Mar-08 21:25 
GeneralRe: Convert mp3 file to byte array Pin
gilad-ap4-Apr-08 7:05
gilad-ap4-Apr-08 7:05 
Questionwhere i find "mad.h" ??? Pin
nyamnyam15-Jan-08 2:01
nyamnyam15-Jan-08 2:01 
AnswerRe: where i find "mad.h" ??? Pin
gilad-ap4-Apr-08 6:22
gilad-ap4-Apr-08 6:22 
GeneralRe: where i find "mad.h" ??? Pin
Feroz Gora10-Feb-11 13:04
Feroz Gora10-Feb-11 13:04 
GeneralRe: where i find "mad.h" ??? Pin
sungengyu16-Mar-11 20:58
sungengyu16-Mar-11 20:58 
GeneralRe: where i find "mad.h" ??? Pin
sungengyu16-Mar-11 20:58
sungengyu16-Mar-11 20:58 
Generalcrash with strcpy and strcat in VC++ Pin
addicted_to_cpp16-Nov-07 11:25
addicted_to_cpp16-Nov-07 11:25 
QuestionDecode mp3 to wav on visual basic 6 Pin
Mario Zaizar29-Jan-07 9:38
Mario Zaizar29-Jan-07 9:38 
AnswerRe: Decode mp3 to wav on visual basic 6 Pin
addicted_to_cpp16-Nov-07 11:20
addicted_to_cpp16-Nov-07 11:20 
AnswerRe: Decode mp3 to wav on visual basic 6 - code sample for DLL Pin
tsargeant25-Nov-09 22:29
tsargeant25-Nov-09 22:29 
GeneralRe: Decode mp3 to wav on visual basic 6 - code sample for DLL Pin
Pappsegull13-Feb-11 15:29
Pappsegull13-Feb-11 15:29 
GeneralRe: Decode mp3 to wav on visual basic 6 - code sample for DLL Pin
Member 1200655723-Sep-15 6:27
Member 1200655723-Sep-15 6:27 
Generalconvert and return blocks[] Pin
donperry26-Dec-06 6:01
donperry26-Dec-06 6:01 
GeneralRe: convert and return blocks[] Pin
gilad-ap29-Jan-07 9:45
gilad-ap29-Jan-07 9:45 
GeneralLEC Pin
chenjunxuman19-Oct-06 14:37
chenjunxuman19-Oct-06 14:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.