[Asterisk-cvs] asterisk/include/asterisk channel.h, 1.110,
1.111 options.h, 1.19, 1.20
kpfleming
kpfleming
Tue Nov 1 12:30:26 CST 2005
Update of /usr/cvsroot/asterisk/include/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv12746/include/asterisk
Modified Files:
channel.h options.h
Log Message:
optionally send silence during recording (issue #5135)
Index: channel.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/channel.h,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -d -r1.110 -r1.111
--- channel.h 1 Nov 2005 15:28:01 -0000 1.110
+++ channel.h 1 Nov 2005 17:22:25 -0000 1.111
@@ -1099,6 +1099,10 @@
*/
void ast_channel_spy_trigger_wait(struct ast_channel_spy *spy);
+struct ast_silence_generator;
+struct ast_silence_generator *ast_channel_start_silence_generator(struct ast_channel *chan);
+void ast_channel_stop_silence_generator(struct ast_channel *chan, struct ast_silence_generator *state);
+
/* Misc. functions below */
/* Helper function for migrating select to poll */
Index: options.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/options.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- options.h 26 Oct 2005 03:58:32 -0000 1.19
+++ options.h 1 Nov 2005 17:22:25 -0000 1.20
@@ -42,6 +42,7 @@
extern int option_cache_record_files;
extern int option_timestamp;
extern int option_transcode_slin;
+extern int option_transmit_silence_during_record;
extern int option_maxcalls;
extern double option_maxload;
extern int option_dontwarn;
More information about the svn-commits
mailing list