From 027261bc33ee826b680066a92e1e79467dd9f15d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 13 Oct 2008 16:54:27 +0000 Subject: [PATCH] additional ancestral_length = 0 initialization git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3955 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/region.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc index 5efa20c8d7..1e6fd5daa7 100644 --- a/libs/ardour/region.cc +++ b/libs/ardour/region.cc @@ -65,8 +65,8 @@ Region::Region (nframes_t start, nframes_t length, const string& name, layer_t l _sync_position = _start; _length = length; _last_length = length; - _ancestral_start = 0; - _ancestral_length = length; + _ancestral_start = 0; // see comments in various libs/ardour/*_effect.cc + _ancestral_length = 0; // ditto _stretch = 1.0; _shift = 1.0; _last_position = 0;