Files
ci-libretro-fceumm/src/filter.h

12 lines
304 B
C
Raw Normal View History

2014-03-30 22:50:28 +02:00
#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);
2022-04-05 13:45:20 +01:00
void SexyFilter2(int32 *in, int32 count);
2014-03-30 22:50:28 +02:00
extern int64 sexyfilter_acc1, sexyfilter_acc2;
2014-03-30 22:50:28 +02:00
#endif