Accept rdt packets with "is-reliable" flag set

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22041 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rtogni 2007-01-28 12:49:44 +00:00
parent b9b7060e60
commit b18dcf9f0e
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ int real_get_rdt_chunk(rtsp_t *rtsp_session, char **buffer) {
}
size=(header[1]<<16)+(header[2]<<8)+(header[3]);
flags1=header[4];
if ((flags1!=0x40)&&(flags1!=0x42))
if ((flags1!=0x40)&&(flags1!=0x42)&&(flags1!=0x41))
{
#ifdef LOG
printf("got flags1: 0x%02x\n",flags1);