mirror of https://github.com/mpv-player/mpv
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:
parent
b9b7060e60
commit
b18dcf9f0e
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue