aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Store ALC errors with the device when possibleChris Robinson2009-12-287-73/+74
|
* Remove some unneeded functionsChris Robinson2009-12-281-33/+5
|
* Add a function to check if a config option is set to a non-empty valueChris Robinson2009-12-286-9/+18
|
* Enforce a lower bound playback frequency of 8khzChris Robinson2009-12-281-4/+4
|
* Improve layout parsing and allow using long names for speakersChris Robinson2009-12-281-19/+21
|
* Add an option to spawn a PulseAudio server on requestChris Robinson2009-12-282-1/+14
|
* Be more lenient in signaling the mainloopChris Robinson2009-12-281-10/+7
|
* Try to find a compatible format from Pulse's default sinkChris Robinson2009-12-271-3/+90
|
* Update panning for existing AL contexts when creating a new oneChris Robinson2009-12-261-2/+2
|
* A NULL Pulse context won't have a valid error codeChris Robinson2009-12-261-2/+1
|
* Wait for the buffer attrib update from pulse to finishChris Robinson2009-12-261-1/+4
|
* Consolidate pulse capture failure pathChris Robinson2009-12-261-24/+14
|
* Make sure a proper channel map is set for pulse captureChris Robinson2009-12-261-1/+11
|
* Clean up some loading checksChris Robinson2009-12-264-35/+33
|
* Use the proper logging functionChris Robinson2009-12-261-1/+1
|
* Start and stop PortAudio's stream in the proper methodsChris Robinson2009-12-261-16/+15
|
* GetConfigValueBool should take an int, not a floatChris Robinson2009-12-262-2/+2
|
* Shorten a long lineChris Robinson2009-12-261-1/+5
|
* Capture as much as possible directly from PulseAudioChris Robinson2009-12-251-36/+84
|
* Add missing newlineChris Robinson2009-12-251-1/+1
|
* Undefine no longer needed macroChris Robinson2009-12-251-0/+1
|
* Fix incorrect error checkChris Robinson2009-12-251-1/+1
|
* Only use pa_stream_set_buffer_attr_callback when available (0.9.15+)Chris Robinson2009-12-251-3/+10
|
* Use pa_stream_begin_write when available for "zero-copy" writingChris Robinson2009-12-251-2/+36
| | | | | Must be compiled against 0.9.16 or newer to be available. It will fall back to the old method if the function is not available at run-time.
* Check error returns instead of error stringChris Robinson2009-12-251-21/+21
|
* Mark the source for updating when setting a buffer on itChris Robinson2009-12-251-0/+7
| | | | | | Changing the buffer can change the playback format, which can require different source parameter calculations. Queueing a buffer on a source that has no buffers (or only buffers without a format, eg. buffer 0) has the same effect
* Use a 64-bit value to scale potentially-large numbersChris Robinson2009-12-243-12/+16
|
* Use the Pulse server-specified playback rate by defaultChris Robinson2009-12-241-1/+28
|
* Use pa_xmalloc instead of pa_xmalloc0Chris Robinson2009-12-241-4/+6
|
* Update pulse capture ring buffer in 25ms chunksChris Robinson2009-12-241-1/+2
|
* Don't force latency adjustment with PulseAudioChris Robinson2009-12-231-1/+1
|
* Don't render mono as stereoChris Robinson2009-12-212-24/+24
|
* Scale samples down when converting stereo to monoChris Robinson2009-12-211-2/+5
|
* Improve some indentationsChris Robinson2009-12-201-21/+18
|
* Properly retrieve the device frequencyChris Robinson2009-12-201-1/+1
|
* Fix header comment for AL_PITCHChris Robinson2009-12-161-2/+1
|
* Improve initial decay calculations for sends to reverbChris Robinson2009-12-101-11/+8
|
* Use the specified reverb air absorption value for wet sendsChris Robinson2009-12-101-18/+23
|
* Track whether a context is suspended or notChris Robinson2009-12-092-4/+11
|
* Store the source state locally after making sure it needs mixingChris Robinson2009-12-091-7/+7
|
* Fix IMA ADPCM offset calculationChris Robinson2009-12-091-2/+2
|
* Prettify CMake checks for compiler switchesChris Robinson2009-12-092-0/+61
|
* Move the pkg-config file to the base directoryChris Robinson2009-12-092-3/+3
|
* Use an inline function to calculate the low-pass filter coefficientChris Robinson2009-12-093-54/+29
|
* Split non-attenuated source calculations into a separate functionChris Robinson2009-12-091-84/+105
|
* Fix typo for reverb creationChris Robinson2009-12-091-1/+1
|
* Add a head-dampening optionChris Robinson2009-12-084-6/+40
| | | | | This simulates occlusion of the player's head for sounds coming from behind, when outputing to mono or stereo
* Store the original pre-clamped distance instead of re-computing itChris Robinson2009-12-081-4/+3
|
* Use the correct wet filter history offsetChris Robinson2009-12-071-1/+1
|
* Internally store 32-bit float buffer data, and mix accordinglyChris Robinson2009-12-074-64/+63
|