<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML xmlns="http://www.w3.org/TR/REC-html40" xmlns:v = 
"urn:schemas-microsoft-com:vml" xmlns:o = 
"urn:schemas-microsoft-com:office:office" xmlns:w = 
"urn:schemas-microsoft-com:office:word" xmlns:q = 
"http://schemas.xmlsoap.org/soap/envelope/" xmlns:rtc = 
"http://microsoft.com/officenet/conferencing" XMLNS:Repl = 
"http://schemas.microsoft.com/repl/" xmlns:mt = 
"http://schemas.microsoft.com/sharepoint/soap/meetings/" xmlns:x2 = 
"http://schemas.microsoft.com/office/excel/2003/xml" xmlns:ppda = 
"http://www.passport.com/NameSpace.xsd" xmlns:ois = 
"http://schemas.microsoft.com/sharepoint/soap/ois/" xmlns:dir = 
"http://schemas.microsoft.com/sharepoint/soap/directory/" xmlns:ds = 
"http://www.w3.org/2000/09/xmldsig#" xmlns:dsp = 
"http://schemas.microsoft.com/sharepoint/dsp" xmlns:udc = 
"http://schemas.microsoft.com/data/udc" xmlns:xsd = 
"http://www.w3.org/2001/XMLSchema" xmlns:sub = 
"http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/" xmlns:ec = 
"http://www.w3.org/2001/04/xmlenc#" xmlns:sp = 
"http://schemas.microsoft.com/sharepoint/" xmlns:sps = 
"http://schemas.microsoft.com/sharepoint/soap/" xmlns:xsi = 
"http://www.w3.org/2001/XMLSchema-instance" xmlns:udcs = 
"http://schemas.microsoft.com/data/udc/soap" xmlns:udcxf = 
"http://schemas.microsoft.com/data/udc/xmlfile" xmlns:udcp2p = 
"http://schemas.microsoft.com/data/udc/parttopart" xmlns:wf = 
"http://schemas.microsoft.com/sharepoint/soap/workflow/" xmlns:dsss = 
"http://schemas.microsoft.com/office/2006/digsig-setup" xmlns:dssi = 
"http://schemas.microsoft.com/office/2006/digsig" xmlns:mdssi = 
"http://schemas.openxmlformats.org/package/2006/digital-signature" xmlns:mver = 
"http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:m = 
"http://schemas.microsoft.com/office/2004/12/omml" xmlns:mrels = 
"http://schemas.openxmlformats.org/package/2006/relationships" xmlns:spwp = 
"http://microsoft.com/sharepoint/webpartpages" xmlns:ex12t = 
"http://schemas.microsoft.com/exchange/services/2006/types" xmlns:ex12m = 
"http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:pptsl = 
"http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/" xmlns:spsl = 
"http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService" 
XMLNS:Z = "urn:schemas-microsoft-com:" xmlns:st = ""><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR>
<STYLE>@font-face {
        font-family: Cambria Math;
}
@font-face {
        font-family: Calibri;
}
@font-face {
        font-family: Tahoma;
}
@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.0in 1.0in 1.0in; }
P.MsoNormal {
        FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman","serif"
}
LI.MsoNormal {
        FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman","serif"
}
DIV.MsoNormal {
        FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman","serif"
}
A:link {
        COLOR: blue; TEXT-DECORATION: underline; mso-style-priority: 99
}
SPAN.MsoHyperlink {
        COLOR: blue; TEXT-DECORATION: underline; mso-style-priority: 99
}
A:visited {
        COLOR: purple; TEXT-DECORATION: underline; mso-style-priority: 99
}
SPAN.MsoHyperlinkFollowed {
        COLOR: purple; TEXT-DECORATION: underline; mso-style-priority: 99
}
SPAN.EmailStyle17 {
        COLOR: #1f497d; FONT-FAMILY: "Calibri","sans-serif"; mso-style-type: personal-reply
}
.MsoChpDefault {
        FONT-SIZE: 10pt; mso-style-type: export-only
}
DIV.Section1 {
        page: Section1
}
</STYLE>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]--></HEAD>
<BODY lang=EN-US vLink=purple link=blue bgColor=white>
<DIV><FONT face=Arial size=2>i found this on google , it may solve the problem , 
i didn try it yet </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial 
size=2>***********************************************************************</FONT></DIV>
<DIV><SPAN class=postbody><STRONG>I have spent a couple of days with TANDBERG, 
Polycom &amp; LifeSize video kit experimenting with Asterisk 1.6.1.0. I 
discovered two problems : <BR><BR>1. Calls between TANDBERG kit didn't work - 
one side seemed to connect audio only, but the other end was dropping the call 
quite quickly. <BR><BR>2. Calls where audio only (as above!) <BR><BR>I found the 
first problem in a SIP ACK packet from the TANDBERG which containg the 
Session-Expires header. <BR><BR>Session-Expires: 500; refresher=uac <BR><BR>This 
caused a Warning from asterisk that it could not parse session-expires and was 
promptly follwed by a BYE packet. <BR><BR>Out of exhasperation after trying many 
different configs, i looked closely at the actual source code in chan_sip.c and 
found a possible bug in the function parse_session_expires. As there is a space 
ater the 500; in the above packet, the back end of the function trying to match 
the 'refresher=' string was failing owing to a leading space. I inserted the 
following : <BR><BR>p_se_hdr = ast_skip_blanks(p_se_hdr); <BR><BR>ahead of 
<BR><BR>ref_idx = strlen("refresher="); <BR><BR>After a recompile, the 
TANDBERG's would now connect (still Audio only however). <BR><BR>The answer to 
the video problem, i found in the function sip_result add_sdp <BR><BR>If you 
look closely at the previous post, you will see a SIP/2.0 200 OK response after 
Trying. In here, m=video 0 RTP/AVP 34 <BR><BR>The 0 in this capability tels the 
other codec that video is not available, but it should be, as asterisk has 
already acknowledged this in the debugs (slighly higher up, two statements : 
<BR><BR>Video is at 192.168.2.2 port 16002 <BR>Adding video codec 0x80000 (h263) 
to SDP <BR><BR>To fix this, i changed sip_result_add_sdp (about half way down 
the function) to the following : <BR><BR>/* Ok, we need video. Let's add what we 
need for video and set codecs. <BR>Video is handled differently than audio since 
we can not transcode. */ <BR>if (needvideo) { <BR><BR>/********************** 
CHANGE STARTS *****************/ <BR><BR>/************************* <BR>Comment 
out the original code - which seems to be referencing the video destination port 
<BR>**************************/ <BR>/* ast_str_append(&amp;m_video, 0, "m=video 
%d RTP/AVP", ntohs(vdest.sin_port)); */ <BR><BR>/************************* 
<BR>Add This line to reference the video source port 
<BR>**************************/ <BR>ast_str_append(&amp;m_video, 0, "m=video %d 
RTP/AVP", ntohs(vsin.sin_port)); <BR><BR>/***************** CHANGE ENDS 
******************/ <BR><BR>/* Build max bitrate string */ <BR>if 
(p-&gt;maxcallbitrate) <BR>snprintf(bandwidth, sizeof(bandwidth), "b=CT:%d\r\n", 
p-&gt;maxcallbitrate); <BR>if (debug) <BR>ast_verbose("Video is at %s port 
%d\n", ast_inet_ntoa(p-&gt;ourip.sin_addr), ntohs(vsin.sin_port)); <BR>} 
<BR><BR><BR>Video is now working between all systems........ <BR><BR>Hope this 
helps. <BR></STRONG><FONT face=Arial 
size=2>************************************************************************************************</FONT></SPAN></DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=jstapleton@computer-business.com 
  href="mailto:jstapleton@computer-business.com">Jamie A. Stapleton</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A 
  title=asterisk-video@lists.digium.com 
  href="mailto:asterisk-video@lists.digium.com">Development discussion of video 
  media support in Asterisk</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Thursday, June 25, 2009 8:49 
  AM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> Re: [Asterisk-video] video call 
  work in one side</DIV>
  <DIV><BR></DIV>
  <DIV class=Section1>
  <P class=MsoNormal><SPAN 
  style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'">Here 
  is an email that I sent to digium yesterday.&nbsp; Sound familiar?&nbsp; 
  <o:p></o:p></SPAN></P>
  <P class=MsoNormal><SPAN 
  style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"><o:p>&nbsp;</o:p></SPAN></P>
  <P class=MsoNormal>I downgraded to Asterisk 1.4.25 in the hopes of getting 
  video working 100%...&nbsp; Still not there.&nbsp; It appears that whenever 
  the eyeBeam is the Caller, it cannot receive video AND whenever eyebeam is the 
  Called, it cannot send video.&nbsp; Hence, the echo Application does not 
  work…&nbsp; Any ideas?!?<o:p></o:p></P>
  <P class=MsoNormal><o:p>&nbsp;</o:p></P>
  <TABLE class=MsoNormalTable 
  style="MARGIN-LEFT: -0.75pt; WIDTH: 240pt; BORDER-COLLAPSE: collapse" 
  cellSpacing=0 cellPadding=0 width=320 border=0>
    <TBODY>
    <TR style="HEIGHT: 17.25pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 17.25pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><B><SPAN 
        style="FONT-SIZE: 13pt; COLOR: black">Audio</SPAN></B><B><SPAN 
        style="FONT-SIZE: 13pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></B></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 17.25pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 17.25pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 17.25pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 17.25pt" 
      vAlign=bottom noWrap width=64></TD></TR>
    <TR style="HEIGHT: 15.75pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><I><SPAN 
        style="COLOR: black">Caller</SPAN></I><I><SPAN 
        style="COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></I></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64></TD></TR>
    <TR style="HEIGHT: 15pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Aethra</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">eyeBeam</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">GXV3000</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD></TR>
    <TR style="HEIGHT: 15pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Aethra</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">N/A</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Yes</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Yes</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD></TR>
    <TR style="HEIGHT: 15.75pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><I><SPAN 
        style="COLOR: black">Calling</SPAN></I><I><SPAN 
        style="COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></I></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">eyeBeam</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Yes</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">N/A</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Yes</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD></TR>
    <TR style="HEIGHT: 15pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">GXV3000</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Yes</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Yes</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">N/A</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD></TR>
    <TR style="HEIGHT: 15pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD></TR>
    <TR style="HEIGHT: 17.25pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 17.25pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><B><SPAN 
        style="FONT-SIZE: 13pt; COLOR: black">Video</SPAN></B><B><SPAN 
        style="FONT-SIZE: 13pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></B></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 17.25pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 17.25pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 17.25pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 17.25pt" 
      vAlign=bottom noWrap width=64></TD></TR>
    <TR style="HEIGHT: 15.75pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><I><SPAN 
        style="COLOR: black">Caller</SPAN></I><I><SPAN 
        style="COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></I></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64></TD></TR>
    <TR style="HEIGHT: 15pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Aethra</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">eyeBeam</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">GXV3000</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD></TR>
    <TR style="HEIGHT: 15pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Aethra</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">N/A</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">No</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Yes</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD></TR>
    <TR style="HEIGHT: 15.75pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><I><SPAN 
        style="COLOR: black">Calling</SPAN></I><I><SPAN 
        style="COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></I></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">eyeBeam</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Yes</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">No</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15.75pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Yes</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD></TR>
    <TR style="HEIGHT: 15pt">
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">GXV3000</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">Yes</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">No</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD>
      <TD 
      style="PADDING-RIGHT: 5.4pt; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; WIDTH: 48pt; PADDING-TOP: 0in; HEIGHT: 15pt" 
      vAlign=bottom noWrap width=64>
        <P class=MsoNormal><SPAN style="COLOR: black">N/A</SPAN><SPAN 
        style="FONT-SIZE: 11pt; COLOR: black; FONT-FAMILY: 'Calibri','sans-serif'"><o:p></o:p></SPAN></P></TD></TR></TBODY></TABLE>
  <P class=MsoNormal><SPAN 
  style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"><o:p>&nbsp;</o:p></SPAN></P>
  <P class=MsoNormal><SPAN 
  style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"><o:p>&nbsp;</o:p></SPAN></P>
  <DIV>
  <DIV 
  style="BORDER-RIGHT: medium none; PADDING-RIGHT: 0in; BORDER-TOP: #b5c4df 1pt solid; PADDING-LEFT: 0in; PADDING-BOTTOM: 0in; BORDER-LEFT: medium none; PADDING-TOP: 3pt; BORDER-BOTTOM: medium none">
  <P class=MsoNormal><B><SPAN 
  style="FONT-SIZE: 10pt; FONT-FAMILY: 'Tahoma','sans-serif'">From:</SPAN></B><SPAN 
  style="FONT-SIZE: 10pt; FONT-FAMILY: 'Tahoma','sans-serif'"> 
  asterisk-video-bounces@lists.digium.com 
  [mailto:asterisk-video-bounces@lists.digium.com] <B>On Behalf Of 
  </B>gmail<BR><B>Sent:</B> Friday, June 26, 2009 9:42 AM<BR><B>To:</B> 
  asterisk-video@lists.digium.com<BR><B>Subject:</B> [Asterisk-video] video call 
  work in one side<o:p></o:p></SPAN></P></DIV></DIV>
  <P class=MsoNormal><o:p>&nbsp;</o:p></P>
  <DIV>
  <P class=MsoNormal><SPAN 
  style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'">i have a problem in 
  making video call from one X-lite softphone to another , after i dial from 
  3500 to 3501 extension , and i press start video on extension 3500 (the 
  calling party) the video is recived by 3501, but in the same call when&nbsp; i 
  press start video on 3501 (the called party) no video is sent to 3500 , when i 
  reverse the call - that is when i dial from 3501 to 3500 the matter is 
  reversed and only 3500 (the called party) recive video , that's we can say 
  that only the called part can recive the video, &nbsp;here is my sip.conf file 
  :</SPAN><o:p></o:p></P></DIV>
  <DIV>
  <P class=MsoNormal>&nbsp;<o:p></o:p></P></DIV>
  <DIV>
  <P class=MsoNormal>&nbsp;<o:p></o:p></P></DIV>
  <DIV>
  <P class=MsoNormal>&nbsp;<o:p></o:p></P></DIV>
  <DIV>
  <P class=MsoNormal><SPAN 
  style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'">[general]<BR>port = 
  5060<BR>bindaddr = 
  0.0.0.0<BR>pedantic=yes<BR>videosupport=yes</SPAN><o:p></o:p></P></DIV>
  <DIV>
  <P class=MsoNormal>&nbsp;<o:p></o:p></P></DIV>
  <DIV>
  <P class=MsoNormal><SPAN 
  style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'"><BR>[3500]<BR>type=friend<BR>secret=3500<BR>host=dynamic<BR>canreinvite=no<BR>context=default<BR>disallow=all<BR>allow=ulaw<BR>allow=alaw<BR>allow=speex<BR>allow=gsm<BR>allow=h261<BR>allow=h263<BR>allow=h263p<o:p></o:p></SPAN></P></DIV>
  <DIV>
  <P class=MsoNormal><SPAN 
  style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'">&nbsp;<o:p></o:p></SPAN></P></DIV>
  <DIV>
  <P class=MsoNormal><SPAN 
  style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'">[3501]<BR>type=friend<BR>secret=3501<BR>canreinvite=no<BR>host=dynamic<BR>context=default<BR>disallow=all<BR>allow=ulaw<BR>allow=alaw<BR>allow=speex<BR>allow=gsm<BR>allow=h261<BR>allow=h263<BR>allow=h263p</SPAN><o:p></o:p></P></DIV></DIV>
  <P>
  <HR>

  <P></P>_______________________________________________<BR>--Bandwidth and 
  Colocation Provided by http://www.api-digital.com--<BR><BR>asterisk-video 
  mailing list<BR>To UNSUBSCRIBE or update options visit:<BR>&nbsp;&nbsp; 
  http://lists.digium.com/mailman/listinfo/asterisk-video</BLOCKQUOTE></BODY></HTML>