7d8f115185
done automatically by executing regex replace `([^:0-9a-zA-Z_])size_t([^0-9a-zA-Z_])` -> `$1std::size_t$2`
30 lines
626 B
C++
30 lines
626 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include "audio_core/audio_types.h"
|
|
#include "audio_core/sink.h"
|
|
|
|
namespace AudioCore {
|
|
|
|
class NullSink final : public Sink {
|
|
public:
|
|
NullSink(std::string) {}
|
|
~NullSink() override = default;
|
|
|
|
unsigned int GetNativeSampleRate() const override {
|
|
return native_sample_rate;
|
|
}
|
|
|
|
void EnqueueSamples(const s16*, std::size_t) override {}
|
|
|
|
std::size_t SamplesInQueue() const override {
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
} // namespace AudioCore
|