https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r55947 | file | 2007-02-21 15:03:38 -0500 (Wed, 21 Feb 2007) | 2 lines
Only start playing the next file if we have not been quieted.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@55948
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
/* Okay it's streaming so go into a loop grabbing frames! */
while (done == 0) {
/* If the filename is null and stream is not running, start up a new sound file */
- if ((chan->streamid == -1 && chan->timingfunc == NULL) && (filename = strsep(&filename_tmp, "&"))) {
+ if (!quieted && (chan->streamid == -1 && chan->timingfunc == NULL) && (filename = strsep(&filename_tmp, "&"))) {
/* Discard old stream information */
ast_stopstream(chan);
/* Start new stream */