summaryrefslogtreecommitdiff
path: root/RtAudio.cpp
AgeCommit message (Collapse)Author
2017-08-30Converted line endings in RtAudio.cpp to unix format.5.0.0Gary Scavone
2017-08-30Version and documentation updates in advance of new release.Gary Scavone
2017-08-24Merge pull request #68 from jpcima/mastergaryscavone
a JACK-specific flag to disable automatic connection of ports
2017-08-22Merge pull request #79 from radarsat1/dsound-mmsystemStephen Sinclair
Add mmsystem.h and mmreg.h for dsound.
2017-08-22Fix to initialize lastTickTimestamp when setting stream time.Gary Scavone
2017-08-22Add cmath include.Stephen Sinclair
Closes #39
2017-08-22Fix order of calling CoUninitialize()Stephen Sinclair
Closes #80
2017-08-22Merge pull request #67 from antis81/refactor/cpp0x-compatibilityStephen Sinclair
C++0x compatible exception semantics: remove throw()
2017-08-22Fix line endings back to CR for last 2 commits.Stephen Sinclair
2017-08-22Fix a signed-unsigned comparison.Stephen Sinclair
2017-08-22oss: possible that AFMT_FLOAT is not availableStephen Sinclair
2017-04-22SimplifyMarcus Tomlinson
2017-04-22Some optimisationMarcus Tomlinson
2017-04-22–Slight simplificationMarcus Tomlinson
2017-04-22–Fix formattingMarcus Tomlinson
2017-04-22–Fix formattingMarcus Tomlinson
2017-04-22–Fix formattingMarcus Tomlinson
2017-04-22–Fix formattingMarcus Tomlinson
2017-04-22–Tabs -> SpacesMarcus Tomlinson
2017-04-22–Added interpolation to WASAPI's sample rate converterMarcus Tomlinson
2016-11-02Add mmsystem.h and mmreg.h for dsound.Stephen Sinclair
2016-08-09refactor: C++0x compatible exception semanticsNils Fenner
2016-07-26a JACK-specific flag to disable automatic connection of portsJP Cimalando
2016-02-11Removed execute mode from RtAudio.cpp (why was it set?)Gary Scavone
2016-02-11Documentation updates in advance of new releaseGary Scavone
2016-02-10WASAPI stream time update, as suggested by Patrice TaravelGary Scavone
2016-02-03Merge pull request #43 from guidefloripa/mastergaryscavone
Release lock if GetCurrentPosition from DS failed
2015-12-21Release lock if GetCurrentPosition from DS failedGuilherme Steinmann
2015-09-22Don't take address of boolean flag, use flag itself instead.Berkus Decker
2015-09-22Register is no more in modern C++.Berkus Decker
2015-05-08Update optional stream name for playback in PulseAudio API.Gary Scavone
2015-04-08delete not needed line. (duplicated)snori
2015-04-06Commit of ALSA underrun warning message fixGary Scavone
2015-04-06Merge branch 'master' of https://github.com/guidefloripa/rtaudio into ↵Gary Scavone
guidefloripa-master Trying to merge OS-X closeStream() update.
2015-04-05Update to DS code for getDeviceCount() when cleaning out devices that may ↵Gary Scavone
have disappeared
2015-03-25Fix closeStream on Mac OS XGuilherme Steinmann
2015-02-23Small ASIO update to support buffersize value of 0 (setting to preferred size).Gary Scavone
2014-11-03Fixed some missing unlocks before calling error() in DS API.Gary Scavone
2014-11-03Merge pull request #25 from yedey/mastergaryscavone
Fixes for WASAPI / ASIO
2014-11-03Merge pull request #29 from tmatth/static_analysis_fixesgaryscavone
Static analysis fixes
2014-11-03Merge pull request #28 from geo-harris/mastergaryscavone
Fix for NULL options in PULSE audio backend in probeDeviceOpen
2014-11-03Merge pull request #27 from TyounanMOTI/fix_wasapi_buffer_free_callocgaryscavone
Fix calloc-free mismatch
2014-11-02rtaudio: avoid NULL dereferenceTristan Matthews
2014-11-02alsa: avoid uninitialized readTristan Matthews
The check if ( subdevice != -1 ) was being done on a potentially uninitialized variable.
2014-10-16Fix for NULL options in PULSE audio backend in probeDeviceOpenHarris Georgiou
2014-10-06Fix calloc-free mismatchHirotoshi YOSHITAKA
Use free() for allocated memory by calloc (not delete). Deleting calloc-ed memory will become problem in the environment which overrides global "operator delete" like some game engine.
2014-10-06Add algorithm header includeHirotoshi YOSHITAKA
Without algorithm header, Visual Studio complaints that std::max is not declared and defined. Including algorithm header resolves this issue.
2014-10-06Fixed major ASIO duplex initialization bug. Added "preferredSampleRate" to ↵yedey
the device info.
2014-10-06ASIO fix for crash for early callbacks (initiated from ASIOCreateBuffers), ↵yedey
ASIO fix for strict/misbehaving drivers
2014-10-02WASAPI device name encoding fix, fixed skipped samples in WASAPI buffer ↵yedey
conversion