diff options
author | bunnei <bunneidev@gmail.com> | 2016-02-26 01:21:50 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-02-26 01:21:50 +0100 |
commit | af7282b5ea8ed3ebfb47f35f6ac8212cfcb4c4fd (patch) | |
tree | 1ae5c0281f70ff811ea2370610745b3957060fa5 /src/audio_core/sink.h | |
parent | Merge pull request #1422 from vgturtle127/patch-1 (diff) | |
parent | AudioCore: Skeleton Implementation (diff) | |
download | yuzu-af7282b5ea8ed3ebfb47f35f6ac8212cfcb4c4fd.tar yuzu-af7282b5ea8ed3ebfb47f35f6ac8212cfcb4c4fd.tar.gz yuzu-af7282b5ea8ed3ebfb47f35f6ac8212cfcb4c4fd.tar.bz2 yuzu-af7282b5ea8ed3ebfb47f35f6ac8212cfcb4c4fd.tar.lz yuzu-af7282b5ea8ed3ebfb47f35f6ac8212cfcb4c4fd.tar.xz yuzu-af7282b5ea8ed3ebfb47f35f6ac8212cfcb4c4fd.tar.zst yuzu-af7282b5ea8ed3ebfb47f35f6ac8212cfcb4c4fd.zip |
Diffstat (limited to 'src/audio_core/sink.h')
-rw-r--r-- | src/audio_core/sink.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/audio_core/sink.h b/src/audio_core/sink.h new file mode 100644 index 000000000..cad21a85e --- /dev/null +++ b/src/audio_core/sink.h @@ -0,0 +1,34 @@ +// Copyright 2016 Citra Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include <vector> + +#include "common/common_types.h" + +namespace AudioCore { + +/** + * This class is an interface for an audio sink. An audio sink accepts samples in stereo signed PCM16 format to be output. + * Sinks *do not* handle resampling and expect the correct sample rate. They are dumb outputs. + */ +class Sink { +public: + virtual ~Sink() = default; + + /// The native rate of this sink. The sink expects to be fed samples that respect this. (Units: samples/sec) + virtual unsigned GetNativeSampleRate() const = 0; + + /** + * Feed stereo samples to sink. + * @param samples Samples in interleaved stereo PCM16 format. Size of vector must be multiple of two. + */ + virtual void EnqueueSamples(const std::vector<s16>& samples) = 0; + + /// Samples enqueued that have not been played yet. + virtual std::size_t SamplesInQueue() const = 0; +}; + +} // namespace |