blob: 20e5d7e6060f5815fc89a4e9b33577d3be8e8956 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "libaudio.h"
#include "synthInternals.h"
#include "stddef.h"
void alFilterNew(ALFilter* f, ALCmdHandler h, ALSetParam s, s32 type) {
f->source = NULL;
f->handler = h;
f->setParam = s;
f->inp = 0;
f->outp = 0;
f->type = type;
}
|