aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Use separate lists for playback and capture backendsChris Robinson2011-08-198-140/+58
|
* Remove a typedefChris Robinson2011-08-181-5/+5
|
* Load backend libs on initChris Robinson2011-08-184-52/+28
|
* Make DSoundLoad return a booleanChris Robinson2011-08-181-9/+8
|
* Avoid some LP typesChris Robinson2011-08-181-7/+7
|
* Only attempt to load MMDevApi and DSound once, on initChris Robinson2011-08-182-10/+4
|
* Set the proper union member to 0Chris Robinson2011-08-171-1/+1
|
* Remove backends that fail to initializeChris Robinson2011-08-171-2/+14
|
* Allow the backend init functions to return failureChris Robinson2011-08-1715-15/+30
|
* Coalesce some mixer sample convertersChris Robinson2011-08-171-18/+6
|
* Avoid reading some more source parameters multiple times when updatingChris Robinson2011-08-171-12/+19
|
* Get rid of the remaining min/max usageChris Robinson2011-08-161-1/+1
|
* Rename minF/maxF/clampF to minf/maxf/clampf for consistencyChris Robinson2011-08-163-16/+16
|
* Use mini/maxi/clampi and minu/maxu/clampu to replace min/max callsChris Robinson2011-08-165-16/+16
|
* Avoid a float->int->float conversionChris Robinson2011-08-161-1/+1
|
* Use inline minF/maxF/clampF functions instead of the __min/__max macrosChris Robinson2011-08-163-37/+21
|
* Fix wet path conehf calculationChris Robinson2011-08-131-1/+1
|
* Make sure there's a buffer to render loopback samples toChris Robinson2011-08-121-1/+1
|
* Avoid a temporary throw-away buffer for mixing null outputChris Robinson2011-08-122-35/+20
|
* Use an existing function to clear and free the contextChris Robinson2011-08-121-7/+5
|
* Round the HRTF sample step countChris Robinson2011-08-111-4/+5
|
* Use ARM Neon vector ops to apply HRTFs when availableChris Robinson2011-08-111-7/+48
|
* Don't declare i in a for() statementChris Robinson2011-08-081-1/+2
|
* Use a message thread to handle MMDevAPI backend methodsChris Robinson2011-08-031-147/+309
| | | | | | Because MMDevAPI uses COM, CoInitialize must be called on the thread(s) where the device calls are made. OpenAL has no such requirement, thus no guarantee that COM will be (or remain) initialized on the calling thread(s).
* Avoid closing devices and deinitializing backends on process exitChris Robinson2011-08-031-20/+37
| | | | | They are still closed and deinitialized when the DLL is simply being detached (via FreeLibrary), however.
* Delay reading the config file on Windows, tooChris Robinson2011-08-031-7/+15
|
* Use specialized click removal loops for mono and stereo outputChris Robinson2011-07-301-7/+37
|
* Wait until all headers are unprepared before freeing the bufferChris Robinson2011-07-281-4/+6
|
* Make the thread event auto-resettingChris Robinson2011-07-281-2/+2
|
* Remove the unnecessary wave header eventChris Robinson2011-07-281-29/+2
| | | | | | It's only ever set before sending the quit message, which will set the thread event. It's also only waited on just before the thread event is used to signal the end of the thread.
* Use unnamed events for winmmChris Robinson2011-07-281-4/+4
|
* Make the DSound and MMDevAPI events initially non-signaledChris Robinson2011-07-242-2/+2
|
* Use real-time priority by default on WindowsChris Robinson2011-07-231-0/+4
| | | | | It's actually "time-critical", but it seems normal priority doesn't cope as well when the system is under moderate load.
* Round UpdateSize to the nearest multiple of MMDevAPI's period sizeChris Robinson2011-07-211-1/+1
|
* Reset the MMDevAPI and DSound events before starting playbackChris Robinson2011-07-212-3/+2
|
* Fix DSound UpdateSize calculation when NumUpdates is clampedChris Robinson2011-07-211-2/+2
|
* Create and close the DSound event handle with the deviceChris Robinson2011-07-211-21/+21
|
* Use an event to signal the mmdevapi backend to mixChris Robinson2011-07-211-15/+43
| | | | | Also, use a multiple of the default period size for the update size, since the event apparently triggers on period boundaries.
* Use DSound notifications to wake up the mixer threadChris Robinson2011-07-212-7/+57
|
* Add an option to emulate EAX reverb using standard reverbChris Robinson2011-07-202-1/+5
|
* Add a config option to boost reverb outputChris Robinson2011-07-202-1/+12
|
* Set real-time priority for the WaveOut backendChris Robinson2011-07-201-0/+2
|
* Scale reverb output based on the number of channelsChris Robinson2011-07-201-2/+7
| | | | | A scale of sqrt(2/numchannels) is used so the perceived volume matches as if it was stereo output, which seems to match other implementations.
* Slightly improve the gain change delta calculationChris Robinson2011-07-191-2/+3
|
* Add a lost commentChris Robinson2011-07-181-1/+2
|
* Improve buffer metrics when using the MMDevAPI backendChris Robinson2011-07-171-9/+10
|
* Simplify some reverb update calculationsChris Robinson2011-07-171-2/+2
|
* Apply the click removal offset first, before decreasing itChris Robinson2011-07-171-2/+2
|
* Fix GetMovingHrtfCoeffs return typeChris Robinson2011-07-171-1/+1
|
* Scale the delay down once for the post-stepping mix loopChris Robinson2011-07-171-4/+6
|