summaryrefslogtreecommitdiffstats
path: root/src/audio_core/sdl2_sink.h
blob: 8ec1526d80b081c7948fa8c48706b0378ad7bcde (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
// Copyright 2018 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <string>
#include <vector>

#include "audio_core/sink.h"

namespace AudioCore {

class SDLSink final : public Sink {
public:
    explicit SDLSink(std::string_view device_id);
    ~SDLSink() override;

    SinkStream& AcquireSinkStream(u32 sample_rate, u32 num_channels,
                                  const std::string& name) override;

private:
    std::string output_device;
    std::vector<SinkStreamPtr> sink_streams;
};

std::vector<std::string> ListSDLSinkDevices();

} // namespace AudioCore