Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't round WASAPI updates to the update size | Chris Robinson | 2019-04-27 | 1 | -1/+0 |
| | |||||
* | Scale the update size with sample rate changes | Chris Robinson | 2019-04-26 | 1 | -9/+6 |
| | |||||
* | Specify the buffer size as itself instead of the period count | Chris Robinson | 2019-04-26 | 1 | -23/+23 |
| | | | | | | | Certain backends don't need a buffer size to be a strict multiple of the period count, which allows a little more flexibility. The period/update size simply acts as the minimum request, which helps control CPU load by determining how often parameter and other pre-mixing updates are processed. | ||||
* | Remove the backend factory deinit method | Chris Robinson | 2019-04-14 | 1 | -9/+0 |
| | | | | | | It was never actually called anywhere, and there's no safe place where it can be called. It's probably better to let the individual backends worry about cleaning themselves up anyway. | ||||
* | Use a custom message queue for the WASAPI backend | Chris Robinson | 2019-04-14 | 1 | -263/+160 |
| | |||||
* | Add some enum casts for the WASAPI backend | Chris Robinson | 2019-03-19 | 1 | -5/+5 |
| | |||||
* | Rename DevProbe enum names | Chris Robinson | 2019-03-19 | 1 | -6/+6 |
| | |||||
* | Avoid using internal AL[u]int64 types | Chris Robinson | 2019-02-11 | 1 | -1/+1 |
| | |||||
* | Handle a missing default WASAPI device ID | Chris Robinson | 2019-01-18 | 1 | -3/+3 |
| | |||||
* | Use an atomic bool on things that only take true or false | Chris Robinson | 2018-12-30 | 1 | -6/+6 |
| | |||||
* | Rename BackendLock to StateLock | Chris Robinson | 2018-12-30 | 1 | -10/+0 |
| | |||||
* | Use member functions for the sample and channel converters | Chris Robinson | 2018-12-29 | 1 | -5/+5 |
| | |||||
* | Add missing includes for mem_fn | Chris Robinson | 2018-12-29 | 1 | -0/+1 |
| | |||||
* | Return a unique_ptr for the backend | Chris Robinson | 2018-12-29 | 1 | -3/+3 |
| | |||||
* | Make the backend type an enum class | Chris Robinson | 2018-12-29 | 1 | -5/+5 |
| | |||||
* | Convert the backends to use proper inheritence | Chris Robinson | 2018-12-28 | 1 | -159/+103 |
| | |||||
* | Use static_cast instead of reinterpret_cast where possible | Chris Robinson | 2018-12-28 | 1 | -16/+16 |
| | |||||
* | Finish turning ancillary backend methods into member functions | Chris Robinson | 2018-12-28 | 1 | -157/+156 |
| | |||||
* | Get rid of the unnecessary STATIC_(UP)CAST macros | Chris Robinson | 2018-12-27 | 1 | -90/+77 |
| | |||||
* | Use a proper constructor/destructor for the ALCbackend base | Chris Robinson | 2018-12-27 | 1 | -6/+6 |
| | |||||
* | Return unique_ptrs instead of raw pointers | Chris Robinson | 2018-12-27 | 1 | -20/+13 |
| | | | | For the ring buffer, channel converter, and sample converter. | ||||
* | Clean up the ring buffer struct and use member functions | Chris Robinson | 2018-12-26 | 1 | -5/+8 |
| | |||||
* | Remove extraneous typedef, struct, and enum keywords | Chris Robinson | 2018-12-24 | 1 | -2/+2 |
| | |||||
* | Use a normal delete instead of ll_ringbuffer_free | Chris Robinson | 2018-12-22 | 1 | -12/+6 |
| | | | | And use RingBufferPtr in more places | ||||
* | Use inline methods for the device format sizes | Chris Robinson | 2018-12-19 | 1 | -8/+4 |
| | |||||
* | Avoid several uses of memset | Chris Robinson | 2018-12-08 | 1 | -1/+1 |
| | |||||
* | Pass the desired resampler to CreateSampleConverter | Chris Robinson | 2018-11-28 | 1 | -1/+1 |
| | |||||
* | Avoid the update size going to 0 with a relatively large device period | Chris Robinson | 2018-11-28 | 1 | -1/+1 |
| | |||||
* | Replace remaining uses of std::vector with al::vector | Chris Robinson | 2018-11-24 | 1 | -6/+6 |
| | | | | Which uses a custom allocator that uses our allocation functions. | ||||
* | Use proper time types for the device clock time and latency | Chris Robinson | 2018-11-22 | 1 | -2/+2 |
| | |||||
* | Return the ringbuffer data pointers as a pair | Chris Robinson | 2018-11-19 | 1 | -9/+10 |
| | |||||
* | Use a std::string for the device name | Chris Robinson | 2018-11-18 | 1 | -16/+6 |
| | |||||
* | Avoid more cases of an enum variable and type name clash | Chris Robinson | 2018-11-18 | 1 | -3/+3 |
| | |||||
* | Don't pass the current thread to althrd_setname | Chris Robinson | 2018-11-17 | 1 | -2/+2 |
| | |||||
* | Convert the WASAPI backend factory | Chris Robinson | 2018-11-15 | 1 | -79/+55 |
| | |||||
* | Remove the unused al_string API | Chris Robinson | 2018-11-15 | 1 | -1/+0 |
| | |||||
* | Use a regular char* for the device's name | Chris Robinson | 2018-11-15 | 1 | -10/+12 |
| | |||||
* | Search the right list for WASAPI name duplicates | Chris Robinson | 2018-11-15 | 1 | -1/+1 |
| | |||||
* | Use std::string instead of al_string for enumerating | Chris Robinson | 2018-11-15 | 1 | -5/+3 |
| | |||||
* | Avoid calling through the vtable in the backends | Chris Robinson | 2018-11-13 | 1 | -10/+10 |
| | |||||
* | Use utf8_to_wstr to convert UTF-8 to wstring | Chris Robinson | 2018-11-13 | 1 | -20/+10 |
| | |||||
* | Move wstr_to_utf8 to compat.h | Chris Robinson | 2018-11-03 | 1 | -16/+0 |
| | |||||
* | Expand the anonymous namespaces | Chris Robinson | 2018-11-02 | 1 | -13/+14 |
| | |||||
* | Add a wrapper to manage PROPVARIANT objects | Chris Robinson | 2018-11-02 | 1 | -26/+35 |
| | |||||
* | Check the correct propvariant object | Chris Robinson | 2018-11-02 | 1 | -4/+4 |
| | |||||
* | Try another fix to declare GUIDs in C++ | Chris Robinson | 2018-11-02 | 1 | -4/+10 |
| | |||||
* | Make the polymorphism macros less hacky in C++ | Chris Robinson | 2018-11-01 | 1 | -312/+282 |
| | | | | | | In particular, it relies on derived structs using C++-style inheritence. Any implementation's source that's converted to C++ will consequently need to make that change. | ||||
* | Workaround some issue with DEFINE_GUID in C++ | Chris Robinson | 2018-11-01 | 1 | -2/+4 |
| | |||||
* | Use more C++ types where possible | Chris Robinson | 2018-11-01 | 1 | -343/+290 |
| | |||||
* | Preliminary conversion of the WASAPI backend to C++ | Chris Robinson | 2018-11-01 | 1 | -0/+2035 |
A very sparse conversion. Will clean up more later after seeing what MSVC does. |