2b15cb3d09
Thanks to roberto for providing pointers to wedge this into HEAD. Approved by: roberto
15 lines
283 B
C
15 lines
283 B
C
/*
|
|
* Header file for audio drivers
|
|
*/
|
|
#include "ntp_types.h"
|
|
|
|
#define MAXGAIN 255 /* max codec gain */
|
|
#define MONGAIN 127 /* codec monitor gain */
|
|
|
|
/*
|
|
* Function prototypes
|
|
*/
|
|
int audio_init (const char *, int, int);
|
|
int audio_gain (int, int, int);
|
|
void audio_show (void);
|