<br><font size=2 face="sans-serif">I ran into some strange timer manipulation
problem while doing porting for TI NDK and had to make following change.</font>
<br>
<br><font size=2 face="sans-serif">#ifdef TIME_BASE</font>
<br><font size=2 face="sans-serif">typedef TIME_BASE time_base_seconds;</font>
<br><font size=2 face="sans-serif">#else</font>
<br><font size=2 color=red face="sans-serif"><b>typedef int time_base_seconds;</b></font>
<br><font size=2 face="sans-serif">#endif</font>
<br>
<br><font size=2 face="sans-serif">With the original code ( </font><font size=2 color=red face="sans-serif"><b>typedef
long time_base_seconds;), </b></font><font size=2 face="sans-serif">it
would do 8 bytes subtraction(treating <b><i>tv_usec</i></b> as unsigned
long long) while</font>
<br><font size=2 face="sans-serif">executing the second line (highlighted
code in following piece of code) below. And that would screw up the value
of the<b> <i>tv_sec</i></b> &nbsp;field which</font>
<br><font size=2 face="sans-serif">is right before tv_usec field in the
structure.</font>
<br>
<br>
<br>
<br><font size=2 face="sans-serif">DelayInterval operator-(const Timeval&amp;
arg1, const Timeval&amp; arg2) {</font>
<br><font size=2 face="sans-serif">&nbsp; time_base_seconds secs = arg1.seconds()
- arg2.seconds();</font>
<br><font size=2 face="sans-serif"><b>&nbsp; time_base_seconds usecs =
arg1.useconds() - arg2.useconds();</b></font>
<br><font size=2 face="sans-serif">&nbsp; </font>
<br><font size=2 face="sans-serif">&nbsp; if (usecs &lt; 0) {</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; usecs += MILLION;</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; --secs;</font>
<br><font size=2 face="sans-serif">&nbsp; }</font>
<br><font size=2 face="sans-serif">&nbsp; if (secs &lt; 0)</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; return DELAY_ZERO;</font>
<br><font size=2 face="sans-serif">&nbsp; else</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; return DelayInterval(secs,
usecs);</font>
<br><font size=2 face="sans-serif">}</font>
<br>
<br>
<br><font size=2 face="sans-serif">I hope this helps.</font>
<br>
<br><font size=2 face="sans-serif">Thanks</font>
<br><font size=2 face="sans-serif">Ishwar</font>
<br>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td width=40%><font size=1 face="sans-serif"><b>Mike Gilorma &lt;mike.gilorma@apogeelabs.com&gt;</b>
</font>
<br><font size=1 face="sans-serif">Sent by: live-devel-bounces@ns.live555.com</font>
<p><font size=1 face="sans-serif">06/10/2008 05:15 AM</font>
<table border>
<tr valign=top>
<td bgcolor=white>
<div align=center><font size=1 face="sans-serif">Please respond to<br>
LIVE555 Streaming Media - development &amp; use &nbsp; &nbsp; &nbsp; &nbsp;&lt;live-devel@ns.live555.com&gt;</font></div></table>
<br>
<td width=59%>
<table width=100%>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">To</font></div>
<td><font size=1 face="sans-serif">LIVE555 Streaming Media - development
&amp; use &lt;live-devel@ns.live555.com&gt;</font>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">cc</font></div>
<td>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">Subject</font></div>
<td><font size=1 face="sans-serif">Re: [Live-devel] Problems with streaming
live h264 video on TI &nbsp; &nbsp; &nbsp; &nbsp;da &nbsp; &nbsp;
&nbsp; &nbsp;Vinci platform.</font></table>
<br>
<table>
<tr valign=top>
<td>
<td></table>
<br></table>
<br>
<br>
<br><font size=2><tt>I have one of those board here and was thinking about
trying to port<br>
live555 over to it. &nbsp;Are you running Virtual Logix Linux or did you<br>
actually port it over to the DSP? &nbsp;If you can send me your test code
or<br>
project I can help debug.<br>
<br>
On Tue, 2008-06-10 at 17:46 +0800, Amit Lobo wrote:<br>
&gt; Hi All,<br>
&gt; &nbsp;<br>
&gt; I am able to port and run Live555 on DSP/BIOS of EVM6437.The test
I<br>
&gt; did is reading stored h264 video from a file.<br>
&gt; &nbsp;<br>
&gt; Now when I try to use live frames from the encoder I face problem<br>
&gt; after 1 sec of video play.I can see the first 1 sec video properly,but<br>
&gt; later after 1 sec it looks like something goes wrong with the RTP.The<br>
&gt; client I am using is VLC media player.<br>
&gt; Want to know if anybody has face similar problem.<br>
&gt; &nbsp;<br>
&gt; Thanks in advance <br>
&gt; &nbsp;<br>
&gt; Amit<br>
&gt; _______________________________________________<br>
&gt; live-devel mailing list<br>
&gt; live-devel@lists.live555.com<br>
&gt; http://lists.live555.com/mailman/listinfo/live-devel<br>
<br>
<br>
_______________________________________________<br>
live-devel mailing list<br>
live-devel@lists.live555.com<br>
http://lists.live555.com/mailman/listinfo/live-devel<br>
</tt></font>
<br>