2000-01-28 14:55:50 +00:00
|
|
|
/*
|
|
|
|
* Header file for audio drivers
|
|
|
|
*/
|
|
|
|
#include "ntp_types.h"
|
|
|
|
|
2004-07-20 15:01:56 +00:00
|
|
|
#define MAXGAIN 255 /* max codec gain */
|
|
|
|
#define MONGAIN 127 /* codec monitor gain */
|
2000-01-28 14:55:50 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Function prototypes
|
|
|
|
*/
|
2015-02-05 20:53:33 +00:00
|
|
|
int audio_init (const char *, int, int);
|
2013-12-04 21:33:17 +00:00
|
|
|
int audio_gain (int, int, int);
|
|
|
|
void audio_show (void);
|