ogg decoder

This commit is contained in:
MihailRis
2024-02-28 13:22:33 +03:00
parent e3c2a1da52
commit 145ebf8468
5 changed files with 77 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef CODERS_OGG_H_
#define CODERS_OGG_H_
#include <filesystem>
namespace audio {
struct PCM;
}
namespace ogg {
extern audio::PCM* load_pcm(const std::filesystem::path& file, bool headerOnly);
}
#endif // CODERS_OGG_H_