[asterisk-commits] file: branch 1.6.0 r212068 - in /branches/1.6.0: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Aug 13 08:53:15 CDT 2009
Author: file
Date: Thu Aug 13 08:53:12 2009
New Revision: 212068
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=212068
Log:
Merged revisions 212067 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r212067 | file | 2009-08-13 10:51:04 -0300 (Thu, 13 Aug 2009) | 2 lines
Check an actual populated variable when seeing if we need to do video or not.
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/channels/chan_sip.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/channels/chan_sip.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.0/channels/chan_sip.c?view=diff&rev=212068&r1=212067&r2=212068
==============================================================================
--- branches/1.6.0/channels/chan_sip.c (original)
+++ branches/1.6.0/channels/chan_sip.c Thu Aug 13 08:53:12 2009
@@ -8554,7 +8554,7 @@
}
/* Check if we need video in this call */
- if (add_audio && (capability & AST_FORMAT_VIDEO_MASK) && !p->novideo) {
+ if (add_audio && (p->jointcapability & AST_FORMAT_VIDEO_MASK) && !p->novideo) {
if (p->vrtp) {
needvideo = TRUE;
ast_debug(2, "This call needs video offers!\n");
More information about the asterisk-commits
mailing list