lots of ios file related updates, now use URLs internally. icons added.

This commit is contained in:
essej
2022-04-13 13:48:09 -04:00
parent e2178da076
commit dd89d80959
18 changed files with 169 additions and 69 deletions

View File

@ -46,8 +46,8 @@ public:
bool isLooping() const override;
String setAudioFile(File file);
File getAudioFile();
String setAudioFile(const URL & file);
URL getAudioFile();
AudioBuffer<float>* getSourceAudioBuffer();
@ -148,7 +148,7 @@ private:
bool m_stream_end_reached = false;
int64_t m_output_silence_counter = 0;
File m_curfile;
URL m_curfile;
bool m_audiobuffer_is_source = false;
int64_t m_maxloops = 0;
std::unique_ptr<WDL_Resampler> m_resampler;