Audio: Add .ogg loader (using libvorbisfile)

This commit is contained in:
Jérôme Leclercq
2021-05-30 02:32:06 +02:00
parent ca51ab16c9
commit 79b6b87379
4 changed files with 453 additions and 2 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_LIBVORBIS_HPP
#define NAZARA_LOADERS_LIBVORBIS_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Audio/SoundBuffer.hpp>
#include <Nazara/Audio/SoundStream.hpp>
namespace Nz::Loaders
{
SoundBufferLoader::Entry GetSoundBufferLoader_libvorbis();
SoundStreamLoader::Entry GetSoundStreamLoader_libvorbis();
}
#endif