xref: /netbsd-src/external/bsd/ntp/dist/include/audio.h (revision c2f76ff004a2cb67efe5b12d97bd3ef7fe89e18d)
1 /*	$NetBSD: audio.h,v 1.2 2010/12/04 23:08:33 christos Exp $	*/
2 
3 /*
4  * Header file for audio drivers
5  */
6 #include "ntp_types.h"
7 
8 #define MAXGAIN		255	/* max codec gain */
9 #define	MONGAIN		127	/* codec monitor gain */
10 
11 /*
12  * Function prototypes
13  */
14 int	audio_init		(const char *, int, int);
15 int	audio_gain		(int, int, int);
16 void	audio_show		(void);
17