mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
rtcpbuffer: Round to next 32bit word, not current 32bit word at end of SDES chunk
This commit is contained in:
parent
38aba7853e
commit
1ad98b0d98
1 changed files with 1 additions and 1 deletions
|
@ -997,7 +997,7 @@ gst_rtcp_packet_sdes_next_item (GstRTCPPacket * packet)
|
|||
while (offset < len) {
|
||||
if (data[offset] == 0) {
|
||||
/* end of list, round to next 32-bit word */
|
||||
offset = (offset + 3) & ~3;
|
||||
offset = (offset + 4) & ~3;
|
||||
break;
|
||||
}
|
||||
offset += data[offset + 1] + 2;
|
||||
|
|
Loading…
Reference in a new issue