ristrtxsend: silence a maybe-uninitialized warning

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7875>
This commit is contained in:
Matthew Waters 2024-11-13 16:58:41 +11:00
parent 382ed4630e
commit 741f935bbf

View file

@ -588,7 +588,7 @@ process_buffer (GstRistRtxSend * rtx, GstBuffer * buffer)
gpointer extdata;
guint extlen;
gboolean has_seqnum_ext = FALSE;
guint32 extseqnum;
guint32 extseqnum = -1;
/* read the information we want from the buffer */
gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtp);