From db05f4a8ef08660b2bc3d0605e420b942325b978 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 5 Nov 2021 20:02:37 -0700 Subject: [PATCH] Implement ZMusic_GetStreamInfo using GetStreamInfoEx --- source/mididevices/mididevice.h | 2 -- source/mididevices/music_base_mididevice.cpp | 11 ---------- .../music_softsynth_mididevice.cpp | 16 -------------- source/musicformats/music_midi.cpp | 7 ------- source/musicformats/music_stream.cpp | 1 - source/streamsources/music_dumb.cpp | 12 ----------- source/streamsources/music_gme.cpp | 6 ------ source/streamsources/music_libsndfile.cpp | 7 ------- source/streamsources/music_opl.cpp | 13 ------------ source/streamsources/music_xa.cpp | 7 ------- source/streamsources/streamsource.h | 1 - source/zmusic/musinfo.h | 1 - source/zmusic/zmusic.cpp | 21 ++++++++++++++++--- source/zmusic/zmusic_internal.h | 21 +++++++++++++++++++ 14 files changed, 39 insertions(+), 87 deletions(-) diff --git a/source/mididevices/mididevice.h b/source/mididevices/mididevice.h index 9bb53bd..bd39fc1 100644 --- a/source/mididevices/mididevice.h +++ b/source/mididevices/mididevice.h @@ -51,7 +51,6 @@ public: virtual std::string GetStats(); virtual int GetDeviceType() const { return MDEV_DEFAULT; } virtual bool CanHandleSysex() const { return true; } - virtual SoundStreamInfo GetStreamInfo() const; virtual SoundStreamInfoEx GetStreamInfoEx() const; protected: @@ -82,7 +81,6 @@ public: virtual int Open() override; virtual bool ServiceStream(void* buff, int numbytes); int GetSampleRate() const { return SampleRate; } - SoundStreamInfo GetStreamInfo() const override; SoundStreamInfoEx GetStreamInfoEx() const override; protected: diff --git a/source/mididevices/music_base_mididevice.cpp b/source/mididevices/music_base_mididevice.cpp index 389d51c..dcf856a 100644 --- a/source/mididevices/music_base_mididevice.cpp +++ b/source/mididevices/music_base_mididevice.cpp @@ -170,17 +170,6 @@ std::string MIDIDevice::GetStats() return "This MIDI device does not have any stats."; } -//========================================================================== -// -// MIDIDevice :: GetStreamInfo -// -//========================================================================== - -SoundStreamInfo MIDIDevice::GetStreamInfo() const -{ - return { 0, 0, 0 }; // i.e. do not use streaming. -} - //========================================================================== // // MIDIDevice :: GetStreamInfoEx diff --git a/source/mididevices/music_softsynth_mididevice.cpp b/source/mididevices/music_softsynth_mididevice.cpp index 169d952..8d8d69d 100644 --- a/source/mididevices/music_softsynth_mididevice.cpp +++ b/source/mididevices/music_softsynth_mididevice.cpp @@ -86,22 +86,6 @@ SoftSynthMIDIDevice::~SoftSynthMIDIDevice() Close(); } -//========================================================================== -// -// SoftSynthMIDIDevice :: GetStreamInfo -// -//========================================================================== - -SoundStreamInfo SoftSynthMIDIDevice::GetStreamInfo() const -{ - int chunksize = (SampleRate / StreamBlockSize) * 4; - if (!isMono) - { - chunksize *= 2; - } - return { chunksize, SampleRate, isMono? 1:2 }; -} - //========================================================================== // // SoftSynthMIDIDevice :: GetStreamInfoEx diff --git a/source/musicformats/music_midi.cpp b/source/musicformats/music_midi.cpp index 5a6231f..0e82849 100644 --- a/source/musicformats/music_midi.cpp +++ b/source/musicformats/music_midi.cpp @@ -87,7 +87,6 @@ public: int ServiceEvent(); void SetMIDISource(MIDISource* _source); bool ServiceStream(void* buff, int len) override; - SoundStreamInfo GetStreamInfo() const override; SoundStreamInfoEx GetStreamInfoEx() const override; int GetDeviceType() const override; @@ -447,12 +446,6 @@ bool MIDIStreamer::InitPlayback() } } -SoundStreamInfo MIDIStreamer::GetStreamInfo() const -{ - if (MIDI) return MIDI->GetStreamInfo(); - else return { 0, 0, 0 }; -} - SoundStreamInfoEx MIDIStreamer::GetStreamInfoEx() const { if (MIDI) return MIDI->GetStreamInfoEx(); diff --git a/source/musicformats/music_stream.cpp b/source/musicformats/music_stream.cpp index 9bb9a11..86299f0 100644 --- a/source/musicformats/music_stream.cpp +++ b/source/musicformats/music_stream.cpp @@ -54,7 +54,6 @@ public: void ChangeSettingNum(const char *name, double value) override { if (m_Source) m_Source->ChangeSettingNum(name, value); } void ChangeSettingString(const char *name, const char *value) override { if(m_Source) m_Source->ChangeSettingString(name, value); } bool ServiceStream(void* buff, int len) override; - SoundStreamInfo GetStreamInfo() const override { return m_Source->GetFormat(); } SoundStreamInfoEx GetStreamInfoEx() const override { return m_Source->GetFormatEx(); } diff --git a/source/streamsources/music_dumb.cpp b/source/streamsources/music_dumb.cpp index a658dc2..f026fc7 100644 --- a/source/streamsources/music_dumb.cpp +++ b/source/streamsources/music_dumb.cpp @@ -64,7 +64,6 @@ public: //bool SetPosition(int ms); bool SetSubsong(int subsong) override; bool Start() override; - SoundStreamInfo GetFormat() override; SoundStreamInfoEx GetFormatEx() override; void ChangeSettingNum(const char* setting, double val) override; std::string GetStats() override; @@ -1029,17 +1028,6 @@ DumbSong::~DumbSong() if (duh) unload_duh(duh); } -//========================================================================== -// -// DumbSong GetFormat -// -//========================================================================== - -SoundStreamInfo DumbSong::GetFormat() -{ - return { 32*1024, srate, 2 }; -} - //========================================================================== // // DumbSong GetFormatEx diff --git a/source/streamsources/music_gme.cpp b/source/streamsources/music_gme.cpp index ca6e1bf..c6248d9 100644 --- a/source/streamsources/music_gme.cpp +++ b/source/streamsources/music_gme.cpp @@ -57,7 +57,6 @@ public: void ChangeSettingNum(const char *name, double val) override; std::string GetStats() override; bool GetData(void *buffer, size_t len) override; - SoundStreamInfo GetFormat() override; SoundStreamInfoEx GetFormatEx() override; protected: @@ -168,11 +167,6 @@ GMESong::GMESong(Music_Emu *emu, int sample_rate) } -SoundStreamInfo GMESong::GetFormat() -{ - return { 32*1024, SampleRate, -2 }; -} - SoundStreamInfoEx GMESong::GetFormatEx() { return { 32*1024, SampleRate, SampleType_Int16, ChannelConfig_Stereo }; diff --git a/source/streamsources/music_libsndfile.cpp b/source/streamsources/music_libsndfile.cpp index 1f812ca..f24104f 100644 --- a/source/streamsources/music_libsndfile.cpp +++ b/source/streamsources/music_libsndfile.cpp @@ -50,7 +50,6 @@ public: SndFileSong(SoundDecoder *decoder, uint32_t loop_start, uint32_t loop_end, bool startass, bool endass); ~SndFileSong(); std::string GetStats() override; - SoundStreamInfo GetFormat() override; SoundStreamInfoEx GetFormatEx() override; bool GetData(void *buffer, size_t len) override; @@ -450,12 +449,6 @@ SndFileSong::SndFileSong(SoundDecoder *decoder, uint32_t loop_start, uint32_t lo Channels = iChannels == ChannelConfig_Stereo? 2:1; } -SoundStreamInfo SndFileSong::GetFormat() -{ - // deal with this once the configuration is handled better. - return { 64/*snd_streambuffersize*/ * 1024, SampleRate, -Channels }; -} - SoundStreamInfoEx SndFileSong::GetFormatEx() { ChannelConfig chans; diff --git a/source/streamsources/music_opl.cpp b/source/streamsources/music_opl.cpp index 2a4b49b..6186072 100644 --- a/source/streamsources/music_opl.cpp +++ b/source/streamsources/music_opl.cpp @@ -54,7 +54,6 @@ public: ~OPLMUSSong (); bool Start() override; void ChangeSettingInt(const char *name, int value) override; - SoundStreamInfo GetFormat() override; SoundStreamInfoEx GetFormatEx() override; protected: @@ -94,18 +93,6 @@ OPLMUSSong::OPLMUSSong(MusicIO::FileInterface* reader, OPLConfig* config) // //========================================================================== -SoundStreamInfo OPLMUSSong::GetFormat() -{ - int samples = int(OPL_SAMPLE_RATE / 14); - return { samples * 4, int(OPL_SAMPLE_RATE), current_opl_core == 0? 1:2 }; -} - -//========================================================================== -// -// -// -//========================================================================== - SoundStreamInfoEx OPLMUSSong::GetFormatEx() { int samples = int(OPL_SAMPLE_RATE / 14); diff --git a/source/streamsources/music_xa.cpp b/source/streamsources/music_xa.cpp index 8b66e03..d889df8 100644 --- a/source/streamsources/music_xa.cpp +++ b/source/streamsources/music_xa.cpp @@ -235,7 +235,6 @@ class XASong : public StreamSource { public: XASong(MusicIO::FileInterface *readr); - SoundStreamInfo GetFormat() override; SoundStreamInfoEx GetFormatEx() override; bool Start() override; bool GetData(void *buffer, size_t len) override; @@ -261,12 +260,6 @@ XASong::XASong(MusicIO::FileInterface * reader) getNextXABlock(&xad, false); } -SoundStreamInfo XASong::GetFormat() -{ - auto SampleRate = xad.blockIs18K? 18900 : 37800; - return { 64*1024, SampleRate, 2}; -} - SoundStreamInfoEx XASong::GetFormatEx() { auto SampleRate = xad.blockIs18K? 18900 : 37800; diff --git a/source/streamsources/streamsource.h b/source/streamsources/streamsource.h index b41e307..633d381 100644 --- a/source/streamsources/streamsource.h +++ b/source/streamsources/streamsource.h @@ -21,7 +21,6 @@ public: virtual bool SetPosition(unsigned position) { return false; } virtual bool SetSubsong(int subsong) { return false; } virtual bool GetData(void *buffer, size_t len) = 0; - virtual SoundStreamInfo GetFormat() { return {65536, m_OutputRate, 2 }; } // Default format is: System's output sample rate, 32 bit float, stereo virtual SoundStreamInfoEx GetFormatEx() = 0; virtual std::string GetStats() { return ""; } virtual void ChangeSettingInt(const char *name, int value) { } diff --git a/source/zmusic/musinfo.h b/source/zmusic/musinfo.h index 1bda6b9..7387014 100644 --- a/source/zmusic/musinfo.h +++ b/source/zmusic/musinfo.h @@ -31,7 +31,6 @@ public: virtual void ChangeSettingNum(const char* setting, double value) {} // " virtual void ChangeSettingString(const char* setting, const char* value) {} // " virtual bool ServiceStream(void *buff, int len) { return false; } - virtual SoundStreamInfo GetStreamInfo() const { return { 0,0,0 }; } virtual SoundStreamInfoEx GetStreamInfoEx() const = 0; enum EState diff --git a/source/zmusic/zmusic.cpp b/source/zmusic/zmusic.cpp index 1b76bab..c93b632 100644 --- a/source/zmusic/zmusic.cpp +++ b/source/zmusic/zmusic.cpp @@ -455,9 +455,24 @@ DLL_EXPORT zmusic_bool ZMusic_IsMIDI(MusInfo *song) DLL_EXPORT void ZMusic_GetStreamInfo(MusInfo *song, SoundStreamInfo *fmt) { if (!fmt) return; - if (!song) *fmt = {}; - std::lock_guard lock(song->CritSec); - *fmt = song->GetStreamInfo(); + *fmt = {}; + + if (!song) + return; + + SoundStreamInfoEx fmtex; + { + std::lock_guard lock(song->CritSec); + fmtex = song->GetStreamInfoEx(); + } + if (fmtex.mSampleRate > 0) + { + fmt->mBufferSize = fmtex.mBufferSize; + fmt->mSampleRate = fmtex.mSampleRate; + fmt->mNumChannels = ZMusic_ChannelCount(fmtex.mChannelConfig); + if (fmtex.mSampleType == SampleType_Int16) + fmt->mNumChannels *= -1; + } } DLL_EXPORT void ZMusic_GetStreamInfoEx(MusInfo *song, SoundStreamInfoEx *fmt) diff --git a/source/zmusic/zmusic_internal.h b/source/zmusic/zmusic_internal.h index 8f78e7f..8c11c45 100644 --- a/source/zmusic/zmusic_internal.h +++ b/source/zmusic/zmusic_internal.h @@ -49,3 +49,24 @@ struct CustomFileReader : public MusicIO::FileInterface void ZMusic_Printf(int type, const char* msg, ...); + +inline uint8_t ZMusic_SampleTypeSize(SampleType stype) +{ + switch(stype) + { + case SampleType_UInt8: return sizeof(uint8_t); + case SampleType_Int16: return sizeof(int16_t); + case SampleType_Float32: return sizeof(float); + } + return 0; +} + +inline uint8_t ZMusic_ChannelCount(ChannelConfig chans) +{ + switch(chans) + { + case ChannelConfig_Mono: return 1; + case ChannelConfig_Stereo: return 2; + } + return 0; +}