Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ffmpeg-4 for openSUSE:Factory 
checked in at 2022-10-11 17:59:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ffmpeg-4 (Old)
 and      /work/SRC/openSUSE:Factory/.ffmpeg-4.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ffmpeg-4"

Tue Oct 11 17:59:16 2022 rev:54 rq:1009591 version:4.4.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/ffmpeg-4/ffmpeg-4.changes        2022-08-30 
14:48:18.875941461 +0200
+++ /work/SRC/openSUSE:Factory/.ffmpeg-4.new.2275/ffmpeg-4.changes      
2022-10-11 17:59:23.425489529 +0200
@@ -1,0 +2,10 @@
+Mon Oct 10 11:18:30 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com>
+
+- Update to version 4.4.3:
+  * Stable bug fix release, mainly codecs, filter and format fixes.
+- Drop ffmpeg-sdl2-detection.patch: Fixed upstream.
+- Refresh patches with quilt:
+  * ffmpeg-libglslang-detection.patch
+  * ffmpeg-4.2-dlopen-fdk_aac.patch
+
+-------------------------------------------------------------------

Old:
----
  ffmpeg-4.4.2.tar.xz
  ffmpeg-4.4.2.tar.xz.asc
  ffmpeg-sdl2-detection.patch

New:
----
  ffmpeg-4.4.3.tar.xz
  ffmpeg-4.4.3.tar.xz.asc

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ffmpeg-4.spec ++++++
--- /var/tmp/diff_new_pack.jSoiKk/_old  2022-10-11 17:59:24.009490456 +0200
+++ /var/tmp/diff_new_pack.jSoiKk/_new  2022-10-11 17:59:24.013490462 +0200
@@ -95,7 +95,7 @@
 %define _major_version 4
 %define _major_expected 5
 Name:           ffmpeg-4
-Version:        4.4.2
+Version:        4.4.3
 Release:        0
 Summary:        Set of libraries for working with various multimedia formats
 License:        GPL-3.0-or-later
@@ -120,7 +120,6 @@
 Patch9:         ffmpeg-4.4-CVE-2020-22046.patch
 Patch10:        ffmpeg-chromium.patch
 Patch11:        ffmpeg-libglslang-detection.patch
-Patch12:        ffmpeg-sdl2-detection.patch
 BuildRequires:  ladspa-devel
 BuildRequires:  libgsm-devel
 BuildRequires:  libmp3lame-devel

++++++ ffmpeg-4.2-dlopen-fdk_aac.patch ++++++
--- /var/tmp/diff_new_pack.jSoiKk/_old  2022-10-11 17:59:24.097490595 +0200
+++ /var/tmp/diff_new_pack.jSoiKk/_new  2022-10-11 17:59:24.101490602 +0200
@@ -1,7 +1,7 @@
-Index: ffmpeg-4.4.1/configure
+Index: ffmpeg-4.4.3/configure
 ===================================================================
---- ffmpeg-4.4.1.orig/configure
-+++ ffmpeg-4.4.1/configure
+--- ffmpeg-4.4.3.orig/configure
++++ ffmpeg-4.4.3/configure
 @@ -232,6 +232,7 @@ External library support:
    --enable-libdc1394       enable IIDC-1394 grabbing using libdc1394
                             and libraw1394 [no]
@@ -18,7 +18,7 @@
      openssl
      libtls
  "
-@@ -6361,6 +6363,7 @@ enabled libdrm            && require_pkg
+@@ -6368,6 +6370,7 @@ enabled libdrm            && require_pkg
  enabled libfdk_aac        && { check_pkg_config libfdk_aac fdk-aac 
"fdk-aac/aacenc_lib.h" aacEncOpen ||
                                 { require libfdk_aac fdk-aac/aacenc_lib.h 
aacEncOpen -lfdk-aac &&
                                   warn "using libfdk without pkg-config"; } }
@@ -26,10 +26,10 @@
  flite_extralibs="-lflite_cmu_time_awb -lflite_cmu_us_awb -lflite_cmu_us_kal 
-lflite_cmu_us_kal16 -lflite_cmu_us_rms -lflite_cmu_us_slt -lflite_usenglish 
-lflite_cmulex -lflite"
  enabled libflite          && require libflite "flite/flite.h" flite_init 
$flite_extralibs
  enabled fontconfig        && enable libfontconfig
-Index: ffmpeg-4.4.1/libavcodec/dlopen.h
+Index: ffmpeg-4.4.3/libavcodec/dlopen.h
 ===================================================================
 --- /dev/null
-+++ ffmpeg-4.4.1/libavcodec/dlopen.h
++++ ffmpeg-4.4.3/libavcodec/dlopen.h
 @@ -0,0 +1,12 @@
 +#ifndef LOCALINC_DLOPEN_H
 +#define LOCALINC_DLOPEN_H
@@ -43,10 +43,10 @@
 +              goto error;
 +
 +#endif
-Index: ffmpeg-4.4.1/libavcodec/libfdk-aacdec.c
+Index: ffmpeg-4.4.3/libavcodec/libfdk-aacdec.c
 ===================================================================
---- ffmpeg-4.4.1.orig/libavcodec/libfdk-aacdec.c
-+++ ffmpeg-4.4.1/libavcodec/libfdk-aacdec.c
+--- ffmpeg-4.4.3.orig/libavcodec/libfdk-aacdec.c
++++ ffmpeg-4.4.3/libavcodec/libfdk-aacdec.c
 @@ -37,6 +37,54 @@
  #define AAC_PCM_MAX_OUTPUT_CHANNELS AAC_PCM_OUTPUT_CHANNELS
  #endif
@@ -114,10 +114,10 @@
      s->handle = aacDecoder_Open(avctx->extradata_size ? TT_MP4_RAW : 
TT_MP4_ADTS, 1);
      if (!s->handle) {
          av_log(avctx, AV_LOG_ERROR, "Error opening decoder\n");
-Index: ffmpeg-4.4.1/libavcodec/libfdk-aacenc.c
+Index: ffmpeg-4.4.3/libavcodec/libfdk-aacenc.c
 ===================================================================
---- ffmpeg-4.4.1.orig/libavcodec/libfdk-aacenc.c
-+++ ffmpeg-4.4.1/libavcodec/libfdk-aacenc.c
+--- ffmpeg-4.4.3.orig/libavcodec/libfdk-aacenc.c
++++ ffmpeg-4.4.3/libavcodec/libfdk-aacenc.c
 @@ -35,6 +35,48 @@
  #define FDKENC_VER_AT_LEAST(vl0, vl1) 0
  #endif

++++++ ffmpeg-4.4.2.tar.xz -> ffmpeg-4.4.3.tar.xz ++++++
/work/SRC/openSUSE:Factory/ffmpeg-4/ffmpeg-4.4.2.tar.xz 
/work/SRC/openSUSE:Factory/.ffmpeg-4.new.2275/ffmpeg-4.4.3.tar.xz differ: char 
26, line 1


++++++ ffmpeg-libglslang-detection.patch ++++++
--- /var/tmp/diff_new_pack.jSoiKk/_old  2022-10-11 17:59:24.161490697 +0200
+++ /var/tmp/diff_new_pack.jSoiKk/_new  2022-10-11 17:59:24.165490704 +0200
@@ -1,8 +1,8 @@
-Index: ffmpeg-4.4.1/configure
+Index: ffmpeg-4.4.3/configure
 ===================================================================
---- ffmpeg-4.4.1.orig/configure
-+++ ffmpeg-4.4.1/configure
-@@ -6370,7 +6370,12 @@ enabled fontconfig        && enable libf
+--- ffmpeg-4.4.3.orig/configure
++++ ffmpeg-4.4.3/configure
+@@ -6377,7 +6377,12 @@ enabled fontconfig        && enable libf
  enabled libfontconfig     && require_pkg_config libfontconfig fontconfig 
"fontconfig/fontconfig.h" FcInit
  enabled libfreetype       && require_pkg_config libfreetype freetype2 
"ft2build.h FT_FREETYPE_H" FT_Init_FreeType
  enabled libfribidi        && require_pkg_config libfribidi fribidi fribidi.h 
fribidi_version_info

Reply via email to