add a verbose message to the AGI command, STREAM FILE, similar to the

verbose messages when using Playback, Background, or the GET DATA command
(issue #7297, softins)


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38021 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-07-20 16:18:07 +00:00
parent 346c291a2d
commit 233aab68a6
1 changed files with 9 additions and 1 deletions

View File

@ -547,9 +547,14 @@ static int handle_streamfile(struct ast_channel *chan, AGI *agi, int argc, char
struct ast_filestream *vfs;
long sample_offset = 0;
long max_length;
char *edigits = "";
if (argc < 4 || argc > 5)
return RESULT_SHOWUSAGE;
if (argv[3])
edigits = argv[3];
if ((argc > 4) && (sscanf(argv[4], "%ld", &sample_offset) != 1))
return RESULT_SHOWUSAGE;
@ -563,6 +568,9 @@ static int handle_streamfile(struct ast_channel *chan, AGI *agi, int argc, char
if (vfs)
ast_log(LOG_DEBUG, "Ooh, found a video stream, too\n");
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "Playing '%s' (escape_digits=%s) (sample_offset %ld)\n", argv[2], edigits, sample_offset);
ast_seekstream(fs, 0, SEEK_END);
max_length = ast_tellstream(fs);
ast_seekstream(fs, sample_offset, SEEK_SET);
@ -600,7 +608,7 @@ static int handle_getoption(struct ast_channel *chan, AGI *agi, int argc, char *
long sample_offset = 0;
long max_length;
int timeout = 0;
char *edigits = NULL;
char *edigits = "";
if ( argc < 4 || argc > 5 )
return RESULT_SHOWUSAGE;