mirror of
https://github.com/ProjectDreamland/area51.git
synced 2024-11-01 11:11:47 +01:00
17 lines
No EOL
410 B
C++
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 |