aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Reorder a couple effect presetsChris Robinson2012-01-292-4/+4
|
* av_find_stream_info is also deprecated, in favor of avformat_find_stream_infoChris Robinson2012-01-291-3/+3
|
* Use AVMEDIA_TYPE_AUDIO instead of the deprecated CODEC_TYPE_AUDIOChris Robinson2012-01-291-6/+6
|
* Add some more reverb presetsChris Robinson2012-01-272-0/+389
|
* Use sizeof(ALfloat) when finding the max stepping valueChris Robinson2012-01-261-4/+4
| | | | | The mixer always reads from floats, so the size of the storage type is unimportant.
* Pass the uncompressed sample count to LoadData and ConvertData for IMA4Chris Robinson2012-01-261-41/+56
|
* Make sure context attributes are specified for loopback devicesChris Robinson2012-01-261-0/+6
|
* Make sure InitializeEffect on the default slot doesn't set a context errorChris Robinson2012-01-261-0/+1
|
* Return the error code from UpdateDeviceParamsChris Robinson2012-01-251-22/+14
|
* Make sure the attributes list specifies a format for loopback devicesChris Robinson2012-01-251-3/+19
|
* Avoid a bit of code duplicationChris Robinson2012-01-251-70/+29
|
* Don't process a default device slot if it doesn't existChris Robinson2012-01-251-12/+15
|
* Fix a typoChris Robinson2012-01-241-1/+1
|
* Some cleanups for the reverb listChris Robinson2012-01-241-3/+4
|
* Set the source's slot send parameter to NULL if it's the AL_EFFECT_NULL typeChris Robinson2012-01-232-2/+5
|
* Link with AudioToolbox.framework for the CoreAudio backend if it's foundChris Robinson2012-01-231-0/+12
|
* Avoid duplicating some initialization codeChris Robinson2012-01-205-32/+40
|
* Honor the disabled effects for the default reverbChris Robinson2012-01-201-1/+6
|
* Not all devices will have a default effect slotChris Robinson2012-01-201-2/+5
|
* Fix WaveIn shutdown for realChris Robinson2012-01-201-11/+8
| | | | | | The processing thread must be messaged when shutting down, and depending on the state of the device, waveInReset may not do it. Additionally, all buffers must be removed from the device before they can be unprepared and the device closed.
* Remove an unnecessary else statementChris Robinson2012-01-201-41/+38
|
* Always message the WinMM processing thread when a buffer is doneChris Robinson2012-01-201-12/+2
| | | | | So the processing thread can keep track of completed buffers when shutting down, too.
* Fix a possible race condition when shutting down WinMM devicesChris Robinson2012-01-201-23/+21
| | | | | | If the processing threads are interrupted between the shutdown check and re- adding the buffer back to the device, the device can be left with a buffer that will get unprepared and freed while in use.
* Add a default-reverb config option, and rename __ALSOFT_FORCE_REVERB to matchChris Robinson2012-01-202-1/+14
|
* Install efx-presets.hChris Robinson2012-01-191-0/+1
|
* Add the ability to specify a preset for forced reverbChris Robinson2012-01-194-3/+194
|
* Add a global option to apply a reverb effect on source send 0Chris Robinson2012-01-197-4/+65
| | | | | | A special slot on the device is created and processed, so it can be shared across all contexts on the device. Sources that don't have a slot set on send 0 will use this special slot instead.
* Avoid printing messages about device parameter changes in the backendsChris Robinson2012-01-179-187/+38
|
* Report parameter request changes in UpdateDeviceParamsChris Robinson2012-01-171-18/+44
|
* Change the default output format to 32-bit floatChris Robinson2012-01-172-2/+2
|
* Retry opening the PortAudio device with 16-bit short if 32-bit float output ↵Chris Robinson2012-01-171-3/+9
| | | | fails
* Retry opening the DSound device with 16-bit short if 32-bit float output failsChris Robinson2012-01-171-0/+11
|
* Retry opening the WinMM device with 16-bit short if 32-bit float output failsChris Robinson2012-01-171-0/+6
|
* Support 32-bit float in the WinMM backendChris Robinson2012-01-171-4/+11
|
* Safely insert the new context into the listChris Robinson2012-01-121-2/+3
|
* Add some castsChris Robinson2012-01-111-3/+3
|
* There's no need to pass a buffer to avio_alloc_contextChris Robinson2012-01-111-7/+4
|
* Handle a couple of special AVSEEK_ seek modesChris Robinson2012-01-111-0/+4
|
* Fix compiling the example program, and support AL_SOFT_buffer_samples with itChris Robinson2012-01-104-134/+194
|
* Finalize AL_SOFT_buffer_samplesChris Robinson2012-01-103-71/+65
|
* Remove the unnecessary AL_MULAW_SOFT, AL_ALAW_SOFT, and AL_IMA4_SOFT definesChris Robinson2012-01-104-12/+3
|
* Append _SOFT to the AL_SOFT_buffer_samples enumsChris Robinson2012-01-104-159/+159
|
* Make LockDevice, LockContext, etc, inlineChris Robinson2012-01-092-25/+10
|
* Check earlier for ffmpegChris Robinson2012-01-021-1/+4
|
* Remove the warning when a context being released is globally currentChris Robinson2012-01-011-3/+0
| | | | | | Just about every implementation allows this, and there's no direct harm caused by it. However, leave the warnings for when it's still current on specific threads, as this can cause issues.
* Use the device lock when removing the context from the device's listChris Robinson2012-01-011-9/+2
|
* Use a proper typedef for handling atomic pointer swapsChris Robinson2012-01-014-18/+20
|
* Add an example program that streams audio using ffmpegChris Robinson2012-01-016-0/+1348
|
* Update some config option descriptionsChris Robinson2011-12-201-9/+9
|
* Use a string to specify the resampler config optionChris Robinson2011-12-202-8/+22
|