audio_core: Use s16 where possible for audio samples.

This commit is contained in:
bunnei 2018-08-04 00:03:12 -04:00
parent f1cb3903ac
commit 1dee8ceda1
9 changed files with 27 additions and 36 deletions

View file

@ -20,8 +20,7 @@ public:
private:
struct NullSinkStreamImpl final : SinkStream {
void EnqueueSamples(u32 /*num_channels*/, const s16* /*samples*/,
size_t /*sample_count*/) override {}
void EnqueueSamples(u32 /*num_channels*/, const std::vector<s16>& /*samples*/) override {}
} null_sink_stream;
};