summaryrefslogtreecommitdiffstats
path: root/src/audio_core/sink.h
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2018-01-12 03:21:20 +0100
committerJames Rowe <jroweboy@gmail.com>2018-01-13 03:11:03 +0100
commitebf9a784a9f7f4148a669dbb39e7cd50df779a14 (patch)
treed585685a1c0a34b903af1d086d62560bf56bb29f /src/audio_core/sink.h
parentconfig: Default CPU core to Unicorn. (diff)
downloadyuzu-ebf9a784a9f7f4148a669dbb39e7cd50df779a14.tar
yuzu-ebf9a784a9f7f4148a669dbb39e7cd50df779a14.tar.gz
yuzu-ebf9a784a9f7f4148a669dbb39e7cd50df779a14.tar.bz2
yuzu-ebf9a784a9f7f4148a669dbb39e7cd50df779a14.tar.lz
yuzu-ebf9a784a9f7f4148a669dbb39e7cd50df779a14.tar.xz
yuzu-ebf9a784a9f7f4148a669dbb39e7cd50df779a14.tar.zst
yuzu-ebf9a784a9f7f4148a669dbb39e7cd50df779a14.zip
Diffstat (limited to '')
-rw-r--r--src/audio_core/sink.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/audio_core/sink.h b/src/audio_core/sink.h
deleted file mode 100644
index c69cb2c74..000000000
--- a/src/audio_core/sink.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// 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 int GetNativeSampleRate() const = 0;
-
- /**
- * Feed stereo samples to sink.
- * @param samples Samples in interleaved stereo PCM16 format.
- * @param sample_count Number of samples.
- */
- virtual void EnqueueSamples(const s16* samples, size_t sample_count) = 0;
-
- /// Samples enqueued that have not been played yet.
- virtual std::size_t SamplesInQueue() const = 0;
-
- /**
- * Sets the desired output device.
- * @param device_id ID of the desired device.
- */
- virtual void SetDevice(int device_id) = 0;
-
- /// Returns the list of available devices.
- virtual std::vector<std::string> GetDeviceList() const = 0;
-};
-
-} // namespace