aboutsummaryrefslogtreecommitdiffstats
path: root/app.c
diff options
context:
space:
mode:
authorcitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-27 00:07:18 +0000
committercitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-27 00:07:18 +0000
commit117ee582dfae240ae804db058b2e5a5a933e765e (patch)
tree8bd200ea1184bec5cfe8e972df56d1471ec44ec8 /app.c
parent5f3db1b218918d03622e077a6273880b8cb0e043 (diff)
More formatting fixes
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3088 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'app.c')
-rwxr-xr-xapp.c46
1 files changed, 20 insertions, 26 deletions
diff --git a/app.c b/app.c
index 0091ea0e8..9b1700125 100755
--- a/app.c
+++ b/app.c
@@ -407,9 +407,8 @@ int ast_linear_stream(struct ast_channel *chan, const char *filename, int fd, in
return res;
}
-int ast_control_streamfile(struct ast_channel *chan, char *file,char *fwd,char *rev,char *stop,char *pause,int skipms)
+int ast_control_streamfile(struct ast_channel *chan, char *file, char *fwd, char *rev, char *stop, char *pause, int skipms)
{
-
struct timeval started, ended;
long elapsed = 0,last_elapsed =0;
char breaks[5];
@@ -418,68 +417,63 @@ int ast_control_streamfile(struct ast_channel *chan, char *file,char *fwd,char *
if (chan->_state != AST_STATE_UP)
res = ast_answer(chan);
-
- if(stop != NULL && stop[0]) {
+ if (stop != NULL && stop[0]) {
breaks[x++] = stop[0];
}
- if(pause != NULL && pause[0]) {
+ if (pause != NULL && pause[0]) {
breaks[x++] = pause[0];
}
breaks[x] = '\0';
- if(chan)
+ if (chan)
ast_stopstream(chan);
- for(;;) {
+ for (;;) {
gettimeofday(&started,NULL);
- if(chan)
+ if (chan)
ast_stopstream(chan);
res = ast_streamfile(chan, file, chan->language);
- if(!res) {
+ if (!res) {
res = 1;
- if(elapsed) {
- ast_stream_fastforward(chan->stream,elapsed);
+ if (elapsed) {
+ ast_stream_fastforward(chan->stream, elapsed);
last_elapsed = elapsed - 200;
}
- if(res) {
- res = ast_waitstream_fr(chan,breaks,fwd,rev,skipms);
- }
- else {
+ if (res)
+ res = ast_waitstream_fr(chan, breaks, fwd, rev, skipms);
+ else
break;
- }
}
if (res < 1)
break;
- if(pause != NULL && res == *pause) {
- gettimeofday(&ended,NULL);
+ if (pause != NULL && res == *pause) {
+ gettimeofday(&ended, NULL);
elapsed = (((ended.tv_sec * 1000) + ended.tv_usec / 1000) - ((started.tv_sec * 1000) + started.tv_usec / 1000) + last_elapsed);
for(;;) {
- if(chan)
+ if (chan)
ast_stopstream(chan);
res = ast_waitfordigit(chan, 1000);
- if(res == -1 || res == *pause || (stop && res == *stop))
+ if (res == -1 || res == *pause || (stop && res == *stop))
break;
}
- if(res == *pause) {
+ if (res == *pause) {
res = 0;
continue;
}
}
- if(res == -1)
+ if (res == -1)
break;
- if(stop != NULL && res == *stop) {
+ if (stop != NULL && res == *stop) {
res = 0;
break;
}
}
- if(chan)
+ if (chan)
ast_stopstream(chan);
return res;
-
}
-