summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/mp3fileimportable.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/libs/ardour/mp3fileimportable.cc b/libs/ardour/mp3fileimportable.cc
index 202ad8493c..99fc0a6384 100644
--- a/libs/ardour/mp3fileimportable.cc
+++ b/libs/ardour/mp3fileimportable.cc
@@ -158,7 +158,12 @@ Mp3FileImportableSource::seek (samplepos_t pos)
}
while (_read_position + _n_frames <= pos) {
- if (!decode_mp3 ()) {
+ /* skip ahead, until the frame before the target,
+ * then start decoding. This provides sufficient
+ * context to prevent audible hiccups, while still
+ * providing fast and accurate seeking.
+ */
+ if (!decode_mp3 (_read_position + 3 * _n_frames <= pos)) {
break;
}
_read_position += _n_frames;