aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Avoid the ALCdevice_Lock/Unlock wrapper in some placesChris Robinson2014-11-012-4/+6
|
* Support AL_EXT_MULAW_BFORMATChris Robinson2014-10-312-1/+5
|
* Add AL_EXT_MULAW_BFORMAT to alext.hChris Robinson2014-10-311-0/+6
|
* Support B-Format source rotation with AL_ORIENTATIONChris Robinson2014-10-315-14/+151
|
* Rename the source's Orientation to DirectionChris Robinson2014-10-313-13/+13
|
* Add preliminary AL_EXT_BFORMAT supportChris Robinson2014-10-318-40/+148
| | | | | Currently missing the AL_ORIENTATION source property. Gain stepping also does not work.
* Check the absolute gain value for silenceChris Robinson2014-10-313-3/+3
| | | | | Future B-Format support will be using negative gains, which still need to be applied.
* Use %zu (C99) for printing size_tChris Robinson2014-10-301-4/+4
|
* Minor clarification for __ALSOFT_SUSPEND_CONTEXTChris Robinson2014-10-131-2/+2
|
* Use the minimum of the two string lengths for comparisonChris Robinson2014-10-131-1/+1
|
* Use more appropriate size typesChris Robinson2014-10-132-8/+8
|
* Don't attempt to match a channel input to outputChris Robinson2014-10-121-24/+7
| | | | | | | | | I don't like this, but it's currently necessary. The problem is that the ambisonics-based panning does not maintain consistent energy output, which causes sounds mapped directly to an output channel to be louder compared to when being panned. The inconcistent energy output is partly by design, as it's trying to render a full 3D sound field and at least attempts to correct for imbalanced speaker layouts.
* Make alcSuspendContext and alcProcessContext batch updatesChris Robinson2014-10-124-76/+150
| | | | | | | | | | This behavior better matches Creative's hardware drivers and Rapture3D's OpenAL driver. A compatibility environment variable is provided to restore the old no-op behavior for any app that behaves badly from this change (set __ALSOFT_SUSPEND_CONTEXT to "ignore"). If too many apps have a problem with this, the default behavior may need to be changed to ignore, with the env var providing an option to defer/batch instead.
* Avoid taking the square-root of the ambient gainChris Robinson2014-10-117-61/+30
| | | | | | Although it is more correct for preserving the apparent volume, the ambisonics- based panning does not work on the same power scale, making it louder by comparison.
* Fix stereo device configurationChris Robinson2014-10-111-2/+2
|
* Add a helper to search for a channel index by nameChris Robinson2014-10-024-21/+30
|
* Store default speaker configurations in a structChris Robinson2014-10-022-194/+83
|
* Make ComputeAngleGains use ComputeDirectionalGainsChris Robinson2014-10-029-296/+182
|
* Don't use ComputeAngleGains for SetGainsChris Robinson2014-10-021-1/+5
|
* Use helpers to set the gain step valuesChris Robinson2014-10-021-142/+73
|
* Use VECTOR_FIND_IF instead of manual loopsChris Robinson2014-09-301-42/+38
|
* Add a cast for MSVCChris Robinson2014-09-301-1/+1
|
* Copy the null terminator from the string instead of appending itChris Robinson2014-09-301-4/+1
|
* Use size_t for the vector size and capacityChris Robinson2014-09-304-30/+23
|
* Use an ambisonics-based panning methodChris Robinson2014-09-304-130/+134
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For mono sources, third-order ambisonics is utilized to generate panning gains. The general idea is that a panned mono sound can be encoded into b-format ambisonics as: w[i] = sample[i] * 0.7071; x[i] = sample[i] * dir[0]; y[i] = sample[i] * dir[1]; ... and subsequently rendered using: output[chan][i] = w[i] * w_coeffs[chan] + x[i] * x_coeffs[chan] + y[i] * y_coeffs[chan] + ...; By reordering the math, channel gains can be generated by doing: gain[chan] = 0.7071 * w_coeffs[chan] + dir[0] * x_coeffs[chan] + dir[1] * y_coeffs[chan] + ...; which then get applied as normal: output[chan][i] = sample[i] * gain[chan]; One of the reasons to use ambisonics for panning is that it provides arguably better reproduction for sounds emanating from between two speakers. As well, this makes it easier to pan in all 3 dimensions, with for instance a "3D7.1" or 8-channel cube speaker configuration by simply providing the necessary coefficients (this will need some work since some methods still use angle-based panpot, particularly multi-channel sources). Unfortunately, the math to reliably generate the coefficients for a given speaker configuration is too costly to do at run-time. They have to be pre- generated based on a pre-specified speaker arangement, which means the config options for tweaking speaker angles are no longer supportable. Eventually I hope to provide config options for custom coefficients, which can either be generated and written in manually, or via alsoft-config from user-specified speaker positions. The current default set of coefficients were generated using the MATLAB scripts (compatible with GNU Octave) from the excellent Ambisonic Decoder Toolbox, at https://bitbucket.org/ambidecodertoolbox/adt/
* Use better GUI item names for the resampler optionChris Robinson2014-09-262-35/+31
|
* Show prettier names in the alsoft-config sample format combo boxesChris Robinson2014-09-132-96/+80
|
* Combine some fields into a structChris Robinson2014-09-109-135/+133
|
* Invert the ChannelOffsets arrayChris Robinson2014-09-103-56/+60
|
* Use a wave file channel mask based on the actual formatChris Robinson2014-09-101-14/+12
|
* Add AL_EXT_BFORMAT to alext.hChris Robinson2014-09-091-0/+10
|
* Remove some unnecessary config optionsChris Robinson2014-09-082-26/+8
|
* Use a vector instead of a manual dynamic arrayChris Robinson2014-09-081-150/+90
|
* Don't modify a capture device's formatChris Robinson2014-09-081-168/+7
| | | | | | OpenAL's capture API guarantees the application gets the format requested, or else the device will fail to open. The only valid change is that the capture buffer can be larger than requested.
* Remove the GetLatency method from the old BackendFuncsChris Robinson2014-09-089-47/+10
|
* Convert the winmm backend to the new backend APIChris Robinson2014-09-084-289/+382
|
* Only pass nano seconds to al_nssleepChris Robinson2014-09-086-9/+9
|
* Allow optional memory ordering to atomic methodsChris Robinson2014-09-071-42/+81
| | | | | Currently only C11 atomics make use of the memory order. If not specified, it defaults to almemory_order_seq_cst.
* Check that atomic_load works with a const _AtomicChris Robinson2014-09-051-1/+1
| | | | | | | The original C11 spec does not allow atomic_load to work on const _Atomic variables, which we sometimes do in alGet* methods, despite the fact that it does not modify the variable. An update to the C spec corrects this oversight, and GCC 4.9 has allowed it anyway, while Clang 3.4 does not.
* Fix the __get_cpuid cmake checkChris Robinson2014-09-051-1/+1
|
* Use a standard pointer-sized integer typeChris Robinson2014-09-041-1/+1
|
* Make ExchangeInt and ExchangePtr non-atomicChris Robinson2014-09-031-41/+23
|
* Make the fontsound's buffer and link fields atomicChris Robinson2014-09-034-19/+29
|
* Protect alProcessUpdatesSOFT with a lockChris Robinson2014-09-031-2/+2
|
* Use proper atomics for the thunk arrayChris Robinson2014-09-031-12/+13
|
* Make the buffer's pack and unpack properties atomicChris Robinson2014-09-032-11/+11
|
* Fix Neon mixer definitionChris Robinson2014-08-311-2/+2
|
* Use al_calloc/al_free to allocate contexts and voicesChris Robinson2014-08-301-6/+6
|
* Setup the HRTF format before tracing the pre-reset formatChris Robinson2014-08-291-17/+17
|
* Check mmdevapi device ids to match the default deviceChris Robinson2014-08-281-19/+36
| | | | | Seems Windows can return different IMMDevice object pointers for the same endpoint.