mirror of
https://github.com/LMMS/lmms.git
synced 2026-07-13 15:12:29 -04:00
Implement MP3 encoding support
Implement MP3 encoding support
This commit is contained in:
committed by
Tres Finocchiaro
parent
c53dd31064
commit
c2f26a76d4
@@ -30,6 +30,7 @@
|
||||
|
||||
#include "AudioFileWave.h"
|
||||
#include "AudioFileOgg.h"
|
||||
#include "AudioFileMP3.h"
|
||||
|
||||
#ifdef LMMS_HAVE_SCHED_H
|
||||
#include "sched.h"
|
||||
@@ -48,6 +49,15 @@ const ProjectRenderer::FileEncodeDevice ProjectRenderer::fileEncodeDevices[] =
|
||||
&AudioFileOgg::getInst
|
||||
#else
|
||||
NULL
|
||||
#endif
|
||||
},
|
||||
{ ProjectRenderer::MP3File,
|
||||
QT_TRANSLATE_NOOP( "ProjectRenderer", "Compressed MP3-File (*.mp3)" ),
|
||||
".mp3",
|
||||
#ifdef LMMS_HAVE_MP3LAME
|
||||
&AudioFileMP3::getInst
|
||||
#else
|
||||
NULL
|
||||
#endif
|
||||
},
|
||||
// ... insert your own file-encoder-infos here... may be one day the
|
||||
|
||||
Reference in New Issue
Block a user