diff options
| author | Gary Scavone <gary@music.mcgill.ca> | 2014-04-09 15:14:30 -0400 |
|---|---|---|
| committer | Gary Scavone <gary@music.mcgill.ca> | 2014-04-09 15:14:30 -0400 |
| commit | 25b45950168d2a477fb975567dbff750b5d8e5ba (patch) | |
| tree | a52b3e1380dbcee4a948d11638478b3a4bb3a813 /doc | |
| parent | 0d0fb5433a2be8723a392b943111aea75b301333 (diff) | |
Bug fix for DS enumeration when devices are unplugged; bug fix if an error occurs when opening a stream after a previous stream was closed; various documentation updates in preparation for release 4.1.0.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/doxygen/compiling.txt | 8 | ||||
| -rw-r--r-- | doc/doxygen/footer.html | 2 | ||||
| -rw-r--r-- | doc/doxygen/tutorial.txt | 26 | ||||
| -rw-r--r-- | doc/release.txt | 4 |
4 files changed, 23 insertions, 17 deletions
diff --git a/doc/doxygen/compiling.txt b/doc/doxygen/compiling.txt index 9e9cab2..3fa52cc 100644 --- a/doc/doxygen/compiling.txt +++ b/doc/doxygen/compiling.txt @@ -75,6 +75,14 @@ In order to compile RtAudio for a specific OS and audio API, it is necessary to <TD><I>various ASIO header and source files</I></TD> <TD><I>compiler specific</I></TD> </TR> +<TR> + <TD>Windows</TD> + <TD>WASAPI</TD> + <TD>RtApiWasapi</TD> + <TD>__WINDOWS_WASAPI__</TD> + <TD><I>various ASIO header and source files</I></TD> + <TD><I>compiler specific ... not currently working with MingW compiler</I></TD> +</TR> </TABLE> <P> diff --git a/doc/doxygen/footer.html b/doc/doxygen/footer.html index 4f5b71c..086b22b 100644 --- a/doc/doxygen/footer.html +++ b/doc/doxygen/footer.html @@ -1,7 +1,7 @@ <HR> <table><tr><td><img src="../images/mcgill.gif" width=165></td> - <td>©2001-2013 Gary P. Scavone, McGill University. All Rights Reserved.<br>Maintained by <a href="http://www.music.mcgill.ca/~gary/">Gary P. Scavone</a>.</td></tr> + <td>©2001-2014 Gary P. Scavone, McGill University. All Rights Reserved.<br>Maintained by <a href="http://www.music.mcgill.ca/~gary/">Gary P. Scavone</a>.</td></tr> </table> </BODY> diff --git a/doc/doxygen/tutorial.txt b/doc/doxygen/tutorial.txt index 41f3bc0..66521d9 100644 --- a/doc/doxygen/tutorial.txt +++ b/doc/doxygen/tutorial.txt @@ -19,21 +19,17 @@ RtAudio incorporates the concept of audio streams, which represent audio output A minor API change was made. The RtError class was renamed RtAudioError and embedded directly in RtAudio.h. Thus, all references to RtError should be renamed to RtAudioError and the RtError.h file should be deleted. -Changes in the previous 4.0.12 release included: - -- new functionality to allow error reporting via a client-supplied function (thanks to Pavel Mogilevskiy) -- new function to return the version number -- updated RtAudio.cpp and ASIO files for UNICODE support (thanks to Renaud Schoonbroodt) -- updates to PulseAudio API support (thanks to Peter Meerwald and Tristan Matthews) -- updates for pkg-config support in configure script -- 24-bit format changed to true 24-bit format, not sub-bytes of 32-bits (thanks to Marc Britton) -- bug fixes to make sure stream status is closed if error during probeDeviceOpen -- updates / fixes to SCHED_RR code in ALSA (thanks to Marc Lindahl) -- various changes to avoid global variables (thanks to Martin Koegler) +Other changes in this release include: + +- new support for the Windows WASAPI API (thanks to Marcus Tomlinson) +- pulse audio update to support bufferFrames argument with audio input (thanks to Jonatan Wallmander) +- fixes for ALSA API to avoid high CPU usage during stops and to clear stale data before input (thanks to Pluto Hades) +- miscellaneous efficiency updates suggested by Martin Koegler +- bug fix for OS-X xrun reporting problem \section download Download -Latest Release (?? 2014): <A href="http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-4.1.0.tar.gz">Version 4.1.0</A> +Latest Release (?? April 2014): <A href="http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-4.1.0.tar.gz">Version 4.1.0</A> \section documentation Documentation Links @@ -48,8 +44,8 @@ Latest Release (?? 2014): <A href="http://www.music.mcgill.ca/~gary/rtaudio/rele -# \ref apinotes -# \ref acknowledge -# \ref license --# <A href="bugs.html">Bug Tracker</A> --# <A href="updates.html">Possible Updates</A> --# <A href="http://sourceforge.net/projects/rtaudio">RtAudio at SourceForge</A> +-# <A href="bugs.html">Bug Tracker (out of date)</A> +-# <A href="updates.html">Possible Updates (out of date)</A> +-# <A href="http://github.com/thestk/rtaudio">RtAudio on GitHub</A> */ diff --git a/doc/release.txt b/doc/release.txt index 0779b79..7567187 100644 --- a/doc/release.txt +++ b/doc/release.txt @@ -2,12 +2,14 @@ RtAudio - a set of C++ classes that provide a common API for realtime audio inpu By Gary P. Scavone, 2001-2014. -v4.1.0: (?? 2014) +v4.1.0: (?? April 2014) - RtError class renamed RtAudioError and embedded in RtAudio.h (RtError.h deleted) +- new support for the Windows WASAPI API (thanks to Marcus Tomlinson) - pulse audio update to support bufferFrames argument with audio input (thanks to Jonatan Wallmander) - fixes for ALSA API to avoid high CPU usage during stops and to clear stale data before input (thanks to Pluto Hades) - miscellaneous efficiency updates suggested by Martin Koegler - bug fix for OS-X xrun reporting problem +- bug fix related to error when opening a stream after closing a previously open stream v4.0.12: (16 April 2013) - new functionality to allow error reporting via a client-supplied function (thanks to Pavel Mogilevskiy) |
