summaryrefslogtreecommitdiff
path: root/apps/app_record.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-07-16 14:39:29 +0000
committerJoshua Colp <jcolp@digium.com>2007-07-16 14:39:29 +0000
commitb8cd949ccea7f878578f16def5b3144c050d315e (patch)
tree1236d574745c7d4d49bb3fb658e3a6bdd3e88a22 /apps/app_record.c
parent96a646734fe34d65077cbe49c533b80759fc12e8 (diff)
Applications no longer need to call ast_module_user_add and ast_module_user_remove. This is now taken care of in the pbx_exec function outside of the application.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@75200 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_record.c')
-rw-r--r--apps/app_record.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/apps/app_record.c b/apps/app_record.c
index 8475791e3..0bbe0b008 100644
--- a/apps/app_record.c
+++ b/apps/app_record.c
@@ -87,7 +87,6 @@ static int record_exec(struct ast_channel *chan, void *data)
char tmp[256];
struct ast_filestream *s = '\0';
- struct ast_module_user *u;
struct ast_frame *f = NULL;
struct ast_dsp *sildet = NULL; /* silence detector dsp */
@@ -113,8 +112,6 @@ static int record_exec(struct ast_channel *chan, void *data)
return -1;
}
- u = ast_module_user_add(chan);
-
/* Yay for strsep being easy */
vdata = ast_strdupa(data);
@@ -137,7 +134,6 @@ static int record_exec(struct ast_channel *chan, void *data)
}
if (!ext) {
ast_log(LOG_WARNING, "No extension specified to filename!\n");
- ast_module_user_remove(u);
return -1;
}
if (silstr) {
@@ -222,7 +218,6 @@ static int record_exec(struct ast_channel *chan, void *data)
if (chan->_state != AST_STATE_UP) {
if (option_skip) {
/* At the user's option, skip if the line is not up */
- ast_module_user_remove(u);
return 0;
} else if (!option_noanswer) {
/* Otherwise answer unless we're supposed to record while on-hook */
@@ -253,13 +248,11 @@ static int record_exec(struct ast_channel *chan, void *data)
res = ast_set_read_format(chan, AST_FORMAT_SLINEAR);
if (res < 0) {
ast_log(LOG_WARNING, "Unable to set to linear mode, giving up\n");
- ast_module_user_remove(u);
return -1;
}
sildet = ast_dsp_new();
if (!sildet) {
ast_log(LOG_WARNING, "Unable to create silence detector :(\n");
- ast_module_user_remove(u);
return -1;
}
ast_dsp_set_threshold(sildet, 256);
@@ -368,8 +361,6 @@ static int record_exec(struct ast_channel *chan, void *data)
ast_dsp_free(sildet);
}
- ast_module_user_remove(u);
-
return res;
}