aboutsummaryrefslogtreecommitdiff
path: root/src/audio_core/sink_details.h
AgeCommit message (Collapse)Author
2018-09-11audio_core/sink_details: Change std::string parameter into std::string_viewLioncash
The given string is only ever used for lookup and comparison, so we can just utilize a non-owning view to string data here
2018-08-01sink_details: Deduplicate long std::function repetitionLioncash
We can just use type aliases to avoid needing to write the same long type twice
2018-08-01sink_details: std::move std::function instancesLioncash
Given std::function is allowed to potentially allocate, these should be std::move'd to prevent potential reallocation (should that ever happen).
2018-07-30audio_core: Add interfaces for Sink and SinkStream.bunnei
2018-01-12Massive removal of unused modulesJames Rowe
2017-01-25SDL: Select audio device (#2403)Kloen Lansfiel
* Initial Commit Added Device logic to Sinks Started on UI for selecting devices Removed redundant import * Audio Core: Complete Device Switching Complete the device switching implementation by allowing the output device to be loaded, changed and saved through the configurations menu. Worked with the Sink abstraction and tuned the "Device Selection" configuration so that the Device List is automatically populated when the Sink is changed. This hopefully addresses the concerns and recommendations mentioned in the comments of the PR. * Clean original implementation. * Refactor GetSinkDetails
2016-04-30AudioCore: List of sink typesMerryMage