aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/portaudio.c
Commit message (Collapse)AuthorAgeFilesLines
* Move backend sources to a separate sub-directoryChris Robinson2011-08-201-449/+0
|
* Load backend libs on initChris Robinson2011-08-181-13/+7
|
* Allow the backend init functions to return failureChris Robinson2011-08-171-1/+2
|
* Rename the ERROR macro to ERRChris Robinson2011-07-131-13/+13
|
* Use logging macros for the portaudio backendChris Robinson2011-07-101-13/+13
|
* Clamp PortAudio output to stereoChris Robinson2011-06-271-4/+17
|
* Combine the two pa_load definitions into oneChris Robinson2011-06-261-15/+5
|
* Properly handle the PortAudio lib in OpenBSDChris Robinson2011-06-221-0/+2
|
* Use a proper enum for the probe typeChris Robinson2011-06-141-7/+13
|
* Cleanup dynamic loading in the PortAudio backendChris Robinson2011-06-121-83/+78
|
* Add a frequency-request device flagChris Robinson2011-05-031-1/+7
|
* Separate device format into 'channel config' and 'sample type' componentsChris Robinson2010-12-041-18/+22
|
* Get rid of the device timer stuffChris Robinson2010-11-211-9/+1
|
* Store the time precision with the deviceChris Robinson2010-07-251-0/+2
|
* Add a backend callback to get the device timeChris Robinson2010-07-241-1/+7
| | | | | The method should monotonically count the number of nanoseconds the device has active contexts
* Update device naming to be more apparent about the device being usedChris Robinson2010-05-311-5/+4
|
* Don't unload libs when they're not neededChris Robinson2010-05-281-13/+0
| | | | | Some libs don't really like being unloaded and reloaded all the time, and the benefits aren't that great
* Avoid constantly loading and unloading PortAudioChris Robinson2010-05-281-14/+11
| | | | | It seems this triggers a bug in the lib, causing a crash. It may not be a bad idea to remove dynamic unloading/reloading all through-out.
* Add a function to get the frame size from a formatChris Robinson2010-05-241-2/+1
|
* Fix non-dynamic PortAudioChris Robinson2010-04-011-1/+0
|
* Return if PortAudio fails to load in WindowsChris Robinson2010-03-231-2/+3
|
* Support PortAudio in WindowsChris Robinson2010-03-211-6/+24
|
* Support capture with PortAudioChris Robinson2010-03-181-7/+143
|
* Keep UpdateSize updated when apps request a frequencyChris Robinson2010-02-241-0/+4
|
* Clean up some loading checksChris Robinson2009-12-261-9/+8
|
* Use the proper logging functionChris Robinson2009-12-261-1/+1
|
* Start and stop PortAudio's stream in the proper methodsChris Robinson2009-12-261-16/+15
|
* Use a channel-map to specify the output device channel orderChris Robinson2009-12-021-0/+2
|
* Load backend libs on-demandChris Robinson2009-09-271-61/+88
|
* Attempt to reload backend libs when probing, if they didn't initially loadChris Robinson2009-09-231-3/+3
|
* Return imediately if trying to set an unknown formatChris Robinson2009-09-211-2/+4
|
* Remove left-over backend-specific period optionsChris Robinson2009-09-161-5/+0
|
* Store the number of periods in the device instead of the buffer sizeChris Robinson2009-09-161-4/+2
| | | | Also keep all the fields in sync
* Remove unnecessary parameters, and rename methodsChris Robinson2009-09-161-6/+4
|
* Restore the device frequency using the stream infoChris Robinson2009-09-161-2/+8
|
* Update the frequency with what the stream actually got set withChris Robinson2009-09-151-0/+5
|
* Properly terminate PortAudio when closingChris Robinson2009-09-151-2/+7
|
* Pass the device to aluMixDataChris Robinson2009-09-151-4/+1
|
* Pass the frame count to aluMixDataChris Robinson2009-09-151-5/+1
|
* Remove unnecessary vars and rework device name checksChris Robinson2009-08-271-6/+5
|
* Rebuild device lists when retrieving themChris Robinson2009-08-271-4/+14
|
* Close some libs when deinitializingChris Robinson2009-08-271-0/+4
|
* Store a copy of the device name in the deviceChris Robinson2009-08-271-2/+1
|
* Store copies of the device names in the individual backendsChris Robinson2009-08-271-2/+2
|
* Add a method to deinitialize backendsChris Robinson2009-08-261-0/+4
|
* Support 32-bit float outputChris Robinson2009-08-151-0/+3
|
* Remove unnecessary function parametersChris Robinson2009-08-131-4/+1
|
* Don't let the device frequency change when PortAudio gets a new contextChris Robinson2009-08-131-2/+1
|
* Allow delaying playback start until context creation, and don't use ↵Chris Robinson2009-08-131-4/+19
| | | | | | | UpdateSize to store the buffer size This will make it possible to support the context attributes (frequency, refresh, etc) for some backends
* Add a cast for setting a dummy pointer valueChris Robinson2009-03-101-1/+1
|