diff options
| author | 2018-07-28 13:40:50 -0400 | |
|---|---|---|
| committer | 2018-07-30 21:45:24 -0400 | |
| commit | 9ef227e09d6e374008d9536935d01c11a6ca06bd (patch) | |
| tree | 55a0169ab36ff521770a94a59b857063caf65f8b /src/audio_core/sink.h | |
| parent | audio_core: Misc. improvements to stream/buffer/audio_out. (diff) | |
| download | yuzu-9ef227e09d6e374008d9536935d01c11a6ca06bd.tar.gz yuzu-9ef227e09d6e374008d9536935d01c11a6ca06bd.tar.xz yuzu-9ef227e09d6e374008d9536935d01c11a6ca06bd.zip | |
audio_core: Add interfaces for Sink and SinkStream.
Diffstat (limited to 'src/audio_core/sink.h')
| -rw-r--r-- | src/audio_core/sink.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/audio_core/sink.h b/src/audio_core/sink.h new file mode 100644 index 000000000..d1bb98c3d --- /dev/null +++ b/src/audio_core/sink.h | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | // Copyright 2018 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include <memory> | ||
| 8 | |||
| 9 | #include "audio_core/sink_stream.h" | ||
| 10 | #include "common/common_types.h" | ||
| 11 | |||
| 12 | namespace AudioCore { | ||
| 13 | |||
| 14 | constexpr char auto_device_name[] = "auto"; | ||
| 15 | |||
| 16 | /** | ||
| 17 | * This class is an interface for an audio sink. An audio sink accepts samples in stereo signed | ||
| 18 | * PCM16 format to be output. Sinks *do not* handle resampling and expect the correct sample rate. | ||
| 19 | * They are dumb outputs. | ||
| 20 | */ | ||
| 21 | class Sink { | ||
| 22 | public: | ||
| 23 | virtual ~Sink() = default; | ||
| 24 | virtual SinkStream& AcquireSinkStream(u32 sample_rate, u32 num_channels) = 0; | ||
| 25 | }; | ||
| 26 | |||
| 27 | using SinkPtr = std::unique_ptr<Sink>; | ||
| 28 | |||
| 29 | } // namespace AudioCore | ||