From e1e7421982d68908665ce43a05e5e67ec47a93e4 Mon Sep 17 00:00:00 2001 From: Jochen Henneberg Date: Sun, 10 Sep 2023 19:04:00 +0200 Subject: [PATCH] rtpmp4vdepay: Enabled header extension aggregation Part-of: --- subprojects/gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subprojects/gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c b/subprojects/gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c index 204828c478..c99df605f5 100644 --- a/subprojects/gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c +++ b/subprojects/gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c @@ -106,6 +106,8 @@ gst_rtp_mp4v_depay_class_init (GstRtpMP4VDepayClass * klass) static void gst_rtp_mp4v_depay_init (GstRtpMP4VDepay * rtpmp4vdepay) { + gst_rtp_base_depayload_set_aggregate_hdrext_enabled (GST_RTP_BASE_DEPAYLOAD + (rtpmp4vdepay), TRUE); rtpmp4vdepay->adapter = gst_adapter_new (); }