aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Convert full-width cone angle source properties to half-widthChris Robinson2011-04-221-3/+3
| | | | | | The spec intends the property values to be the full angle encompassed by the cones, but the calculation interprets them as the angle from the center point.
* Apply the device matrix to the multi-channel source matrixChris Robinson2011-04-141-72/+74
| | | | | | | Mono sources and effects already output according to the available output device channels. Multiplying the device matrix with the source matrix results in a matrix that has the same effect as applying the source matrix followed by the device matrix, so all the channel remixing can be done in one place.
* Fix LFE channel outputChris Robinson2011-04-141-0/+3
|
* Only set relevant device matrix entriesChris Robinson2011-04-121-30/+35
|
* Allow the buffer_samples API to be retrievedChris Robinson2011-04-101-0/+6
|
* Add alBufferSamplesSOFT, as an initial start to AL_SOFT_buffer_samplesChris Robinson2011-03-161-2/+2
|
* NoErr should be noErrChris Robinson2011-03-151-8/+8
|
* Add a CoreAudio backendChris Robinson2011-03-152-0/+293
| | | | Code courtesy of Garin Hiebert <[email protected]>
* Invert the device matrix row/columnChris Robinson2011-03-132-41/+41
| | | | It is accessed now as mat[target][source]
* Remove more unneeded castsChris Robinson2011-03-131-5/+5
|
* Remove unnecessary castsChris Robinson2011-03-131-2/+2
|
* Fix DSound floating-point sample assumptionsChris Robinson2011-03-121-2/+2
|
* Combine multiple lists into oneChris Robinson2011-03-121-11/+0
|
* Add support for ALC_EXT_DEDICATEDChris Robinson2011-03-122-1/+134
|
* Better protect the device for multi-threading accessChris Robinson2011-03-121-35/+33
|
* Implement a basic non-real-time loopback deviceChris Robinson2011-03-112-11/+313
| | | | | | | | | | Currently it behaves just like a normal device except contexts are only processed during calls to alcRenderSamples. Additionally, the ALC_SYNC and ALC_REFRESH context attributes are not valid for these devices, and there are two new context attributes to specify the rendering format: ALC_FORMAT_TYPE and ALC_FORMAT_CHANNELS. These each take one of the type and channel enums added. This stuff is subject to change.
* Finalize the loop points extension as AL_SOFT_loop_pointsChris Robinson2011-02-091-2/+2
|
* Use the correct winmm device ID typeChris Robinson2011-02-081-2/+2
|
* Don't inline CalcLimitedHfRatioChris Robinson2011-02-071-1/+1
|
* Add a missing enum value for PA_API_VERSION 11Chris Robinson2011-02-071-0/+1
|
* Include cguid.h for GUID_NULLChris Robinson2011-02-071-0/+1
|
* Fix looping on loop pointsChris Robinson2011-02-061-7/+12
|
* Re-enable channel-config-specific layout optionsChris Robinson2011-01-231-5/+8
|
* Don't duplicate the device list append functionChris Robinson2011-01-231-18/+24
|
* Avoid using a variable for array sizes and const variable initializationChris Robinson2011-01-231-5/+5
|
* Fix loop handling when traversing the buffer queue backwardsChris Robinson2011-01-231-3/+3
|
* More improvements to the AudioIO backendChris Robinson2010-12-091-4/+9
|
* Better check format type returned by AUDIO_SETINFOChris Robinson2010-12-091-3/+8
|
* Add signed 8-bit output to the AudioIO backendChris Robinson2010-12-091-2/+3
|
* Fix some AudioIO backend warningsChris Robinson2010-12-091-5/+1
|
* Cleanup some ok() macrosChris Robinson2010-12-091-15/+23
|
* Be consistent with variable name useChris Robinson2010-12-091-9/+9
|
* Combine stereo and multi-channel templatesChris Robinson2010-12-091-181/+13
|
* Use a matrix when rendering to the dry bufferChris Robinson2010-12-092-64/+115
|
* Make better use of the type range when converting from floatChris Robinson2010-12-091-22/+14
|
* Use simple loops instead of several explicit lines for the mono mixerChris Robinson2010-12-091-24/+6
|
* Be a bit more generic with the multi-channel mixer loopsChris Robinson2010-12-091-77/+73
|
* Remove some now-unused functionsChris Robinson2010-12-081-106/+0
|
* Set the playing flag to TRUE when the dsound buffer starts playingChris Robinson2010-12-041-0/+1
|
* Separate device format into 'channel config' and 'sample type' componentsChris Robinson2010-12-0412-386/+448
|
* Fix wave and null device calculations when the timer wrapsChris Robinson2010-12-032-2/+2
|
* Add functions to write (signed) byte and ushort samples to devicesChris Robinson2010-12-021-1/+34
|
* Remove incomplete EXT_buffer_sub_data, as it's (temporarily) superceded by ↵Chris Robinson2010-12-021-6/+4
| | | | | | SOFT_buffer_sub_data The EXT version can come back when other implementations take an interest
* Use memcpy to copy a string instead of sprintfChris Robinson2010-12-021-1/+1
|
* Make a function staticChris Robinson2010-12-021-1/+3
|
* Template-ize the device buffer writing functionsChris Robinson2010-12-011-83/+144
|
* Rename OUTPUTCHANNELS to something more descriptiveChris Robinson2010-12-017-52/+52
|
* Reorder some parameters for consistencyChris Robinson2010-11-292-5/+5
|
* Store double formats as floatChris Robinson2010-11-281-46/+0
| | | | | The mixer will cut it down to float anyway, so it's unnecessary and needlessly creates more mixer functions
* Uninline some functionsChris Robinson2010-11-283-0/+140
| | | | Also add -Winline to the compiler command line to watch for future inline problems