13
0

Comment tweak.

git-svn-id: svn://localhost/ardour2/branches/3.0@12633 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-06-09 21:06:12 +00:00
parent 4e906f7607
commit 9dc61bff3a

View File

@ -218,7 +218,7 @@ AudioPlaylist::read (Sample *buf, Sample *mixdown_buffer, float *gain_buffer, fr
Evoral::RangeList<framepos_t> region_to_do = Evoral::subtract (region_range, done);
/* Read those bits, adding their bodies (the parts between end-of-fade-in
/* Make a note to read those bits, adding their bodies (the parts between end-of-fade-in
and start-of-fade-out) to the `done' list.
*/
@ -258,7 +258,7 @@ AudioPlaylist::check_crossfades (Evoral::Range<framepos_t> range)
if (in_set_state || in_partition || !_session.config.get_auto_xfade ()) {
return;
}
boost::shared_ptr<RegionList> starts = regions_with_start_within (range);
boost::shared_ptr<RegionList> ends = regions_with_end_within (range);
@ -307,7 +307,7 @@ AudioPlaylist::check_crossfades (Evoral::Range<framepos_t> range)
}
Evoral::OverlapType const c = top->coverage (bottom->position(), bottom->last_frame());
if (c == Evoral::OverlapStart) {
/* top starts within bottom but covers bottom's end */
@ -344,7 +344,7 @@ AudioPlaylist::check_crossfades (Evoral::Range<framepos_t> range)
break;
}
}
top->set_fade_in_active (true);
top->set_fade_in_is_xfade (true);