Even more conversion, lots of superfluous macro removal
This commit is contained in:
+5
-5
@@ -24,9 +24,9 @@
|
||||
#include "quakedef.hpp"
|
||||
|
||||
#if defined(USE_CODEC_OPUS)
|
||||
#include "snd_codec.h"
|
||||
#include "snd_codeci.h"
|
||||
#include "snd_opus.h"
|
||||
#include "snd_codec.hpp"
|
||||
#include "snd_codeci.hpp"
|
||||
#include "snd_opus.hpp"
|
||||
|
||||
#include <errno.h>
|
||||
#include <opusfile.h>
|
||||
@@ -74,7 +74,7 @@ static const OpusFileCallbacks opc_qfs =
|
||||
(int (*)(void *)) opc_fclose
|
||||
};
|
||||
|
||||
static qboolean S_OPUS_CodecInitialize (void)
|
||||
static bool S_OPUS_CodecInitialize (void)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@@ -83,7 +83,7 @@ static void S_OPUS_CodecShutdown (void)
|
||||
{
|
||||
}
|
||||
|
||||
static qboolean S_OPUS_CodecOpenStream (snd_stream_t *stream)
|
||||
static bool S_OPUS_CodecOpenStream (snd_stream_t *stream)
|
||||
{
|
||||
OggOpusFile *opFile;
|
||||
const OpusHead *op_info;
|
||||
|
||||
Reference in New Issue
Block a user