summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_report.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-13 00:58:29 +0100
committerRobin Gareus <robin@gareus.org>2016-02-13 00:58:29 +0100
commit8bcefed2c7f8c860de5951851f79e3c47f4f018f (patch)
tree89ddd667e542f727b264693f6fcfd240ddc28369 /gtk2_ardour/export_report.cc
parent4fdd03892d1d1846c87589bf4e842f2c9cb5a6d7 (diff)
use "Good" resampling quality (lower initial play latency)
Diffstat (limited to 'gtk2_ardour/export_report.cc')
-rw-r--r--gtk2_ardour/export_report.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/export_report.cc b/gtk2_ardour/export_report.cc
index 34a884443b..1f443d1e05 100644
--- a/gtk2_ardour/export_report.cc
+++ b/gtk2_ardour/export_report.cc
@@ -698,7 +698,7 @@ ExportReport::audition (std::string path, unsigned n_chn, int page)
path, n,
Source::Flag (ARDOUR::AudioFileSource::NoPeakFile), false));
if (afs->sample_rate() != _session->nominal_frame_rate()) {
- boost::shared_ptr<SrcFileSource> sfs (new SrcFileSource(*_session, afs, ARDOUR::SrcBest));
+ boost::shared_ptr<SrcFileSource> sfs (new SrcFileSource(*_session, afs, ARDOUR::SrcGood));
srclist.push_back(sfs);
} else {
srclist.push_back(afs);