aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Fix a couple checksChris Robinson2014-07-051-2/+2
|
* Use a helper function to check valid MIDI controller inputsChris Robinson2014-07-042-5/+4
|
* Set the 'valid' field when we have a valid buffer pointerChris Robinson2014-07-041-3/+1
|
* Move an inline definition to a more appropriate sourceChris Robinson2014-07-042-2/+3
|
* AL_SOFT_MSADPCM is functionally completeChris Robinson2014-07-031-1/+1
|
* Remove an unnecessary castChris Robinson2014-07-011-2/+2
|
* Fix preset zone instrument header checkChris Robinson2014-07-011-2/+2
|
* Print SF2 text INFO chunksChris Robinson2014-07-012-51/+94
|
* Warn about all unhandled soundfont generatorsChris Robinson2014-06-301-4/+4
|
* Check the last preset and instrument properties within the loopChris Robinson2014-06-301-46/+10
|
* Standardize some New/Delete methodsChris Robinson2014-06-301-3/+3
|
* Load soundfont samples into an ALbufferChris Robinson2014-06-294-27/+36
| | | | | Also remove ALsoundfont's now-unneeded sample storage functions and struct fields.
* Store and use an ALbuffer for samples in an ALfontsoundChris Robinson2014-06-291-3/+5
| | | | | | | | The fontsound still maintains its own start, end, and loop offsets, so that the same buffer may be shared between multiple/all fontsounds. Ideally a single buffer should be used for all fontsounds to avoid memory fragmentation and help CPU caching, although higher quality soundfonts may need more memory than a single buffer can hold.
* Only set the needed HRTF coefficientsChris Robinson2014-06-211-2/+2
|
* Avoid negating 'negative' variable namesChris Robinson2014-06-201-2/+2
|
* Don't pass the device to HRTF methodsChris Robinson2014-06-203-15/+14
|
* Don't overwrite the loopback device format with the HRTF formatChris Robinson2014-06-201-8/+18
|
* Remove unused variablesChris Robinson2014-06-131-4/+0
|
* Get the mixer and resampler functions when neededChris Robinson2014-06-132-77/+73
|
* Combine the direct and send mixersChris Robinson2014-06-137-252/+95
|
* Combine some dry and wet path typesChris Robinson2014-06-136-82/+76
|
* Pre-apply the crossfeed filter gain to the input sample coefficientsChris Robinson2014-06-121-7/+6
|
* Use floats for the BS2B filterChris Robinson2014-06-111-34/+34
|
* Make bs2b_cross_feed inlineChris Robinson2014-06-101-43/+2
|
* Don't try to set fp precision with __control87_2 or _controlfpChris Robinson2014-06-081-10/+4
|
* Print CPU extensions that are unavailable but requestedChris Robinson2014-06-081-6/+6
|
* Update a couple sources with the proper authorChris Robinson2014-06-062-2/+2
|
* Move InitiatePositionArrays to mixer_defs.hChris Robinson2014-06-064-45/+21
|
* Add SSE2 and SSE4.1 linear resamplersTimothy Arceri2014-06-066-5/+234
| | | | | Currently the only way SSE 4.1 is detected is by using __get_cpuid, i.e. with GCC. Windows' IsProcessorFeaturePresent does not report SSE4.1 capabilities.
* Avoid a loop when updating the source position variablesChris Robinson2014-06-022-10/+12
|
* Add an extension string for the in-progress source length extensionChris Robinson2014-05-261-1/+2
| | | | | This is the extension that allows you to get the full length of the source's buffer queue.
* Don't print an ERR if pulse fails to get latency info due to no dataChris Robinson2014-05-261-3/+8
| | | | It just means it was called too quickly after starting.
* Don't resume the backend if there's no contextsChris Robinson2014-05-241-10/+11
|
* Move the active source's offset out of the direct paramsChris Robinson2014-05-241-2/+2
|
* Mark a few more functions as constChris Robinson2014-05-231-4/+4
|
* AL_SOFT_block_alignment is now considered doneChris Robinson2014-05-221-1/+1
|
* Ensure a proper amount of new elements are being reserved when insertingChris Robinson2014-05-221-1/+5
|
* Add a needed header for the CoreAudio backendChris Robinson2014-05-221-0/+1
|
* The lower value of the gain vector contains the closest target valueChris Robinson2014-05-211-2/+2
|
* Don't clear the current and step gain values when updating a sourceChris Robinson2014-05-211-89/+66
|
* Use the current buffer item for static sources tooChris Robinson2014-05-211-1/+1
|
* Copy samples if needed in the 'copy' resamplerChris Robinson2014-05-211-9/+15
|
* Properly process all samples with a bandpass filterChris Robinson2014-05-211-2/+2
|
* Use the correct input for HRTF mixingChris Robinson2014-05-211-1/+1
|
* Update the active source's direct and send properties after each mixChris Robinson2014-05-211-10/+9
|
* Return a sample pointer from resamplersChris Robinson2014-05-193-19/+21
| | | | Both resampling and filtering now avoid copying samples when they no-op.
* Put per-channel filter properties togetherChris Robinson2014-05-192-31/+34
|
* Return a sample pointer from DoFiltersChris Robinson2014-05-191-14/+18
| | | | | This allows us to avoid copying samples when no filtering is needed. Doing the same for resampling would require another temporary buffer in the device.
* Move an HRTF mixer parameter and shorten a couple variable namesChris Robinson2014-05-183-30/+25
|
* Don't pass the SendParams to the wet-path mixerChris Robinson2014-05-185-30/+31
|