diff options
| author | MerryMage <MerryMage@users.noreply.github.com> | 2016-08-31 16:55:10 +0100 |
|---|---|---|
| committer | MerryMage <MerryMage@users.noreply.github.com> | 2016-08-31 16:55:10 +0100 |
| commit | 0ef4185644def3e7d99d88af3c8dd27d40660c82 (patch) | |
| tree | 0a6b8f018184ea30b5b8471520bd426b6de52b65 /src/audio_core/null_sink.h | |
| parent | 87893e6d68079ff4fa277688adb508d041944385 (diff) | |
sink: Change EnqueueSamples to take a pointer to a buffer instead of a std::vector
Diffstat (limited to 'src/audio_core/null_sink.h')
| -rw-r--r-- | src/audio_core/null_sink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/null_sink.h b/src/audio_core/null_sink.h index faf0ee4e1..9931c4778 100644 --- a/src/audio_core/null_sink.h +++ b/src/audio_core/null_sink.h @@ -19,7 +19,7 @@ public: return native_sample_rate; } - void EnqueueSamples(const std::vector<s16>&) override {} + void EnqueueSamples(const s16*, size_t) override {} size_t SamplesInQueue() const override { return 0; |
