area51/Scratch/SA/SoundPkg/encode.hpp
Andrew Sampson 431f72b93a source
2021-08-27 19:22:41 -07:00

17 lines
No EOL
410 B
C++

#ifndef __ENCODE_H
#define __ENCODE_H
#include "x_types.hpp"
#include "decode.hpp"
s32 ps2_EncodeToAdpcm(s32 Length,s16 *pOutBuffer,t_DecodeHeader *pHeader);
s32 gcn_EncodeToAdpcm(s32 Length,s16 *pOutBuffer,t_DecodeHeader *pHeader);
s32 pc_Encode(s32 Length, u8* pOutBuffer, s8* pFilename);
void gcn_EncodeInit(void);
void gcn_EncodeKill(void);
void ps2_EncodeInit(void);
void ps2_EncodeKill(void);
#endif