diff options
Diffstat (limited to 'src/engine/Driver.hpp')
-rw-r--r-- | src/engine/Driver.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/Driver.hpp b/src/engine/Driver.hpp index 53db2ab1..3712b93b 100644 --- a/src/engine/Driver.hpp +++ b/src/engine/Driver.hpp @@ -105,8 +105,8 @@ public: virtual void set_root_patch(PatchImpl* patch) = 0; virtual PatchImpl* root_patch() = 0; - /** Return the buffer size in frames (i.e. the maximum length of a process cycle) */ - virtual SampleCount buffer_size() const = 0; + /** Return the audio buffer size in frames (i.e. the maximum length of a process cycle) */ + virtual SampleCount block_length() const = 0; /** Return the sample rate in Hz */ virtual SampleCount sample_rate() const = 0; |