Unverified Commit 04ff609d authored by Wolle's avatar Wolle Committed by GitHub

prepare for VORBIS

parent e45fe33c
......@@ -6,6 +6,16 @@
#pragma once
#include <stdint.h>
#define ERR_VORBIS_NONE 0
#define ERR_VORBIS_CHANNELS_OUT_OF_RANGE 1
#define ERR_VORBIS_INVALID_SAMPLERATE 2
#define ERR_VORBIS_EXTRA_CHANNELS_UNSUPPORTED 3
#define ERR_VORBIS_DECODER_ASYNC 4
#define ERR_VORBIS_OGG_SYNC_NOT_FOUND 5
#define ERR_VORBIS_BAD_HEADER 6
#define ERR_VORBIS_NOT_AUDIO 7
#define ERR_VORBIS_BAD_PACKET 8
void VORBISDecoder_FreeBuffers(){;}
......@@ -16,4 +26,5 @@ int VORBISGetBitsPerSample(){return 0;}
int VORBISGetBitRate(){return 0;}
int VORBISDecode(uint8_t* data, int* bytesLeft, int16_t* m_outBuff){return 0;}
int VORBISGetOutputSamps(){return 0;}
char* VORBISgetStreamTitle(){return nullptr;}
\ No newline at end of file
char* VORBISgetStreamTitle(){return nullptr;}
int VORBISGetChannels(){return 0;}
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment