From 69f9c479e7e8e1fb58a585e60d6eeb0f0616922c Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Mon, 22 Aug 2005 19:06:42 +0000 Subject: add 'restart' character to ast_control_playback function and ControlPlayback() application (issue #4693) rework app_controlplayback.c to take into account all Asterisk 1.2 coding style requirements git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6352 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- app.c | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) (limited to 'app.c') diff --git a/app.c b/app.c index e571694bd..f3a84c3a5 100755 --- a/app.c +++ b/app.c @@ -406,7 +406,10 @@ int ast_linear_stream(struct ast_channel *chan, const char *filename, int fd, in return res; } -int ast_control_streamfile(struct ast_channel *chan, const char *file, const char *fwd, const char *rev, const char *stop, const char *pause, int skipms) +int ast_control_streamfile(struct ast_channel *chan, const char *file, + const char *fwd, const char *rev, + const char *stop, const char *pause, + const char *restart, int skipms) { long elapsed = 0,last_elapsed =0; char *breaks=NULL; @@ -418,12 +421,18 @@ int ast_control_streamfile(struct ast_channel *chan, const char *file, const cha blen += strlen(stop); if (pause) blen += strlen(pause); + if (restart) + blen += strlen(restart); if (blen > 2) { breaks = alloca(blen + 1); breaks[0] = '\0'; - strcat(breaks, stop); - strcat(breaks, pause); + if (stop) + strcat(breaks, stop); + if (pause) + strcat(breaks, pause); + if (restart) + strcat(breaks, restart); } if (chan->_state != AST_STATE_UP) res = ast_answer(chan); @@ -466,6 +475,13 @@ int ast_control_streamfile(struct ast_channel *chan, const char *file, const cha if (res < 1) break; + /* We go at next loop if we got the restart char */ + if (restart && strchr(restart, res)) { + ast_log(LOG_DEBUG, "we'll restart the stream here at next loop\n"); + elapsed=0; /* To make sure the next stream will start at beginning */ + continue; + } + if (pause != NULL && strchr(pause, res)) { elapsed = ast_tvdiff_ms(ast_tvnow(), started) + last_elapsed; for(;;) { -- cgit v1.2.3