<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1226" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ddf4ff>
<DIV><FONT face=Arial color=#000000 size=2>
<DIV><FONT face=Arial color=#000000 size=2>Sorry, I did a mistake in line 634, 
this is the right code:<BR><BR>I have found the keyframe flag for RealMedia rtsp 
Streams:<BR><BR>Go to the following function:</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial color=#000000 size=2>580&nbsp; int 
real_get_rdt_chunk(rtsp_t *rtsp_session, char *buffer)</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial color=#000000 size=2>Replace this line</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV><FONT face=Arial 
color=#000000 size=2>
<DIV><FONT face=Arial color=#000000 size=2>618&nbsp;&nbsp; 
&nbsp;unknown1=(header[5]&lt;&lt;12)+(header[6]&lt;&lt;8)+(header[7]);<BR></DIV>
<DIV>&nbsp;</DIV>
<DIV>with this one:</DIV>
<DIV></FONT>&nbsp;</DIV>
<DIV>618&nbsp;&nbsp;&nbsp; 
unknown1=(header[5]&lt;&lt;16)+(header[6]&lt;&lt;8)+(header[7]);<BR></DIV>
<DIV>&nbsp;</DIV>
<DIV>And this one</DIV>
<DIV>&nbsp;</DIV></FONT>
<DIV><FONT face=Arial color=#000000 size=2>634&nbsp; 
&nbsp;&nbsp;ph.flags=0;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* TODO: determine 
keyframe flag and insert here? */</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial color=#000000 size=2>with this:</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial color=#000000 size=2>634&nbsp;&nbsp;&nbsp; 
ph.flags=2-(2*((unknown1)&amp;1));<BR></FONT></DIV></FONT></DIV></BODY></HTML>