mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
14 lines
270 B
C
14 lines
270 B
C
#ifndef DSPBUF_H
|
|
#define DSPBUF_H
|
|
|
|
#include "types.h"
|
|
#include "jaudio_NES/audiocommon.h"
|
|
#include "jaudio_NES/rate.h"
|
|
|
|
extern s16* DspbufProcess(DSPBUF_EVENTS event);
|
|
extern s16* MixDsp(s32 nSamples);
|
|
extern void UpdateDSP(void);
|
|
extern void DspFrameEnd(void);
|
|
|
|
#endif
|