Version 4.1.3

This commit is contained in:
Gary Scavone
2009-03-24 23:02:13 -04:00
committed by Stephen Sinclair
parent 586b0add5f
commit cf06b7598b
4 changed files with 16 additions and 8 deletions

View File

@@ -2,6 +2,9 @@ The Synthesis ToolKit in C++ (STK)
By Perry R. Cook and Gary P. Scavone, 1995-2004.
v4.1.3: (22 March 2004)
- bug fix in RtAudio for Windows DirectSound output only support
v4.1.2: (15 March 2004)
- added Linux JACK support to RtAudio
- added optional doNormalize argument to WvIn to allow specification of data normalization or not

View File

@@ -1,15 +1,21 @@
/*! \page download Download and Release Notes
<B>Version 4.1.2, 15 March 2004</B><P>
<B>Version 4.1.3, 22 March 2004</B><P>
<UL>
<LI><A HREF="http://www-ccrma.stanford.edu/software/stk/release/stk-4.1.2.tar.gz">Source distribution</A></LI>
<LI><A HREF="http://www-ccrma.stanford.edu/software/stk/release/stk-4.1.2.binaries.tar.gz">Source with precompiled Windows binaries</A></LI>
<LI><A HREF="http://www-ccrma.stanford.edu/software/stk/release/stk-4.1.3.tar.gz">Source distribution</A></LI>
<LI><A HREF="http://www-ccrma.stanford.edu/software/stk/release/stk-4.1.3.binaries.tar.gz">Source with precompiled Windows binaries</A></LI>
<LI><A HREF="http://www-ccrma.stanford.edu/planetccrma/software/">Linux RPMs from Planet CCRMA</A></LI>
</UL>
\section notes Release Notes:
\subsection v4dot1dot3 Version 4.1.3
<ul>
<li>Bug fix in RtAudio for Windows DirectSound output only support</li>
</ul>
\subsection v4dot1dot2 Version 4.1.2
<UL>

View File

@@ -37,7 +37,7 @@
*/
/************************************************************************/
// RtAudio: Version 3.0, 1 March 2004
// RtAudio: Version 3.0.1, 22 March 2004
#ifndef __RTAUDIO_H
#define __RTAUDIO_H
@@ -186,8 +186,7 @@ protected:
RtApiStream()
:apiHandle(0), userBuffer(0), deviceBuffer(0) {}
// :apiHandle(0), mode(UNINITIALIZED), state(STREAM_STOPPED),
// userBuffer(0), deviceBuffer(0) {}
// mode(UNINITIALIZED), state(STREAM_STOPPED),
};
// A protected device structure for audio devices.

View File

@@ -37,7 +37,7 @@
*/
/************************************************************************/
// RtAudio: Version 3.0, 1 March 2004
// RtAudio: Version 3.0.1, 22 March 2004
#include "RtAudio.h"
#include <iostream>
@@ -5489,7 +5489,7 @@ void RtApiDs :: probeDeviceInfo(RtApiDevice *info)
}
else {
// Check input rates against output rate range.
for ( unsigned int i=info->sampleRates.size()-1; i>=0; i-- ) {
for ( int i=info->sampleRates.size()-1; i>=0; i-- ) {
if ( (unsigned int) info->sampleRates[i] > out_caps.dwMaxSecondarySampleRate )
info->sampleRates.erase( info->sampleRates.begin() + i );
}