summaryrefslogblamecommitdiffstats
path: root/src/audio_core/sdl2_sink.h
blob: b13827214ffd8971b347f38ad4eb1ede02d65eb8 (plain) (tree)



















                                                      
                                                                          








                                           
// 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:
    SDL2Sink();
    ~SDL2Sink() override;

    unsigned int GetNativeSampleRate() const override;

    void EnqueueSamples(const s16* samples, size_t sample_count) override;

    size_t SamplesInQueue() const override;

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

} // namespace AudioCore