mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
rtpv8depay: ignore reserved bit in payload descriptor
Draft 16 of "RTP Payload Format for VP8" states in section 4.2 that: R: Bit reserved for future use. MUST be set to zero and MUST be ignored by the receiver. https://bugzilla.gnome.org/show_bug.cgi?id=751929
This commit is contained in:
parent
f682772898
commit
d91ef9dcbf
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ gst_rtp_vp8_depay_process (GstRTPBaseDepayload * depay, GstBuffer * buf)
|
|||
if (G_UNLIKELY (!self->started)) {
|
||||
/* Check if this is the start of a VP8 frame, otherwise bail */
|
||||
/* S=1 and PartID= 0 */
|
||||
if ((data[0] & 0x1F) != 0x10)
|
||||
if ((data[0] & 0x17) != 0x10)
|
||||
goto done;
|
||||
|
||||
self->started = TRUE;
|
||||
|
|
Loading…
Reference in a new issue