aboutsummaryrefslogtreecommitdiff
path: root/src/audio_core/sdl2_sink.h
blob: 6e262a0b647665e422e49abd2c7aa101cb4190da (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 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <cstddef>
#include <memory>
#include "audio_core/sink.h"

namespace AudioCore {

class SDL2Sink final : public Sink {
public:
    explicit SDL2Sink(std::string device_id);
    ~SDL2Sink() override;

    unsigned int GetNativeSampleRate() const override;

    void SetCallback(std::function<void(s16*, std::size_t)> cb) override;

private:
    struct Impl;
    std::unique_ptr<Impl> impl;
};

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

} // namespace AudioCore