From: Mark Michelson Date: Fri, 29 Aug 2008 16:24:37 +0000 (+0000) Subject: Allow for video files to be opened as well as X-Git-Tag: 1.6.2.0-beta1~1343 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4e8af9af20365b3ac5c3da76976b7bdcc4719d4;p=thirdparty%2Fasterisk.git Allow for video files to be opened as well as audio files. (closes issue #13372) Reported by: epicac Patches: 13372.patch uploaded by putnopvut (license 60) Tested by: epicac git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@140433 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/file.c b/main/file.c index 1bef768bad..2f1789481a 100644 --- a/main/file.c +++ b/main/file.c @@ -379,7 +379,8 @@ static int ast_filehelper(const char *filename, const void *arg2, const char *fm struct ast_filestream *s; if ( !(chan->writeformat & f->format) && - !(f->format & AST_FORMAT_AUDIO_MASK && fmt)) { + !((f->format & AST_FORMAT_AUDIO_MASK && fmt) || + (f->format & AST_FORMAT_VIDEO_MASK && fmt))) { ast_free(fn); continue; /* not a supported format */ }