13
0

another buffersize fix (see #5221 and rev13715)

git-svn-id: svn://localhost/ardour2/branches/3.0@13720 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Robin Gareus 2012-12-23 19:31:45 +00:00
parent 836948506a
commit 8380c06e32

View File

@ -224,8 +224,8 @@ Diskstream::realtime_set_speed (double sp, bool global)
if (new_speed != _actual_speed) { if (new_speed != _actual_speed) {
framecnt_t required_wrap_size = (framecnt_t) floor (_session.get_block_size() * framecnt_t required_wrap_size = (framecnt_t) ceil (_session.get_block_size() *
fabs (new_speed)) + 1; fabs (new_speed)) + 2;
if (required_wrap_size > wrap_buffer_size) { if (required_wrap_size > wrap_buffer_size) {
_buffer_reallocation_required = true; _buffer_reallocation_required = true;