Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package gstreamer-plugins-libav for
openSUSE:Factory checked in at 2026-06-13 18:46:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gstreamer-plugins-libav (Old)
and /work/SRC/openSUSE:Factory/.gstreamer-plugins-libav.new.1981 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gstreamer-plugins-libav"
Sat Jun 13 18:46:18 2026 rev:71 rq:1359034 version:1.28.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/gstreamer-plugins-libav/gstreamer-plugins-libav.changes
2026-04-15 16:04:57.435952644 +0200
+++
/work/SRC/openSUSE:Factory/.gstreamer-plugins-libav.new.1981/gstreamer-plugins-libav.changes
2026-06-13 18:47:31.737906753 +0200
@@ -1,0 +2,11 @@
+Fri Jun 12 16:21:18 UTC 2026 - Antonio Larrosa <[email protected]>
+
+- Update to version 1.28.4:
+ + avdemux: Always free AVIOContext and open failure and don't
+ dereference NULL AVFormatContext
+ + avprotocol: Don't free GstFFMpegPipe when closing the
+ AVIOContext
+- Update to version 1.28.3:
+ + No changes, stable bump only
+
+-------------------------------------------------------------------
Old:
----
gst-libav-1.28.2.obscpio
New:
----
gst-libav-1.28.4.obscpio
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gstreamer-plugins-libav.spec ++++++
--- /var/tmp/diff_new_pack.bHpGJD/_old 2026-06-13 18:47:33.429977051 +0200
+++ /var/tmp/diff_new_pack.bHpGJD/_new 2026-06-13 18:47:33.433977217 +0200
@@ -19,7 +19,7 @@
%define gst_branch 1.0
Name: gstreamer-plugins-libav
-Version: 1.28.2
+Version: 1.28.4
Release: 0
Summary: A ffmpeg/libav plugin for GStreamer
License: LGPL-2.1-or-later
++++++ _service ++++++
--- /var/tmp/diff_new_pack.bHpGJD/_old 2026-06-13 18:47:33.473978879 +0200
+++ /var/tmp/diff_new_pack.bHpGJD/_new 2026-06-13 18:47:33.477979045 +0200
@@ -5,7 +5,7 @@
<param
name="url">https://gitlab.freedesktop.org/gstreamer/gstreamer.git</param>
<param name="subdir">subprojects/gst-libav</param>
<param name="filename">gst-libav</param>
- <param name="revision">1.28.2</param>
+ <param name="revision">1.28.4</param>
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
<param name="versionrewrite-pattern">v?(.*)\+0</param>
<param name="versionrewrite-replacement">\1</param>
++++++ gst-libav-1.28.2.obscpio -> gst-libav-1.28.4.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gst-libav-1.28.2/ext/libav/gstavdemux.c
new/gst-libav-1.28.4/ext/libav/gstavdemux.c
--- old/gst-libav-1.28.2/ext/libav/gstavdemux.c 2026-04-07 21:02:23.000000000
+0200
+++ new/gst-libav-1.28.4/ext/libav/gstavdemux.c 2026-06-12 14:19:43.000000000
+0200
@@ -1389,13 +1389,12 @@
/* ERRORS */
beach:
{
- if (demux->context->pb) {
- if (demux->seekable)
- gst_ffmpegdata_close (demux->context->pb);
- else
- gst_ffmpeg_pipe_close (demux->context->pb);
+ if (demux->seekable)
+ gst_ffmpegdata_close (iocontext);
+ else
+ gst_ffmpeg_pipe_close (iocontext);
+ if (demux->context)
demux->context->pb = NULL;
- }
avformat_close_input (&demux->context);
GST_ELEMENT_ERROR (demux, LIBRARY, FAILED, (NULL),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gst-libav-1.28.2/ext/libav/gstavprotocol.c
new/gst-libav-1.28.4/ext/libav/gstavprotocol.c
--- old/gst-libav-1.28.2/ext/libav/gstavprotocol.c 2026-04-07
21:02:23.000000000 +0200
+++ new/gst-libav-1.28.4/ext/libav/gstavprotocol.c 2026-06-12
14:19:43.000000000 +0200
@@ -332,17 +332,13 @@
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 is the GstFFMpegPipe* that was passed into
+ // gst_ffmpeg_pipe_open(). This must not be freed as it's
+ // owned by the element.
h->opaque = NULL;
av_freep (&h->buffer);
av_free (h);
@@ -351,7 +347,8 @@
}
int
-gst_ffmpeg_pipe_open (GstFFMpegPipe * ffpipe, int flags, AVIOContext **
context)
+gst_ffmpeg_pipe_open (const GstFFMpegPipe * ffpipe, int flags,
+ AVIOContext ** context)
{
static const int buffer_size = 4096;
unsigned char *buffer = NULL;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gst-libav-1.28.2/ext/libav/gstavprotocol.h
new/gst-libav-1.28.4/ext/libav/gstavprotocol.h
--- old/gst-libav-1.28.2/ext/libav/gstavprotocol.h 2026-04-07
21:02:23.000000000 +0200
+++ new/gst-libav-1.28.4/ext/libav/gstavprotocol.h 2026-06-12
14:19:43.000000000 +0200
@@ -67,7 +67,7 @@
guint needed;
};
-int gst_ffmpeg_pipe_open (GstFFMpegPipe *ffpipe, int flags, AVIOContext **
context);
+int gst_ffmpeg_pipe_open (const GstFFMpegPipe *ffpipe, int flags, AVIOContext
** context);
int gst_ffmpeg_pipe_close (AVIOContext * h);
int gst_ffmpegdata_open (GstPad * pad, int flags, AVIOContext ** context);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gst-libav-1.28.2/gst-libav.doap
new/gst-libav-1.28.4/gst-libav.doap
--- old/gst-libav-1.28.2/gst-libav.doap 2026-04-07 21:02:23.000000000 +0200
+++ new/gst-libav-1.28.4/gst-libav.doap 2026-06-12 14:19:43.000000000 +0200
@@ -34,6 +34,26 @@
<release>
<Version>
+ <revision>1.28.4</revision>
+ <branch>1.28</branch>
+ <name></name>
+ <created>2026-06-12</created>
+ <file-release
rdf:resource="https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.28.4.tar.xz"
/>
+ </Version>
+ </release>
+
+ <release>
+ <Version>
+ <revision>1.28.3</revision>
+ <branch>1.28</branch>
+ <name></name>
+ <created>2026-05-11</created>
+ <file-release
rdf:resource="https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.28.3.tar.xz"
/>
+ </Version>
+ </release>
+
+ <release>
+ <Version>
<revision>1.28.2</revision>
<branch>1.28</branch>
<name></name>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gst-libav-1.28.2/meson.build
new/gst-libav-1.28.4/meson.build
--- old/gst-libav-1.28.2/meson.build 2026-04-07 21:02:23.000000000 +0200
+++ new/gst-libav-1.28.4/meson.build 2026-06-12 14:19:43.000000000 +0200
@@ -1,8 +1,9 @@
project('gst-libav', 'c',
- version : '1.28.2',
+ version : '1.28.4',
meson_version : '>= 1.4',
default_options : [ 'warning_level=1',
- 'buildtype=debugoptimized' ])
+ 'buildtype=debugoptimized',
+ 'c_std=gnu11,c11' ])
gst_version = meson.project_version()
version_arr = gst_version.split('.')
++++++ gst-libav.obsinfo ++++++
--- /var/tmp/diff_new_pack.bHpGJD/_old 2026-06-13 18:47:33.841994168 +0200
+++ /var/tmp/diff_new_pack.bHpGJD/_new 2026-06-13 18:47:33.845994335 +0200
@@ -1,5 +1,5 @@
name: gst-libav
-version: 1.28.2
-mtime: 1775588543
-commit: 43421c2a5b8ac5cceb52b11749df40301e1de5c0
+version: 1.28.4
+mtime: 1781266783
+commit: b46f881eaa8126eddfd21b5ae5512f8d4ff36255