summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 00:01:23 +0200
committerStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 00:01:23 +0200
commit629897daa5bfc106ca2c09ebef96fdc7b8d5e6b1 (patch)
tree6b26dd0a3a6b0878df9f67c2ada9c24d57a4d8b6
parent830706e4368bb27d4c7d8138fbce4e393cedcd2f (diff)
parent2b55be781872498a3b4c6cde60be4c2f69ec7eb4 (diff)
Merge 3.0.1 into releases
-rw-r--r--RtAudio.cpp4
-rw-r--r--RtAudio.h5
-rw-r--r--doc/doxygen/tutorial.txt2
-rw-r--r--doc/release.txt3
4 files changed, 8 insertions, 6 deletions
diff --git a/RtAudio.cpp b/RtAudio.cpp
index 4211e4e..767908d 100644
--- a/RtAudio.cpp
+++ b/RtAudio.cpp
@@ -37,7 +37,7 @@
*/
/************************************************************************/
-// RtAudio: Version 3.0, 11 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 );
}
diff --git a/RtAudio.h b/RtAudio.h
index cf39ab4..fa2d494 100644
--- a/RtAudio.h
+++ b/RtAudio.h
@@ -37,7 +37,7 @@
*/
/************************************************************************/
-// RtAudio: Version 3.0, 11 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.
diff --git a/doc/doxygen/tutorial.txt b/doc/doxygen/tutorial.txt
index 6623c0e..9b45bbc 100644
--- a/doc/doxygen/tutorial.txt
+++ b/doc/doxygen/tutorial.txt
@@ -38,7 +38,7 @@ The RtError class declaration and definition have been extracted to a separate f
\section download Download
-Latest Release (11 March 2004): <A href="http://music.mcgill.ca/~gary/rtaudio/release/rtaudio-3.0.tar.gz">Version 3.0 (200 kB tar/gzipped)</A>
+Latest Release (22 March 2004): <A href="http://music.mcgill.ca/~gary/rtaudio/release/rtaudio-3.0.1.tar.gz">Version 3.0.1 (200 kB tar/gzipped)</A>
\section start Getting Started
diff --git a/doc/release.txt b/doc/release.txt
index b171916..ad9c8e9 100644
--- a/doc/release.txt
+++ b/doc/release.txt
@@ -2,6 +2,9 @@ RtAudio - a set of C++ classes which provide a common API for realtime audio inp
By Gary P. Scavone, 2001-2004.
+v3.0.1: (22 March 2004)
+- bug fix in Windows DirectSound support for cards with output only
+
v3.0: (11 March 2004)
- added Linux Jack audio server support
- new multi-api support by subclassing all apis and making rtaudio a controller class