Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Apply high-pass source filters as needed | Chris Robinson | 2014-05-17 | 1 | -0/+12 |
| | |||||
* | Add a couple asserts to ensure a proper buffer | Chris Robinson | 2014-05-14 | 1 | -0/+3 |
| | | | | | | It should not be possible for a playing or paused source to not have a valid buffer, but Clang's static analyzer doesn't know that. Hopefully an assert will convince it. | ||||
* | Make RefCount a non-integer type | Chris Robinson | 2014-05-14 | 1 | -3/+3 |
| | | | | | It should only be accessed through the appropriate functions to ensure proper atomicity. | ||||
* | Add HF Reference as a filter property | Chris Robinson | 2014-05-14 | 1 | -0/+4 |
| | |||||
* | Make LOWPASSFREQREF a float value | Chris Robinson | 2014-05-11 | 1 | -2/+2 |
| | |||||
* | Store the filter reference frequency in the source | Chris Robinson | 2014-05-11 | 1 | -0/+2 |
| | |||||
* | Avoid locking the mixer when unqueueing buffers | Chris Robinson | 2014-05-11 | 1 | -4/+16 |
| | |||||
* | Avoid accessing the source's buffer queue head multiple times | Chris Robinson | 2014-05-11 | 1 | -17/+16 |
| | |||||
* | Use a struct to store the source's direct gain/gainhf properties | Chris Robinson | 2014-05-11 | 1 | -6/+6 |
| | |||||
* | Avoid locking the mixer while queueing buffers onto a source. | Chris Robinson | 2014-05-10 | 1 | -24/+34 |
| | |||||
* | Add a missing pointer init | Chris Robinson | 2014-05-10 | 1 | -3/+3 |
| | |||||
* | Explicit init the source queue and current_buffer pointers | Chris Robinson | 2014-05-10 | 1 | -0/+3 |
| | |||||
* | Use a RWLock to help protect the source's buffer queue | Chris Robinson | 2014-05-10 | 1 | -35/+56 |
| | | | | | In some instances this allows to to remove the device/mixer lock, or reduce how long it's held. | ||||
* | Don't explicitly store the BuffersInQueue | Chris Robinson | 2014-05-10 | 1 | -9/+14 |
| | |||||
* | Store the current buffer queue item, rather than played buffer count | Chris Robinson | 2014-05-10 | 1 | -77/+63 |
| | |||||
* | Better pack HRTF mixing properties | Chris Robinson | 2014-05-03 | 1 | -3/+3 |
| | |||||
* | Add gain stepping to the send mixers | Chris Robinson | 2014-03-23 | 1 | -1/+9 |
| | |||||
* | Move the step counter and moving flag to DirectParams | Chris Robinson | 2014-03-23 | 1 | -2/+2 |
| | |||||
* | Store the HrtfState directly in the DirectParams | Chris Robinson | 2014-03-23 | 1 | -25/+15 |
| | |||||
* | Store some source mixing parameters in the active source struct | Chris Robinson | 2014-03-19 | 1 | -16/+19 |
| | |||||
* | Use a separate struct for tracking active sources | Chris Robinson | 2014-03-18 | 1 | -8/+18 |
| | |||||
* | Add an extension to support MSADPCM buffer formats | Chris Robinson | 2014-03-04 | 1 | -0/+23 |
| | |||||
* | Store the original frame size alignment in the buffer | Chris Robinson | 2014-03-03 | 1 | -4/+6 |
| | |||||
* | Fix retrieving source properties | Chris Robinson | 2013-12-09 | 1 | -6/+6 |
| | |||||
* | Use C99 inline in more places | Chris Robinson | 2013-11-04 | 1 | -0/+3 |
| | |||||
* | Rename alcGetLatency to ALCdevice_GetLatency | Chris Robinson | 2013-11-02 | 1 | -2/+2 |
| | |||||
* | Use an ALCbackend object to access playback backends | Chris Robinson | 2013-10-27 | 1 | -2/+2 |
| | | | | | | | This is the start of a backend redesign. Currently, a wrapper object is used to avoid having to redo all the backends at once, but they should slowly be converted to derive from ALCbackend instead. The ALCbackend interface can change as needed. | ||||
* | Return only true or false from the source getters and setters | Chris Robinson | 2013-10-07 | 1 | -112/+105 |
| | |||||
* | Remove al_try from alSource.c | Chris Robinson | 2013-10-07 | 1 | -325/+304 |
| | |||||
* | Use a simpler U64 macro to make 64-bit constants | Chris Robinson | 2013-10-06 | 1 | -1/+1 |
| | |||||
* | Use a separate value for the maximum buffer channels | Chris Robinson | 2013-07-23 | 1 | -1/+1 |
| | | | | | | | Unlike the device, input buffers are accessed based on channel numbers instead of enums. This means the maximum number of channels they hold depends on the number of channels any one format can have, rather than the total number of recognized channels. Currently, this is 8 for 7.1. | ||||
* | Silence some clang warnings | Chris Robinson | 2013-06-05 | 1 | -2/+2 |
| | |||||
* | Simplify al_try code | Chris Robinson | 2013-03-24 | 1 | -15/+13 |
| | |||||
* | Properly convert uint values when getting them as int64 | Chris Robinson | 2012-12-07 | 1 | -2/+14 |
| | |||||
* | SetSourceiv should never get AL_SAMPLE_OFFSET_LATENCY_SOFT | Chris Robinson | 2012-12-06 | 1 | -1/+4 |
| | |||||
* | Use a helper to count the number of float/double values for a property | Chris Robinson | 2012-12-05 | 1 | -297/+177 |
| | |||||
* | Use a helper to count the number of int(64) values for a property | Chris Robinson | 2012-12-05 | 1 | -306/+152 |
| | |||||
* | Remove 'v' from the source enum names | Chris Robinson | 2012-12-05 | 1 | -103/+100 |
| | |||||
* | Add a comment to note the extension for sfvDistanceModel | Chris Robinson | 2012-12-05 | 1 | -4/+6 |
| | |||||
* | Use an enum to handle int source properties | Chris Robinson | 2012-12-05 | 1 | -113/+160 |
| | |||||
* | Use an enum to handle float source properties | Chris Robinson | 2012-12-05 | 1 | -60/+127 |
| | |||||
* | Print an error if trying to handle a missed source property | Chris Robinson | 2012-12-05 | 1 | -0/+6 |
| | |||||
* | Fix retrieving source gain | Chris Robinson | 2012-12-05 | 1 | -0/+4 |
| | |||||
* | Fix retrieving the source's write offset | Chris Robinson | 2012-11-01 | 1 | -2/+2 |
| | |||||
* | Pass the offset latency properties to the set handler | Chris Robinson | 2012-11-01 | 1 | -8/+18 |
| | |||||
* | Set the proper error when trying to set AL_SAMPLE_OFFSET_LATENCY_SOFT or ↵ | Chris Robinson | 2012-11-01 | 1 | -1/+8 |
| | | | | AL_SEC_OFFSET_LATENCY_SOFT | ||||
* | Add explicit casts for MSVC | Chris Robinson | 2012-10-25 | 1 | -9/+9 |
| | |||||
* | Add retrieval of missing source properties | Chris Robinson | 2012-10-21 | 1 | -0/+16 |
| | |||||
* | Use a helper method to convert i64 values to the proper types | Chris Robinson | 2012-10-14 | 1 | -74/+88 |
| | |||||
* | Check i64 property ranges before passing them to the int handlers | Chris Robinson | 2012-10-14 | 1 | -19/+76 |
| | | | | | | | Note that some properties (e.g. AL_BUFFER, AL_DIRECT_FILTER) actually take unsigned int values, and so are checked against the unsigned range even though they eventually get casted to an int. The int handler casts them back as needed. |