mirror of
https://github.com/thestk/stk
synced 2026-04-26 09:08:37 +00:00
Version 4.4.1
This commit is contained in:
committed by
Stephen Sinclair
parent
eccd8c9981
commit
b6a2202011
@@ -42,7 +42,7 @@
|
||||
\file RtAudio.h
|
||||
*/
|
||||
|
||||
// RtAudio: Version 4.0.5
|
||||
// RtAudio: Version 4.0.6
|
||||
|
||||
#ifndef __RTAUDIO_H
|
||||
#define __RTAUDIO_H
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
*/
|
||||
/**********************************************************************/
|
||||
|
||||
// RtMidi: Version 1.0.9
|
||||
// RtMidi: Version 1.0.10
|
||||
|
||||
#ifndef RTMIDI_H
|
||||
#define RTMIDI_H
|
||||
|
||||
@@ -73,7 +73,7 @@ class RtWvOut : public WvOut
|
||||
checked if _STK_DEBUG_ is defined during compilation, in which
|
||||
case an incompatibility will trigger an StkError exception.
|
||||
*/
|
||||
void tick( StkFrames& frames );
|
||||
void tick( const StkFrames& frames );
|
||||
|
||||
// This function is not intended for general use but must be
|
||||
// public for access from the audio callback function.
|
||||
|
||||
@@ -31,6 +31,9 @@ public:
|
||||
//! Compute one sample frame and return the specified \c channel value.
|
||||
virtual StkFloat tick( unsigned int channel = 0 ) = 0;
|
||||
|
||||
//! Fill the StkFrames argument with computed frames and return the same reference.
|
||||
virtual StkFrames& tick( StkFrames& frames ) = 0;
|
||||
|
||||
protected:
|
||||
|
||||
StkFrames data_;
|
||||
|
||||
@@ -44,6 +44,9 @@ class WvOut : public Stk
|
||||
*/
|
||||
virtual void tick( const StkFloat sample ) = 0;
|
||||
|
||||
//! Output the StkFrames data.
|
||||
virtual void tick( const StkFrames& frames ) = 0;
|
||||
|
||||
protected:
|
||||
|
||||
// Check for sample clipping and clamp.
|
||||
|
||||
Reference in New Issue
Block a user