mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-07 20:31:20 +00:00
rtcpbuffer: Remove invalid sanity check
Checking the address distance between given begin/end sequence doesn't make sense. They are output params. This is to fix weird failure of libs_rtp on Windows
This commit is contained in:
parent
83806dc4e1
commit
c389dbf332
1 changed files with 0 additions and 3 deletions
|
@ -2893,9 +2893,6 @@ gst_rtcp_packet_xr_get_prt_info (GstRTCPPacket * packet,
|
|||
if (end_seq)
|
||||
*end_seq = ((data[0] << 8) | data[1]);
|
||||
|
||||
if (block_len < (end_seq - begin_seq) + 2)
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue