[MPlayer-cvslog] r25063 - trunk/stream/realrtsp/real.c
rtogni
subversion at mplayerhq.hu
Sat Nov 17 19:08:53 CET 2007
Author: rtogni
Date: Sat Nov 17 19:08:53 2007
New Revision: 25063
Log:
Ignore stream id when checking rdt packet flags
Fixes bugzilla #930
Modified:
trunk/stream/realrtsp/real.c
Modified: trunk/stream/realrtsp/real.c
==============================================================================
--- trunk/stream/realrtsp/real.c (original)
+++ trunk/stream/realrtsp/real.c Sat Nov 17 19:08:53 2007
@@ -333,7 +333,7 @@ int real_get_rdt_chunk(rtsp_t *rtsp_sess
/* header[1] is channel, normally 0, ignored */
size=(header[2]<<8)+header[3];
flags1=header[4];
- if ((flags1!=0x40)&&(flags1!=0x42)&&(flags1!=0x41))
+ if ((flags1 & 0xc0) != 0x40)
{
#ifdef LOG
printf("got flags1: 0x%02x\n",flags1);
More information about the MPlayer-cvslog
mailing list