File: devwmixf.h

package info (click to toggle)
ocp 1%3A0.1.21-1.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 5,344 kB
  • ctags: 7,862
  • sloc: ansic: 91,449; cpp: 9,729; sh: 3,119; makefile: 2,482
file content (20 lines) | stat: -rw-r--r-- 422 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef DEVWMIXF__H
#define DEVWMIXF__H

struct mixfpostprocregstruct
{
	void (*Process)(float *buffer, int len, int rate, int stereo);
	void (*Init)(int rate, int stereo);
	void (*Close)(void);
	struct mixfpostprocregstruct *next;
};

extern void mixfRegisterPostProc(struct mixfpostprocregstruct *);

struct mixfpostprocaddregstruct
{
	int (*ProcessKey)(uint16_t key);
	struct mixfpostprocaddregstruct *next;
};

#endif