summaryrefslogtreecommitdiffstats
path: root/src/audio_core/audio_out.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core_timing: Convert core timing into a classLioncash2019-02-161-2/+3
| | | | | | | | | | | Gets rid of the largest set of mutable global state within the core. This also paves a way for eliminating usages of GetInstance() on the System class as a follow-up. Note that no behavioral changes have been made, and this simply extracts the functionality into a class. This also has the benefit of making dependencies on the core timing functionality explicit within the relevant interfaces.
* audio_core: Convert LOG_CRITICAL + UNREACHABLE over to UNIMPLEMENTED/UNIMPLEMENTED_MSGLioncash2018-12-281-2/+1
| | | | | | These two macros being used in tandem were used prior to the introduction of UNIMPLEMENTED and UNIMPLEMENTED_MSG. This provides equivalent behavior, just with less typing/reading involved.
* audio_core: Make g_sink_details internally linkedLioncash2018-12-131-2/+1
| | | | | | | | | | | | | | | | We can hide the direct array from external view and instead provide functions to retrieve the necessary info. This has the benefit of completely hiding the makeup of the SinkDetails structure from the rest of the code. Given that this makes the array hidden, we can also make the array constexpr by altering the members slightly. This gets rid of several static constructor calls related to std::vector and std::function. Now we don't have heap allocations here that need to occur before the program can even enter main(). It also has the benefit of saving a little bit of heap space, but this doesn't matter too much, since the savings in that regard are pretty tiny.
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-1/+2
|
* audio_core: Use s16 where possible for audio samples.bunnei2018-08-051-1/+1
|
* audio_core: Sinks need unique names as well.bunnei2018-08-041-1/+1
|
* audio_core: Streams need unique names for CoreTiming.bunnei2018-08-041-4/+4
|
* audio_out: Use Buffer::Tag alias in GetTagsAndReleaseBuffers()'s prototypeLioncash2018-08-021-1/+1
| | | | | This makes the Buffer::Tag usage consistent with the Stream class's prototype of GetTagsAndReleaseBuffers().
* audio_core: Add configuration settings.bunnei2018-08-011-2/+3
|
* audio_core: Implement Sink and SinkStream interfaces with cubeb.bunnei2018-07-311-3/+10
|
* audio_core: Misc. improvements to stream/buffer/audio_out.bunnei2018-07-311-2/+2
|
* audio_core: Add initial code for keeping track of audout state.bunnei2018-07-281-0/+50