summaryrefslogtreecommitdiffstats
path: root/src/audio_core/stream.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-02-16audio_core/buffer: Make const and non-const getter for samples consistentLioncash1-1/+1
This way proper const/non-const selection can occur.
2019-02-16core_timing: Convert core timing into a classLioncash1-6/+5
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.
2019-02-12core_timing: Rename CoreTiming namespace to Core::TimingLioncash1-3/+4
Places all of the timing-related functionality under the existing Core namespace to keep things consistent, rather than having the timing utilities sitting in its own completely separate namespace.
2019-01-26dsp_interface: fix sound being played while volume is 0fearlessTobi1-1/+1
According to documentation, if the argument of std::exp is zero, one is returned. However we want the return value to be also zero in this case so no audio is played.
2018-12-28audio_core: Convert LOG_CRITICAL + UNREACHABLE over to UNIMPLEMENTED/UNIMPLEMENTED_MSGLioncash1-4/+3
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.
2018-11-06microprofile: Drop ReleaseActiveBuffer scope.Markus Wick1-4/+0
This was created with the unfinished resampling PR in mind. As the resampling is now on the audio thread, we don't need to care about this here any more.
2018-09-24stream: Preserve enum class type in GetState()Lioncash1-2/+2
Preserves the meaning/type-safetiness of the stream state instead of making it an opaque u32. This makes it usable for other things outside of the service HLE context.
2018-09-23Added audren:u#GetAudioRendererStateDavid Marcec1-0/+5
2018-09-17stream: Replace includes with forward declarations where applicableLioncash1-0/+1
Avoids propagating includes in headers where it's not necessary to do so.
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-4/+4
2018-09-12audio_core: Flush stream when not playing anythingMerryMage1-0/+2
2018-09-08Add audio stretching supportfearlessTobi1-0/+1
2018-09-04Update microprofile scopes.Markus Wick1-0/+4
Blame the subsystems which deserve the blame :) The updated list is not complete, just the ones I've spotted on random sampling the stack trace.
2018-08-05audio_core: Use s16 where possible for audio samples.bunnei1-14/+5
2018-08-04audio_core: Streams need unique names for CoreTiming.bunnei1-3/+4
2018-08-01audio_core: Add configuration settings.bunnei1-7/+28
2018-07-31audio_core: Implement Sink and SinkStream interfaces with cubeb.bunnei1-0/+11
2018-07-31audio_core: Misc. improvements to stream/buffer/audio_out.bunnei1-12/+12
2018-07-28audio_core: Add initial code for keeping track of audout state.bunnei1-0/+103