Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _ASTERISK_DSP_H
00024 #define _ASTERISK_DSP_H
00025
00026 #define DSP_FEATURE_SILENCE_SUPPRESS (1 << 0)
00027 #define DSP_FEATURE_BUSY_DETECT (1 << 1)
00028 #define DSP_FEATURE_DIGIT_DETECT (1 << 3)
00029 #define DSP_FEATURE_FAX_DETECT (1 << 4)
00030
00031 #define DSP_DIGITMODE_DTMF 0
00032 #define DSP_DIGITMODE_MF 1
00033
00034 #define DSP_DIGITMODE_NOQUELCH (1 << 8)
00035 #define DSP_DIGITMODE_MUTECONF (1 << 9)
00036 #define DSP_DIGITMODE_MUTEMAX (1 << 10)
00037 #define DSP_DIGITMODE_RELAXDTMF (1 << 11)
00038
00039 #define DSP_PROGRESS_TALK (1 << 16)
00040 #define DSP_PROGRESS_RINGING (1 << 17)
00041 #define DSP_PROGRESS_BUSY (1 << 18)
00042 #define DSP_PROGRESS_CONGESTION (1 << 19)
00043 #define DSP_FEATURE_CALL_PROGRESS (DSP_PROGRESS_TALK | DSP_PROGRESS_RINGING | DSP_PROGRESS_BUSY | DSP_PROGRESS_CONGESTION)
00044 #define DSP_FEATURE_WAITDIALTONE (1 << 20)
00045
00046 #define DSP_FAXMODE_DETECT_CNG (1 << 0)
00047 #define DSP_FAXMODE_DETECT_CED (1 << 1)
00048 #define DSP_FAXMODE_DETECT_SQUELCH (1 << 2)
00049 #define DSP_FAXMODE_DETECT_ALL (DSP_FAXMODE_DETECT_CNG | DSP_FAXMODE_DETECT_CED)
00050
00051 #define DSP_TONE_STATE_SILENCE 0
00052 #define DSP_TONE_STATE_RINGING 1
00053 #define DSP_TONE_STATE_DIALTONE 2
00054 #define DSP_TONE_STATE_TALKING 3
00055 #define DSP_TONE_STATE_BUSY 4
00056 #define DSP_TONE_STATE_SPECIAL1 5
00057 #define DSP_TONE_STATE_SPECIAL2 6
00058 #define DSP_TONE_STATE_SPECIAL3 7
00059 #define DSP_TONE_STATE_HUNGUP 8
00060
00061 struct ast_dsp;
00062
00063 struct ast_dsp_busy_pattern {
00064
00065 int length;
00066
00067 int pattern[4];
00068 };
00069
00070 enum threshold {
00071
00072 THRESHOLD_SILENCE = 0,
00073
00074 THRESHOLD_MAX = 1,
00075 };
00076
00077
00078
00079 struct ast_dsp *ast_dsp_new_with_rate(unsigned int sample_rate);
00080
00081
00082 struct ast_dsp *ast_dsp_new(void);
00083
00084 void ast_dsp_free(struct ast_dsp *dsp);
00085
00086
00087
00088 unsigned int ast_dsp_get_sample_rate(const struct ast_dsp *dsp);
00089
00090
00091 void ast_dsp_set_threshold(struct ast_dsp *dsp, int threshold);
00092
00093
00094 void ast_dsp_set_busy_count(struct ast_dsp *dsp, int cadences);
00095
00096
00097 void ast_dsp_set_busy_pattern(struct ast_dsp *dsp, const struct ast_dsp_busy_pattern *cadence);
00098
00099
00100 int ast_dsp_call_progress(struct ast_dsp *dsp, struct ast_frame *inf);
00101
00102
00103 int ast_dsp_set_call_progress_zone(struct ast_dsp *dsp, char *zone);
00104
00105
00106
00107 struct ast_frame *ast_dsp_process(struct ast_channel *chan, struct ast_dsp *dsp, struct ast_frame *inf);
00108
00109
00110
00111 int ast_dsp_silence(struct ast_dsp *dsp, struct ast_frame *f, int *totalsilence);
00112
00113
00114
00115
00116 int ast_dsp_silence_with_energy(struct ast_dsp *dsp, struct ast_frame *f, int *totalsilence, int *frames_energy);
00117
00118
00119
00120
00121
00122
00123 int ast_dsp_noise(struct ast_dsp *dsp, struct ast_frame *f, int *totalnoise);
00124
00125
00126
00127 int ast_dsp_busydetect(struct ast_dsp *dsp);
00128
00129
00130 int ast_dsp_digitdetect(struct ast_dsp *dsp, struct ast_frame *f);
00131
00132
00133 void ast_dsp_reset(struct ast_dsp *dsp);
00134
00135
00136 void ast_dsp_digitreset(struct ast_dsp *dsp);
00137
00138
00139 void ast_dsp_set_features(struct ast_dsp *dsp, int features);
00140
00141
00142 int ast_dsp_getdigits(struct ast_dsp *dsp, char *buf, int max);
00143
00144
00145
00146
00147 int ast_dsp_set_digitmode(struct ast_dsp *dsp, int digitmode);
00148
00149
00150 int ast_dsp_set_faxmode(struct ast_dsp *dsp, int faxmode);
00151
00152
00153
00154
00155
00156
00157 int ast_dsp_was_muted(struct ast_dsp *dsp);
00158
00159
00160 int ast_dsp_get_tstate(struct ast_dsp *dsp);
00161
00162
00163 int ast_dsp_get_tcount(struct ast_dsp *dsp);
00164
00165
00166
00167
00168
00169 int ast_dsp_get_threshold_from_settings(enum threshold which);
00170
00171
00172
00173
00174
00175 int ast_dsp_reload(void);
00176
00177
00178
00179
00180
00181 int ast_dsp_init(void);
00182
00183 #endif