3e206b0a66
This patch contains the following possible cleanups: - make needlessly global code static - remove the following unused global function: - isdn_audio.c: isdn_audio_2adpcm_flush - remove the following unused struct: - isdn_net.c: isdn_concap_demand_dial_dops Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
/* $Id: isdn_audio.h,v 1.1.2.2 2004/01/12 22:37:18 keil Exp $
|
|
*
|
|
* Linux ISDN subsystem, audio conversion and compression (linklevel).
|
|
*
|
|
* Copyright 1994-1999 by Fritz Elfert (fritz@isdn4linux.de)
|
|
*
|
|
* This software may be used and distributed according to the terms
|
|
* of the GNU General Public License, incorporated herein by reference.
|
|
*
|
|
*/
|
|
|
|
#define DTMF_NPOINTS 205 /* Number of samples for DTMF recognition */
|
|
typedef struct adpcm_state {
|
|
int a;
|
|
int d;
|
|
int word;
|
|
int nleft;
|
|
int nbits;
|
|
} adpcm_state;
|
|
|
|
typedef struct dtmf_state {
|
|
char last;
|
|
char llast;
|
|
int idx;
|
|
int buf[DTMF_NPOINTS];
|
|
} dtmf_state;
|
|
|
|
typedef struct silence_state {
|
|
int state;
|
|
unsigned int idx;
|
|
} silence_state;
|
|
|
|
extern void isdn_audio_ulaw2alaw(unsigned char *, unsigned long);
|
|
extern void isdn_audio_alaw2ulaw(unsigned char *, unsigned long);
|
|
extern adpcm_state *isdn_audio_adpcm_init(adpcm_state *, int);
|
|
extern int isdn_audio_adpcm2xlaw(adpcm_state *, int, unsigned char *, unsigned char *, int);
|
|
extern int isdn_audio_xlaw2adpcm(adpcm_state *, int, unsigned char *, unsigned char *, int);
|
|
extern void isdn_audio_calc_dtmf(modem_info *, unsigned char *, int, int);
|
|
extern void isdn_audio_eval_dtmf(modem_info *);
|
|
dtmf_state *isdn_audio_dtmf_init(dtmf_state *);
|
|
extern void isdn_audio_calc_silence(modem_info *, unsigned char *, int, int);
|
|
extern void isdn_audio_eval_silence(modem_info *);
|
|
silence_state *isdn_audio_silence_init(silence_state *);
|
|
extern void isdn_audio_put_dle_code(modem_info *, u_char);
|