Version 4.4.1

This commit is contained in:
Gary Scavone
2013-09-29 23:12:27 +02:00
committed by Stephen Sinclair
parent eccd8c9981
commit b6a2202011
16 changed files with 117 additions and 37 deletions

View File

@@ -42,7 +42,7 @@
\file RtAudio.h
*/
// RtAudio: Version 4.0.5
// RtAudio: Version 4.0.6
#ifndef __RTAUDIO_H
#define __RTAUDIO_H

View File

@@ -35,7 +35,7 @@
*/
/**********************************************************************/
// RtMidi: Version 1.0.9
// RtMidi: Version 1.0.10
#ifndef RTMIDI_H
#define RTMIDI_H

View File

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

View File

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

View File

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