mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
rtpsv3vdepay: Enabled header extension aggregation
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5378>
This commit is contained in:
parent
d810049f01
commit
0a4918a509
1 changed files with 4 additions and 0 deletions
|
@ -98,6 +98,9 @@ gst_rtp_sv3v_depay_class_init (GstRtpSV3VDepayClass * klass)
|
||||||
static void
|
static void
|
||||||
gst_rtp_sv3v_depay_init (GstRtpSV3VDepay * rtpsv3vdepay)
|
gst_rtp_sv3v_depay_init (GstRtpSV3VDepay * rtpsv3vdepay)
|
||||||
{
|
{
|
||||||
|
gst_rtp_base_depayload_set_aggregate_hdrext_enabled (GST_RTP_BASE_DEPAYLOAD
|
||||||
|
(rtpsv3vdepay), TRUE);
|
||||||
|
|
||||||
rtpsv3vdepay->adapter = gst_adapter_new ();
|
rtpsv3vdepay->adapter = gst_adapter_new ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -281,6 +284,7 @@ bad_packet:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_WARNING (rtpsv3vdepay, STREAM, DECODE,
|
GST_ELEMENT_WARNING (rtpsv3vdepay, STREAM, DECODE,
|
||||||
(NULL), ("Packet was too short"));
|
(NULL), ("Packet was too short"));
|
||||||
|
gst_rtp_base_depayload_dropped (depayload);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue