mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
rtph263depay: Enabled header extensions aggregation
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5378>
This commit is contained in:
parent
ae5bdaa7e1
commit
4fd4c240e0
1 changed files with 4 additions and 0 deletions
|
@ -126,6 +126,9 @@ gst_rtp_h263_depay_init (GstRtpH263Depay * rtph263depay)
|
|||
|
||||
rtph263depay->offset = 0;
|
||||
rtph263depay->leftover = 0;
|
||||
|
||||
gst_rtp_base_depayload_set_aggregate_hdrext_enabled (GST_RTP_BASE_DEPAYLOAD
|
||||
(rtph263depay), TRUE);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -407,6 +410,7 @@ too_small:
|
|||
{
|
||||
GST_ELEMENT_WARNING (rtph263depay, STREAM, DECODE,
|
||||
("Packet payload was too small"), (NULL));
|
||||
gst_rtp_base_depayload_dropped (depayload);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue