[Summary] HOT FIX: the returned value should be 65536 samples, which is an equivalent to 262144 bytes

[Reviewed by] Paul Davis
This commit is contained in:
GZharun 2015-01-27 10:45:04 +02:00
parent 10ed615772
commit 71b44e9308

View file

@ -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