From 8a201156150c798db9510253b8338f1bfbf4a841 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Sun, 29 Jun 2003 04:03:09 +0000 Subject: [PATCH] Make voicemail2 save video too, if available git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1133 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail2.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/app_voicemail2.c b/apps/app_voicemail2.c index ed729f8c29..719a785d19 100755 --- a/apps/app_voicemail2.c +++ b/apps/app_voicemail2.c @@ -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)