* Fix problem with JACK being left in freewheeling after export

* Add quotes to cuefile filename entries


git-svn-id: svn://localhost/ardour2/branches/3.0@4098 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sakari Bergen 2008-11-06 20:22:48 +00:00
parent 1d4b3c2f05
commit 641dbfcaa2
3 changed files with 4 additions and 5 deletions

View File

@ -53,7 +53,7 @@ struct ExportStatus {
sigc::signal<void> Finished;
void finish ();
bool finished () const { return _aborted; }
bool finished () const { return _finished; }
/* Progress info */

View File

@ -292,7 +292,7 @@ ExportHandler::write_cue_header (CDMarkerStatus & status)
if (!status.format->format_name().compare ("WAV")) {
status.out << "FILE " << status.filename << " WAVE" << endl;
} else {
status.out << "FILE " << status.filename << ' ' << status.format->format_name() << endl;
status.out << "FILE \"" << status.filename << "\" " << status.format->format_name() << endl;
}
}

View File

@ -93,6 +93,7 @@ Session::pre_export ()
_exporting = true;
export_status->running = true;
export_abort_connection = export_status->Aborting.connect (sigc::hide_return (sigc::mem_fun (*this, &Session::stop_audio_export)));
export_abort_connection = export_status->Finished.connect (sigc::hide_return (sigc::mem_fun (*this, &Session::finalize_audio_export)));
return 0;
}
@ -214,9 +215,7 @@ Session::stop_audio_export ()
if (!export_status->aborted()) {
ExportReadFinished ();
}
if (export_status->finished()) {
} else {
finalize_audio_export ();
}