summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/cdda.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/cdda.h')
-rw-r--r--src/devices/sound/cdda.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/cdda.h b/src/devices/sound/cdda.h
index 73a1e1a237d..b0c7b7f81e8 100644
--- a/src/devices/sound/cdda.h
+++ b/src/devices/sound/cdda.h
@@ -30,10 +30,10 @@ protected:
virtual void device_start() override;
// sound stream update overrides
- virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override;
+ virtual void sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override;
private:
- void get_audio_data(stream_sample_t *bufL, stream_sample_t *bufR, uint32_t samples_wanted);
+ void get_audio_data(write_stream_view &bufL, write_stream_view &bufR);
cdrom_file * m_disc;