summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Scavone <gary@music.mcgill.ca>2009-02-02 21:27:24 +0000
committerStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 01:38:25 +0200
commit1022a7876a6ef1980ad5518340df177814783c7f (patch)
treefa0817ecb4f4a21a7ea8a90043baeb03e77682ab
parent94cc197efbeecaea4b0b5a55811ec7c1bbf2f20c (diff)
A few minor documentation updates before release (GS).
-rw-r--r--doc/doxygen/tutorial.txt2
-rw-r--r--doc/release.txt2
-rw-r--r--tests/playsaw.cpp1
3 files changed, 3 insertions, 2 deletions
diff --git a/doc/doxygen/tutorial.txt b/doc/doxygen/tutorial.txt
index 02e3bcb..7f7d5ae 100644
--- a/doc/doxygen/tutorial.txt
+++ b/doc/doxygen/tutorial.txt
@@ -32,7 +32,7 @@ Devices are now re-enumerated every time the RtAudio::getDeviceCount(), RtAudio:
\section download Download
-Latest Release (29 January 2009): <A href="http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-4.0.5.tar.gz">Version 4.0.5</A>
+Latest Release (2 February 2009): <A href="http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-4.0.5.tar.gz">Version 4.0.5</A>
\section documentation Documentation Links
diff --git a/doc/release.txt b/doc/release.txt
index 42a3fa9..d42b768 100644
--- a/doc/release.txt
+++ b/doc/release.txt
@@ -2,7 +2,7 @@ RtAudio - a set of C++ classes that provide a common API for realtime audio inpu
By Gary P. Scavone, 2001-2009.
-v4.0.5: (29 January 2009)
+v4.0.5: (2 February 2009)
- added support in CoreAudio for arbitrary stream channel configurations
- added getStreamSampleRate() function because the actual sample rate can sometimes vary slightly from the specified one (thanks to Theo Veenker)
- added new StreamOptions flag "RTAUDIO_SCHEDULE_REALTIME" and attribute "priority" to StreamOptions (thanks to Theo Veenker)
diff --git a/tests/playsaw.cpp b/tests/playsaw.cpp
index 019963b..b89d5f9 100644
--- a/tests/playsaw.cpp
+++ b/tests/playsaw.cpp
@@ -143,6 +143,7 @@ int main( int argc, char *argv[] )
oParams.firstChannel = offset;
options.flags |= RTAUDIO_HOG_DEVICE;
+ options.flags |= RTAUDIO_SCHEDULE_REALTIME;
#if !defined( USE_INTERLEAVED )
options.flags |= RTAUDIO_NONINTERLEAVED;
#endif