[Asterisk-cvs] asterisk/apps app_record.c,1.28,1.29
markster at lists.digium.com
markster at lists.digium.com
Sat Feb 5 10:52:05 CST 2005
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv20168/apps
Modified Files:
app_record.c
Log Message:
Add option to disable beep to record (bug #3508, with mods)
Index: app_record.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_record.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- app_record.c 23 Nov 2004 02:35:46 -0000 1.28
+++ app_record.c 5 Feb 2005 16:52:46 -0000 1.29
@@ -42,6 +42,7 @@
" 'n' : do not answer, but record anyway if line not yet answered\n"
" 'a' : append to existing recording rather than replacing\n"
" 't' : use alternate '*' terminator key instead of default '#'\n"
+" 'q' : quiet (do not play a beep tone)\n"
"\n"
"If filename contains '%d', these characters will be replaced with a number\n"
"incremented by one each time the file is recorded. \n\n"
@@ -79,6 +80,7 @@
int option_noanswer = 0;
int option_append = 0;
int terminator = '#';
+ int option_quiet = 0;
int rfmt = 0;
int flags;
@@ -143,6 +145,8 @@
option_append = 1;
if (strchr(options, 't'))
terminator = '*';
+ if (strchr(options, 'q'))
+ option_quiet = 1;
}
}
@@ -174,14 +178,17 @@
}
if (!res) {
- /* Some code to play a nice little beep to signify the start of the record operation */
- res = ast_streamfile(chan, "beep", chan->language);
- if (!res) {
- res = ast_waitstream(chan, "");
- } else {
- ast_log(LOG_WARNING, "ast_streamfile failed on %s\n", chan->name);
+
+ if (!option_quiet) {
+ /* Some code to play a nice little beep to signify the start of the record operation */
+ res = ast_streamfile(chan, "beep", chan->language);
+ if (!res) {
+ res = ast_waitstream(chan, "");
+ } else {
+ ast_log(LOG_WARNING, "ast_streamfile failed on %s\n", chan->name);
+ }
+ ast_stopstream(chan);
}
- ast_stopstream(chan);
/* The end of beep code. Now the recording starts */
More information about the svn-commits
mailing list