mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 09:06:33 +01:00
change variable name to be more meaningful/indicative
This commit is contained in:
parent
53139a93d5
commit
7ca068f8d5
1 changed files with 3 additions and 3 deletions
|
|
@ -433,7 +433,7 @@ DiskReader::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_samp
|
||||||
|
|
||||||
/* MIDI data handling */
|
/* MIDI data handling */
|
||||||
|
|
||||||
const bool midi_data_available = !(pending_overwrite() & PlaylistModified);
|
const bool no_playlist_modification_pending = !(pending_overwrite() & PlaylistModified);
|
||||||
|
|
||||||
if (bufs.count().n_midi()) {
|
if (bufs.count().n_midi()) {
|
||||||
|
|
||||||
|
|
@ -444,14 +444,14 @@ DiskReader::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_samp
|
||||||
run_must_resolve = false;
|
run_must_resolve = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!_no_disk_output && !declick_in_progress() && (ms & MonitoringDisk) && !still_locating && midi_data_available && speed) {
|
if (!_no_disk_output && !declick_in_progress() && (ms & MonitoringDisk) && !still_locating && no_playlist_modification_pending && speed) {
|
||||||
get_midi_playback (dst, start_sample, end_sample, ms, scratch_bufs, speed, disk_samples_to_consume);
|
get_midi_playback (dst, start_sample, end_sample, ms, scratch_bufs, speed, disk_samples_to_consume);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* decide if we need the butler */
|
/* decide if we need the butler */
|
||||||
|
|
||||||
if (!still_locating && midi_data_available) {
|
if (!still_locating && no_playlist_modification_pending) {
|
||||||
|
|
||||||
bool butler_required = false;
|
bool butler_required = false;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue