aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alSource.h
Commit message (Collapse)AuthorAgeFilesLines
* Don't bother storing the loop points in the sourceChris Robinson2010-05-241-4/+0
|
* Store loop points as uncompressed frame offsets in the source when a buffer ↵Chris Robinson2010-05-131-0/+4
| | | | is attached
* Use a map to store sources and buffersChris Robinson2010-05-011-2/+0
| | | | And do a lookup using a binary search instead of linear
* Use alext.h for extension definitionsChris Robinson2010-03-161-9/+0
|
* Remove unused source param count macroChris Robinson2010-03-071-2/+0
|
* Fix Windows compilationChris Robinson2010-01-111-4/+4
|
* Add helpful values to the resampler enumChris Robinson2010-01-111-1/+3
|
* Add a cosine resamplerChris Robinson2010-01-111-0/+1
|
* Add an option for point resamplingChris Robinson2010-01-111-0/+10
|
* Send multi-channel sources to auxiliary effect slotsChris Robinson2009-11-261-1/+1
| | | | | They are downmixed to mono using a volume-preserving scalar, and passed through a 1-pole low-pass filter (not chained)
* Update source parameters only when they need changingChris Robinson2009-11-251-0/+1
|
* Remove the format and frequency from the source, get them manuallyChris Robinson2009-10-251-2/+0
|
* Store the buffer format and frequency in the source when updatedChris Robinson2009-10-251-0/+2
|
* Remove unneeded bufferlistitem propertiesChris Robinson2009-10-251-2/+0
|
* Store the buffer handle directly in the source and buffer queue listChris Robinson2009-10-221-3/+3
|
* Remove unused source fieldsChris Robinson2009-10-211-2/+0
|
* Store the calculated source parameters in the source structChris Robinson2009-10-211-10/+18
|
* Remove unneeded variablesChris Robinson2009-07-071-3/+1
|
* Make the filter history buffer size flexibleChris Robinson2009-04-161-0/+2
| | | | | | | This lets the filter history buffer be as big as needed for a given use, so that it can have a size large enough for the more demanding cases, but not be wasteful for lesser-demanding cases, while not incuring the overhead of an added pointer indirection
* Increase the default maximum number of sends to 2Chris Robinson2009-04-141-1/+1
|
* Pay attention to the MAX_SENDS valueChris Robinson2009-04-111-2/+1
|
* Implement AL_EXTX_source_distance_modelChris Robinson2008-11-251-0/+1
| | | | | As with other EXTX extensions, this is subject to change and removal as the spec gets worked on
* Don't ramp gains when starting a sound from the beginningChris Robinson2008-11-131-0/+1
|
* Remove another unused source memberChris Robinson2008-10-101-2/+0
|
* Remove unneeded source member variableChris Robinson2008-10-091-1/+0
|
* Commit missing changesChris Robinson2008-10-091-1/+1
|
* Use a new low-pass filter, based on the I3DL2 specChris Robinson2008-10-021-2/+1
| | | | Many thanks to Christopher Fitzgerald, for helping with it
* Remove unneeded source struct memberChris Robinson2008-08-151-1/+1
|
* Ramp channel gains to remove pops and clicks from abrupt changesChris Robinson2008-08-141-0/+7
| | | | Thanks to Christopher Fitzgerald for helping me work on it
* Implement yet another low-pass filterChris Robinson2008-07-251-0/+2
| | | | This one using the Butterworth IIR filter design
* Implement an alternative low-pass filterChris Robinson2008-07-231-3/+0
| | | | | | | | | This method samples from the buffer so that it gets a time-correct 5khz stream, which is subtracted from the original sample and has the high-frequency gain applied, then added back. A better method may be to average all the samples from the current one to the one freq/5000 away, instead of bilinear filtering the two nearest freq/5000 apart. Processing cost will need to determine its viability
* Implement doppler factor source propertyChris Robinson2008-07-151-0/+2
|
* Don't include alAuxEffectSlot.h in alSource.hChris Robinson2008-01-161-2/+1
|
* Make sure sources are deleted with the contextChris Robinson2008-01-161-0/+2
|
* Store a reference to the effect slot in a source's send, not a copyChris Robinson2008-01-161-1/+1
|
* Merge branch 'master' into efx-experimentChris Robinson2007-12-311-2/+2
|\
| * Don't append _struct to the source struct nameChris Robinson2007-12-311-2/+2
| |
* | Implement AL_AUXILIARY_SEND_FILTER_GAIN_AUTO propertyChris Robinson2007-12-181-0/+1
| |
* | Implement AL_ROOM_ROLLOFF_FACTOR propertyChris Robinson2007-12-181-0/+2
| |
* | Report one max auxiliary send per sourceChris Robinson2007-12-181-1/+4
| |
* | Implement AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO propertyChris Robinson2007-12-181-0/+1
| |
* | Add initial auxiliary send pathsChris Robinson2007-12-181-0/+6
| |
* | Implement AL_AIR_ABSORPTION_FACTOR source propertyChris Robinson2007-12-181-0/+2
| |
* | Implement AL_CONE_OUTER_GAINHF source propertyChris Robinson2007-12-171-0/+1
| |
* | Implement AL_DIRECT_FILTER_GAINHF_AUTO source propertyChris Robinson2007-12-171-0/+2
| |
* | Implement basic lowpass filter pathChris Robinson2007-12-171-0/+3
| |
* | Implement AL_DIRECT_FILTER source propertyChris Robinson2007-12-171-0/+3
| | | | | | | | Only AL_FILTER_NULL filter types are currently supported, however
* | Add EFX source filter propertiesChris Robinson2007-12-171-0/+9
|/
* Initial importChris Robinson2007-11-131-0/+71