2016-02-21 18:43:52 +05:30
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-09-09 01:37:28 +05:30
|
|
|
#include <functional>
|
2016-02-21 18:43:52 +05:30
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace AudioCore {
|
|
|
|
|
2018-07-12 20:22:06 +05:30
|
|
|
constexpr char auto_device_name[] = "auto";
|
|
|
|
|
2016-02-21 18:43:52 +05:30
|
|
|
/**
|
2016-09-18 06:08:01 +05:30
|
|
|
* This class is an interface for an audio sink. An audio sink accepts samples in stereo signed
|
2016-09-19 06:31:46 +05:30
|
|
|
* PCM16 format to be output. Sinks *do not* handle resampling and expect the correct sample rate.
|
|
|
|
* They are dumb outputs.
|
2016-02-21 18:43:52 +05:30
|
|
|
*/
|
|
|
|
class Sink {
|
|
|
|
public:
|
|
|
|
virtual ~Sink() = default;
|
|
|
|
|
2018-09-09 01:37:28 +05:30
|
|
|
/// The native rate of this sink. The sink expects to be fed samples that respect this.
|
|
|
|
/// (Units: samples/sec)
|
2016-04-27 15:27:29 +05:30
|
|
|
virtual unsigned int GetNativeSampleRate() const = 0;
|
2016-02-21 18:43:52 +05:30
|
|
|
|
|
|
|
/**
|
2018-09-09 01:37:28 +05:30
|
|
|
* Set callback for samples
|
2016-08-31 21:25:10 +05:30
|
|
|
* @param samples Samples in interleaved stereo PCM16 format.
|
|
|
|
* @param sample_count Number of samples.
|
2016-02-21 18:43:52 +05:30
|
|
|
*/
|
2018-09-09 01:37:28 +05:30
|
|
|
virtual void SetCallback(std::function<void(s16*, std::size_t)> cb) = 0;
|
2016-02-21 18:43:52 +05:30
|
|
|
};
|
|
|
|
|
2018-03-09 23:24:43 +05:30
|
|
|
} // namespace AudioCore
|