Vyacheslav Ivanov bbf33e8e4d
format: reformat project
Signed-off-by: Vyacheslav Ivanov <islavaivanov76@gmail.com>
2024-08-03 19:53:48 +03:00

21 lines
386 B
C++

#ifndef CODERS_WAV_HPP_
#define CODERS_WAV_HPP_
#include <filesystem>
namespace audio {
struct PCM;
class PCMStream;
}
namespace wav {
std::unique_ptr<audio::PCM> load_pcm(
const std::filesystem::path& file, bool headerOnly
);
std::unique_ptr<audio::PCMStream> create_stream(
const std::filesystem::path& file
);
}
#endif // CODERS_WAV_HPP_