mirror of
https://github.com/zeldaret/tp
synced 2026-06-03 10:31:57 -04:00
8185d87f85
* initial copy of hbm from sdk_2009-12-11 * some more nw4hbm cleanup * nw4hbm db mostly done * nw4hbm snd copied from oot-vc * nw4hbm ut copied * nw4hbm lyt copied * nw4hbm copied, mostly matching usa 1.0 * setup nw4hbm debug define * fix HBMDataInfo struct * add rvl sdk card lib
25 lines
387 B
C
25 lines
387 B
C
#ifndef _REVOLUTION_WENC_H_
|
|
#define _REVOLUTION_WENC_H_
|
|
|
|
#include <revolution/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
WENC_FLAG_USER_INFO = (1 << 0),
|
|
} WENCFlag;
|
|
|
|
typedef struct {
|
|
u8 data[32];
|
|
} WENCInfo; // size 0x20
|
|
|
|
s32 WENCGetEncodeData(WENCInfo* info, u32 flag, const s16* pcmData, s32 samples, u8* adpcmData);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|