mirror of
https://github.com/LMMS/lmms.git
synced 2026-07-12 22:52:28 -04:00
* Add FLAC export, based on WAV renderer * Depend on sndfile>=1.0.18 (previously >=1.0.11) * Add compression option to FLAC export, if available. The code related to compression is only generated if LMMS_HAVE_SF_COMPLEVEL is defined(libsndfile>=1.0.26). * Save into the correct file extension upon single-export. * Use unique_ptr in FLAC renderer and be more expressive about involved types. * Use unique_ptr and remove manual memory management in ExportProjectDialog * Add 'flac' format info to --help and manpage
259 lines
5.8 KiB
C++
259 lines
5.8 KiB
C++
/*
|
|
* ProjectRenderer.cpp - ProjectRenderer-class for easily rendering projects
|
|
*
|
|
* Copyright (c) 2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
*
|
|
* This file is part of LMMS - https://lmms.io
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program (see COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
|
|
#include <QFile>
|
|
|
|
#include "ProjectRenderer.h"
|
|
#include "Song.h"
|
|
|
|
#include "AudioFileWave.h"
|
|
#include "AudioFileOgg.h"
|
|
#include "AudioFileMP3.h"
|
|
#include "AudioFileFlac.h"
|
|
|
|
#ifdef LMMS_HAVE_SCHED_H
|
|
#include "sched.h"
|
|
#endif
|
|
|
|
const ProjectRenderer::FileEncodeDevice ProjectRenderer::fileEncodeDevices[] =
|
|
{
|
|
|
|
{ ProjectRenderer::WaveFile,
|
|
QT_TRANSLATE_NOOP( "ProjectRenderer", "WAV-File (*.wav)" ),
|
|
".wav", &AudioFileWave::getInst },
|
|
{ ProjectRenderer::FlacFile,
|
|
QT_TRANSLATE_NOOP("ProjectRenderer", "FLAC-File (*.flac)"),
|
|
".flac",
|
|
&AudioFileFlac::getInst
|
|
},
|
|
{ ProjectRenderer::OggFile,
|
|
QT_TRANSLATE_NOOP( "ProjectRenderer", "Compressed OGG-File (*.ogg)" ),
|
|
".ogg",
|
|
#ifdef LMMS_HAVE_OGGVORBIS
|
|
&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
|
|
// user can add own encoders inside the program...
|
|
|
|
{ ProjectRenderer::NumFileFormats, NULL, NULL, NULL }
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
ProjectRenderer::ProjectRenderer( const Mixer::qualitySettings & qualitySettings,
|
|
const OutputSettings & outputSettings,
|
|
ExportFileFormats exportFileFormat,
|
|
const QString & outputFilename ) :
|
|
QThread( Engine::mixer() ),
|
|
m_fileDev( NULL ),
|
|
m_qualitySettings( qualitySettings ),
|
|
m_oldQualitySettings( Engine::mixer()->currentQualitySettings() ),
|
|
m_progress( 0 ),
|
|
m_abort( false )
|
|
{
|
|
AudioFileDeviceInstantiaton audioEncoderFactory = fileEncodeDevices[exportFileFormat].m_getDevInst;
|
|
|
|
if (audioEncoderFactory)
|
|
{
|
|
bool successful = false;
|
|
|
|
m_fileDev = audioEncoderFactory(
|
|
outputFilename, outputSettings, DEFAULT_CHANNELS,
|
|
Engine::mixer(), successful );
|
|
if( !successful )
|
|
{
|
|
delete m_fileDev;
|
|
m_fileDev = NULL;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectRenderer::~ProjectRenderer()
|
|
{
|
|
Engine::mixer()->restoreAudioDevice(); // also deletes audio-dev
|
|
Engine::mixer()->changeQuality( m_oldQualitySettings );
|
|
}
|
|
|
|
|
|
|
|
|
|
// little help-function for getting file-format from a file-extension (only for
|
|
// registered file-encoders)
|
|
ProjectRenderer::ExportFileFormats ProjectRenderer::getFileFormatFromExtension(
|
|
const QString & _ext )
|
|
{
|
|
int idx = 0;
|
|
while( fileEncodeDevices[idx].m_fileFormat != NumFileFormats )
|
|
{
|
|
if( QString( fileEncodeDevices[idx].m_extension ) == _ext )
|
|
{
|
|
return( fileEncodeDevices[idx].m_fileFormat );
|
|
}
|
|
++idx;
|
|
}
|
|
|
|
return( WaveFile ); // default
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProjectRenderer::getFileExtensionFromFormat(
|
|
ExportFileFormats fmt )
|
|
{
|
|
return fileEncodeDevices[fmt].m_extension;
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectRenderer::startProcessing()
|
|
{
|
|
|
|
if( isReady() )
|
|
{
|
|
// have to do mixer stuff with GUI-thread-affinity in order to
|
|
// make slots connected to sampleRateChanged()-signals being
|
|
// called immediately
|
|
Engine::mixer()->setAudioDevice( m_fileDev,
|
|
m_qualitySettings, false );
|
|
|
|
start(
|
|
#ifndef LMMS_BUILD_WIN32
|
|
QThread::HighPriority
|
|
#endif
|
|
);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
void ProjectRenderer::run()
|
|
{
|
|
#if 0
|
|
#ifdef LMMS_BUILD_LINUX
|
|
#ifdef LMMS_HAVE_SCHED_H
|
|
cpu_set_t mask;
|
|
CPU_ZERO( &mask );
|
|
CPU_SET( 0, &mask );
|
|
sched_setaffinity( 0, sizeof( mask ), &mask );
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
Engine::getSong()->startExport();
|
|
Engine::getSong()->updateLength();
|
|
//skip first empty buffer
|
|
Engine::mixer()->nextBuffer();
|
|
|
|
const Song::PlayPos & exportPos = Engine::getSong()->getPlayPos(
|
|
Song::Mode_PlaySong );
|
|
m_progress = 0;
|
|
std::pair<MidiTime, MidiTime> exportEndpoints = Engine::getSong()->getExportEndpoints();
|
|
tick_t startTick = exportEndpoints.first.getTicks();
|
|
tick_t endTick = exportEndpoints.second.getTicks();
|
|
tick_t lengthTicks = endTick - startTick;
|
|
|
|
// Continually track and emit progress percentage to listeners
|
|
while( exportPos.getTicks() < endTick &&
|
|
Engine::getSong()->isExporting() == true
|
|
&& !m_abort )
|
|
{
|
|
m_fileDev->processNextBuffer();
|
|
const int nprog = lengthTicks == 0 ? 100 : (exportPos.getTicks()-startTick) * 100 / lengthTicks;
|
|
if( m_progress != nprog )
|
|
{
|
|
m_progress = nprog;
|
|
emit progressChanged( m_progress );
|
|
}
|
|
}
|
|
|
|
// notify mixer of the end of processing
|
|
Engine::mixer()->stopProcessing();
|
|
|
|
Engine::getSong()->stopExport();
|
|
|
|
// if the user aborted export-process, the file has to be deleted
|
|
const QString f = m_fileDev->outputFile();
|
|
if( m_abort )
|
|
{
|
|
QFile( f ).remove();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectRenderer::abortProcessing()
|
|
{
|
|
m_abort = true;
|
|
wait();
|
|
}
|
|
|
|
|
|
|
|
void ProjectRenderer::updateConsoleProgress()
|
|
{
|
|
const int cols = 50;
|
|
static int rot = 0;
|
|
char buf[80];
|
|
char prog[cols+1];
|
|
|
|
for( int i = 0; i < cols; ++i )
|
|
{
|
|
prog[i] = ( i*100/cols <= m_progress ? '-' : ' ' );
|
|
}
|
|
prog[cols] = 0;
|
|
|
|
const char * activity = (const char *) "|/-\\";
|
|
memset( buf, 0, sizeof( buf ) );
|
|
sprintf( buf, "\r|%s| %3d%% %c ", prog, m_progress,
|
|
activity[rot] );
|
|
rot = ( rot+1 ) % 4;
|
|
|
|
fprintf( stderr, "%s", buf );
|
|
fflush( stderr );
|
|
}
|
|
|
|
|
|
|