audio fixes

This commit is contained in:
MihailRis 2024-02-28 14:58:13 +03:00
parent 2440d852d3
commit d1b145e7a4
4 changed files with 5 additions and 11 deletions

View File

@ -188,7 +188,7 @@ uint ALAudio::getFreeSource(){
}
ALuint id;
alGenSources(1, &id);
if (!AL_GET_ERORR())
if (!AL_GET_ERROR())
return 0;
allsources.push_back(id);
return id;
@ -200,13 +200,9 @@ uint ALAudio::getFreeBuffer(){
freebuffers.pop_back();
return buffer;
}
if (allbuffers.size() == maxBuffers){
std::cerr << "attempted to create new ALbuffer, but limit is " << maxBuffers << std::endl;
return 0;
}
ALuint id;
alGenBuffers(1, &id);
if (!AL_GET_ERORR()) {
if (!AL_GET_ERROR()) {
return 0;
}
@ -227,7 +223,7 @@ std::vector<std::string> ALAudio::getAvailableDevices() const {
const ALCchar* devices;
devices = alcGetString(device, ALC_DEVICE_SPECIFIER);
if (!AL_GET_ERORR()) {
if (!AL_GET_ERROR()) {
return devicesVec;
}

View File

@ -88,7 +88,6 @@ namespace audio {
std::vector<uint> freebuffers;
uint maxSources;
uint maxBuffers;
ALAudio(ALCdevice* device, ALCcontext* context);
public:

View File

@ -15,7 +15,7 @@
#include "../typedefs.h"
#define AL_CHECK(STATEMENT) STATEMENT; AL::check_errors(__FILE__, __LINE__)
#define AL_GET_ERORR() AL::check_errors(__FILE__, __LINE__)
#define AL_GET_ERROR() AL::check_errors(__FILE__, __LINE__)
namespace AL {
bool check_errors(const std::string& filename, const std::uint_fast32_t line);

View File

@ -26,7 +26,6 @@ audio::PCM* ogg::load_pcm(const std::filesystem::path& file, bool headerOnly) {
if ((code = ov_fopen(file.u8string().c_str(), &vf))) {
throw std::runtime_error(vorbis_error_message(code));
}
std::vector<char> data;
vorbis_info* info = ov_info(&vf, -1);
@ -52,5 +51,5 @@ audio::PCM* ogg::load_pcm(const std::filesystem::path& file, bool headerOnly) {
}
ov_clear(&vf);
return new audio::PCM(data, channels, 16, sampleRate);
return new audio::PCM(std::move(data), channels, 16, sampleRate);
}