Updates to RtAudio.cpp,h to fix deadlock in stopping stream (Core API). Other file...
[rtaudio-cdist.git] / doc / release.txt
1 RtAudio - a set of C++ classes that provide a common API for realtime audio input/output across Linux (native ALSA, JACK, and OSS), Macintosh OS X (CoreAudio and JACK), and Windows (DirectSound and ASIO) operating systems.
2
3 By Gary P. Scavone, 2001-2012.
4
5 v4.0.11: (?? June 2012)
6 - fixes for memory leaks in ALSA (thanks to Martin Koegler)
7 - bitwise format flag fixes in OS-X (Benjamin Schroeder and Stefan Arisona)
8 - changes to stopStream / drain flag to avoid hung state in ASIO, DS, OS-X, and Jack APIs (Rasmus Ekman and Carlos Luna)
9
10 v4.0.10: (30 August 2011)
11 - fix for compile bug in Windows DS (counting devices)
12 - update to configure and library Makefile
13
14 v4.0.9: (14 August 2011)
15 - fix for ASIO problem enumerating devices after opening duplex stream (Oliver Larkin)
16 - fix for OS-X problems setting sample rate and bits-per-sample
17 - updates for OS-X "Lion"
18 - updates for wide character support in Windows DS (UNICODE)
19 - fix for possible ALSA callback thread hang (thanks to Tristan Matthews)
20 - fix for DS getDeviceCount bug (vector erase problem)
21
22 v4.0.8: (12 April 2011)
23 - fix for MinGW4 problem enumerating and setting sample rates (iasiothiscallresolver, Dmitry Kostjuchenko)
24 - fix for OS-X problem handling device names in some languages (CFString conversion, Vincent BĂ©nony)
25 - small change to OS-X mutex lock location to avoid lockups
26 - correction to documentation regarding 24-bit data (should be lower 3 bytes, not upper 3 bytes)
27 - bug fix for error handling of warnings (Antoine Lefebvre)
28 - added option to use the ALSA "default" device (Tristan Matthews)
29 - removed use of mutexes in Windows
30 - fix for ASIO4ALL behavior when stopping/closing streams (Antoine Lefebvre)
31 - included python binding in "contrib" directory (beta, Antoine Lefebvre)
32
33 v4.0.7: (4 February 2010)
34 - revised Windows DS code and device enumeration to speed up device queries
35 - OS-X 10.6 updates for deprecated functions
36 - updates to Jack shutdown code to avoid lockup
37
38 v4.0.6: (3 June 2009)
39 - bug fix in ALSA code to set period size to power of two (thanks to Joakim Karrstrom)
40 - bug fix in OS-X for OS < 10.5 ... need preprocessor definition around new variable type (thanks to Tristan Matthews)
41
42 v4.0.5: (2 February 2009)
43 - added support in CoreAudio for arbitrary stream channel configurations
44 - added getStreamSampleRate() function because the actual sample rate can sometimes vary slightly from the specified one (thanks to Theo Veenker)
45 - added new StreamOptions flag "RTAUDIO_SCHEDULE_REALTIME" and attribute "priority" to StreamOptions (thanks to Theo Veenker)
46 - replaced usleep(50000) in callbackEvent() by a wait on condition variable which gets signaled in startStream() (thanks to Theo Veenker)
47 - fix for Jack API when user callback function signals stop or abort calls
48 - fix to way stream state is changed to avoid infinite loop problem
49 - fix to int<->float conversion in convertBuffer() (thanks to Theo Veenker)
50 - bug fix in byteSwapBuffer() (thanks to Stefan Muller Arisona and Theo Veenker)
51 - fixed a few gcc 4.4 errors in OS-X
52 - fixed bug in rtaudio-config script
53 - revised configure script and Makefile structures
54 - 64-bit fixes in ALSA API (thanks to Stefan Muller Arisona)
55 - fixed ASIO sample rate selection bug (thanks to Sasha Zheligovsky)
56
57 v4.0.4: (24 January 2008)
58 - added functionality to allow getDeviceInfo() to work in ALSA for an open device (like ASIO)
59 - fixes in configure script
60 - fixed clearing of error message stream in error()
61 - fixed RtAudio::DeviceInfo description in "probing" documentation
62 - memory leak fixes in ALSA and OSS
63 - Jack in/out port flag fix
64 - Windows changes for thread priority and GLOBALFOCUS
65
66 v4.0.3: (7 December 2007)
67 - added support for MinGW compiler to configure script
68 - a few MinGW-related changes to RtAudio.cpp
69 - renamed test program probe.cpp to audioprobe.cpp
70 - moved various header files into single "include" directory and updated VC++ project files
71
72 v4.0.2: (21 August 2007)
73 - fix to RtError::WARNING typo in RtAudio.h (RtApiDummy)
74 - removed "+1"s in RtApiCore c++ append when getting device name
75
76 v4.0.1: (13 August 2007)
77 - fix to RtError::WARNING typo in RtAudio.cpp
78
79 v4.0.0: (7 August 2007)
80 - new support for non-interleaved user data
81 - additional input/output parameter specifications, including channel offset
82 - new support for dynamic connection of devices
83 - new support for stream time
84 - revised callback arguments, including separate input and output buffer arguments
85 - revised C++ exception handling
86 - revised OSS support for version 4.0
87 - discontinued support of blocking functionality
88 - discontinued support of SGI
89 - Windows DirectSound API bug fix
90 - NetBSD support (using OSS API) by Emmanuel Dreyfus
91 - changed default pthread scheduling priority to SCHED_RR when defined in the system
92 - new getCompiledApi() static function
93 - new getCurrentApi(), getStreamTime(), getStreamLatency(), and isStreamRunning() functions
94 - modified RtAudioDeviceInfo structure to distinguish default input and output devices
95
96 v3.0.3: (18 November 2005)
97 - UNICODE fix for Windows DirectSound API
98 - MinGW compiler fix for ASIO API
99
100 v3.0.2: (14 October 2005)
101 - modification of ALSA read/write order to fix duplex under/overruns
102 - added synchronization of input/output devices for ALSA duplex operation
103 - cleaned up and improved error reporting throughout
104 - bug fix in Windows DirectSound support for 8-bit audio
105 - bug fix in Windows DirectSound support during device capture query
106 - added ASIOOutputReady() call near end of callbackEvent to fix some driver behavior
107 - added #include <stdio.h> to RtAudio.cpp
108 - fixed bug in RtApiCore for duplex operation with different I/O devices
109 - improvements to DirectX pointer chasing (by Robin Davies)
110 - backdoor RtDsStatistics hook provides DirectX performance information (by Robin Davies)
111 - bug fix for non-power-of-two Asio granularity used by Edirol PCR-A30 (by Robin Davies)
112 - auto-call CoInitialize for DSOUND and ASIO platforms (by Robin Davies)
113
114 v3.0.1: (22 March 2004)
115 - bug fix in Windows DirectSound support for cards with output only
116
117 v3.0: (11 March 2004)
118 - added Linux Jack audio server support
119 - new multi-api support by subclassing all apis and making rtaudio a controller class
120 - added over/underload check to Mac OS X support
121 - new scheme for blocking functionality in callback-based apis (CoreAudio, ASIO, and JACK)
122 - removed multiple stream support (all stream indentifier arguments removed)
123 - various style and name changes to conform with standard C++ practice
124
125 v2.1.1: (24 October 2002)
126 - bug fix in duplex for Mac OS X and Windows ASIO code
127 - duplex example change in tutorial 
128
129 v2.1: (7 October 2002)
130 - added Mac OS X CoreAudio support
131 - added Windows ASIO support
132 - API change to getDeviceInfo(): device argument must be an integer between 1 - getDeviceCount().
133 - "configure" support added for unix systems
134 - adopted MIT-like license
135 - various internal structural changes and bug fixes
136
137 v2.01: (27 April 2002)
138 - Windows destructor bug fix when no devices available
139 - RtAudioError class renamed to RtError
140 - Preprocessor definitions changed slightly (i.e. __LINUX_OSS_ to __LINUX_OSS__) to conform with new Synthesis ToolKit distribution
141
142 v2.0: (22 January 2002)
143 - first release of new independent class
144