dect
/
asterisk
Archived
13
0
Fork 0

Make voicemail2 save video too, if available

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1133 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2003-06-29 04:03:09 +00:00
parent 06522183d7
commit 83cfc475d9
1 changed files with 3 additions and 0 deletions

View File

@ -870,6 +870,9 @@ static int play_and_record(struct ast_channel *chan, char *playfile, char *recor
ast_frfree(f);
break;
}
} else if (f->frametype == AST_FRAME_VIDEO) {
/* Write only once */
ast_writestream(others[0], f);
} else if (f->frametype == AST_FRAME_DTMF) {
if (f->subclass == '#') {
if (option_verbose > 2)