rtppassthroughpay: ensure buffer is writable before mapping writable
authorMatthew Waters <matthew@centricular.com>
Thu, 12 Dec 2024 01:05:04 +0000 (12:05 +1100)
committerMatthew Waters <matthew@centricular.com>
Thu, 12 Dec 2024 01:06:13 +0000 (12:06 +1100)
It is entirely possible that the incoming buffer into _chain() is not writable
and will result in a critical when trying to map().

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8131>

subprojects/gst-plugins-good/gst/rtp/gstrtppassthroughpay.c

index b4ba9e9a21fc59905c5fa81149a9a62641bf88df..4c89e4d7146c14b591f62eb07b76b7ba20481cd5 100644 (file)
  *
  * This elements pass RTP packets along unchanged and appear as a RTP
  * payloader element to the outside world.
- * 
+ *
  * This is useful, for example, in the case where you are receiving RTP
  * packets from a different source and want to serve them over RTSP. Since the
  * gst-rtsp-server library expect the element marked as `payX` to be a RTP
  * payloader element and assumes certain properties are available.
- * 
+ *
  * ## Example pipelines
  *
  * |[
@@ -419,6 +419,8 @@ gst_rtp_passthrough_pay_chain (GstPad * pad,
   GstRTPBuffer rtp_buffer = GST_RTP_BUFFER_INIT;
   guint pt, ssrc, seqnum, timestamp;
 
+  buffer = gst_buffer_make_writable (buffer);
+
   if (!gst_rtp_buffer_map (buffer, GST_MAP_READWRITE, &rtp_buffer)) {
     GST_ERROR_OBJECT (self, "Invalid RTP buffer");
     return gst_pad_push (self->srcpad, buffer);