mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 12:45:45 +01:00
[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:
parent
10ed615772
commit
71b44e9308
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue