From 71b44e93084a82f2821db3e83fcc762d4800bebd Mon Sep 17 00:00:00 2001 From: GZharun Date: Tue, 27 Jan 2015 10:45:04 +0200 Subject: [PATCH] [Summary] HOT FIX: the returned value should be 65536 samples, which is an equivalent to 262144 bytes [Reviewed by] Paul Davis --- libs/ardour/diskstream.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/diskstream.cc b/libs/ardour/diskstream.cc index dd8e2f43d6..09629b673e 100644 --- a/libs/ardour/diskstream.cc +++ b/libs/ardour/diskstream.cc @@ -812,14 +812,14 @@ Diskstream::default_disk_read_chunk_frames() return 65536; #endif*/ //GZ to Paul Davis FIX-ME restored old value which used to work with current ring buffer capacity - return 262144; + return 65536; } framecnt_t Diskstream::default_disk_write_chunk_frames () { //GZ to Paul Davis FIX-ME restored old value which used to work with current ring buffer capacity - return 262144; + return 65536; } void