wav files streaming

This commit is contained in:
MihailRis
2024-03-01 14:08:13 +03:00
parent cc9a3e3ec8
commit 7c51e39dfe
3 changed files with 122 additions and 6 deletions
+2
View File
@@ -5,10 +5,12 @@
namespace audio {
struct PCM;
class PCMStream;
}
namespace wav {
extern audio::PCM* load_pcm(const std::filesystem::path& file, bool headerOnly);
extern audio::PCMStream* create_stream(const std::filesystem::path& file);
}
#endif // CODERS_WAV_H_