Audio: Add FLAC support

This commit is contained in:
Jérôme Leclercq
2021-06-03 17:21:15 +02:00
parent f0b26efcd3
commit 0dd5e92a50
4 changed files with 638 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
// Copyright (C) 2020 Jérôme Leclercq
// This file is part of the "Nazara Engine - Utility module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once
#ifndef NAZARA_LOADERS_LIBFLAC_HPP
#define NAZARA_LOADERS_LIBFLAC_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Audio/SoundBuffer.hpp>
#include <Nazara/Audio/SoundStream.hpp>
namespace Nz::Loaders
{
SoundBufferLoader::Entry GetSoundBufferLoader_libflac();
SoundStreamLoader::Entry GetSoundStreamLoader_libflac();
}
#endif