libav: free protocol info in gst_ffmpeg_pipe_close
authorStéphane Cerveau <scerveau@igalia.com>
Wed, 4 Dec 2024 15:27:54 +0000 (16:27 +0100)
committerBackport Bot <gitlab-backport-bot@gstreamer-foundation.org>
Wed, 4 Dec 2024 23:16:50 +0000 (23:16 +0000)
When the media is not seekable, we are calling gst_ffmpeg_pipe_close
which does free the info.

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

subprojects/gst-libav/ext/libav/gstavprotocol.c

index 2fa1bce953d4557c40c2df4f717489344fd14dba..66b43b187359f73ab7aecff7998085fa7f451139 100644 (file)
@@ -332,10 +332,17 @@ int
 gst_ffmpeg_pipe_close (AVIOContext * h)
 {
   GST_LOG ("Closing pipe");
+  GstProtocolInfo *info;
 
   if (h == NULL)
     return 0;
 
+  info = (GstProtocolInfo *) h->opaque;
+  if (info == NULL)
+    return 0;
+
+  g_free (info);
+
   h->opaque = NULL;
   av_freep (&h->buffer);
   av_free (h);