Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions NAM/dsp.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,10 @@ class DSP
/// \param outputLevel Output level in dBu
void SetOutputLevel(const double outputLevel);

/// \brief Get the maximum buffer size
/// \return Maximum buffer size
int GetMaxBufferSize() const { return mMaxBufferSize; };

protected:
friend class wavenet::WaveNet; // Allow WaveNet to access protected members. Used in condition DSP.

Expand All @@ -208,10 +212,6 @@ class DSP
/// \param maxBufferSize Maximum number of frames to process in a single call
virtual void SetMaxBufferSize(const int maxBufferSize);

/// \brief Get the maximum buffer size
/// \return Maximum buffer size
int GetMaxBufferSize() const { return mMaxBufferSize; };

private:
const int mInChannels;
const int mOutChannels;
Expand Down
Loading