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:
Seungha Yang 2018-12-30 19:49:56 +09:00 committed by Tim-Philipp Müller
parent 83806dc4e1
commit c389dbf332

View file

@ -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;
}