summaryrefslogtreecommitdiffstats
path: root/src/audio_core/sink.h
blob: 3c03554fa383995642e833ff04c8b3dcabb2d0c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <memory>
#include <string>

#include "audio_core/sink_stream.h"
#include "common/common_types.h"

namespace AudioCore {

constexpr char auto_device_name[] = "auto";

/**
 * 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;
    virtual SinkStream& AcquireSinkStream(u32 sample_rate, u32 num_channels,
                                          const std::string& name) = 0;
};

using SinkPtr = std::unique_ptr<Sink>;

} // namespace AudioCore