Files
ci-libretro-fceumm/src/filter.h
Dwedit b9df5f188c Smooth sound after loading state
Moved function-level static variables outside of functions and renamed them
2018-03-15 19:50:46 -05:00

11 lines
262 B
C

#ifndef _FCEU_FILTER_H
#define _FCEU_FILTER_H
int32 NeoFilterSound(int32 *in, int32 *out, uint32 inlen, int32 *leftover);
void MakeFilters(int32 rate);
void SexyFilter(int32 *in, int32 *out, int32 count);
extern int64 sexyfilter_acc1, sexyfilter_acc2;
#endif