Rebase to version 8.0
This commit is contained in:
parent
2db297209f
commit
85d2ac244e
5 changed files with 23 additions and 88 deletions
|
|
@ -69,6 +69,7 @@ anull
|
|||
apac
|
||||
ape
|
||||
apng # animated png
|
||||
apv
|
||||
arbc
|
||||
argo
|
||||
ass # trivial
|
||||
|
|
@ -210,7 +211,7 @@ libjxl # libjxl
|
|||
liblc3 # liblc3
|
||||
libopencore_amrnb # opencore-amr
|
||||
libopencore_amrwb # opencore-amr
|
||||
libopenh264 # openh264_dlopen
|
||||
libopenh264 # openh264
|
||||
libopenjpeg # openjpeg
|
||||
libopus # opus
|
||||
librsvg # librsvg
|
||||
|
|
@ -335,6 +336,7 @@ pjs
|
|||
png # libpng
|
||||
ppm # trivial
|
||||
prores
|
||||
prores_raw
|
||||
prosumer
|
||||
psd
|
||||
ptx
|
||||
|
|
|
|||
|
|
@ -81,8 +81,9 @@ libilbc # ilbc
|
|||
libjxl # libjxl
|
||||
liblc3 # liblc3
|
||||
libmp3lame # lame
|
||||
liboapv
|
||||
libopencore_amrnb
|
||||
libopenh264 # openh264_dlopen
|
||||
libopenh264 # openh264
|
||||
libopenjpeg # openjpeg
|
||||
libopus # opus
|
||||
librav1e # rav1e
|
||||
|
|
|
|||
|
|
@ -1,29 +0,0 @@
|
|||
From 7f9c7f9849a2155224711f0ff57ecdac6e4bfb57 Mon Sep 17 00:00:00 2001
|
||||
From: James Almer <jamrial@gmail.com>
|
||||
Date: Wed, 1 Jan 2025 23:58:39 -0300
|
||||
Subject: [PATCH] avcodec/jpeg2000dec: clear array length when freeing it
|
||||
|
||||
Fixes NULL pointer dereferences.
|
||||
Fixes ticket #11393.
|
||||
|
||||
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
|
||||
Signed-off-by: James Almer <jamrial@gmail.com>
|
||||
---
|
||||
libavcodec/jpeg2000dec.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/libavcodec/jpeg2000dec.c b/libavcodec/jpeg2000dec.c
|
||||
index e5e897a29f..b82d85d5ee 100644
|
||||
--- a/libavcodec/jpeg2000dec.c
|
||||
+++ b/libavcodec/jpeg2000dec.c
|
||||
@@ -1521,6 +1521,7 @@ static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
|
||||
}
|
||||
}
|
||||
av_freep(&cblk->lengthinc);
|
||||
+ cblk->nb_lengthinc = 0;
|
||||
}
|
||||
}
|
||||
// Save state of stream
|
||||
--
|
||||
2.48.1
|
||||
|
||||
71
ffmpeg.spec
71
ffmpeg.spec
|
|
@ -87,20 +87,19 @@
|
|||
# FIXME: GCC says there's incompatible pointer casts going on in libavdevice...
|
||||
%global build_type_safety_c 2
|
||||
|
||||
%global av_codec_soversion 61
|
||||
%global av_device_soversion 61
|
||||
%global av_filter_soversion 10
|
||||
%global av_format_soversion 61
|
||||
%global av_util_soversion 59
|
||||
%global postproc_soversion 58
|
||||
%global swresample_soversion 5
|
||||
%global swscale_soversion 8
|
||||
%global av_codec_soversion 62
|
||||
%global av_device_soversion 62
|
||||
%global av_filter_soversion 11
|
||||
%global av_format_soversion 62
|
||||
%global av_util_soversion 60
|
||||
%global swresample_soversion 6
|
||||
%global swscale_soversion 9
|
||||
|
||||
Name: ffmpeg
|
||||
%global pkg_name %{name}%{?pkg_suffix}
|
||||
|
||||
Version: 7.1.2
|
||||
Release: 3%{?dist}
|
||||
Version: 8.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A complete solution to record, convert and stream audio and video
|
||||
License: GPL-3.0-or-later
|
||||
URL: https://ffmpeg.org/
|
||||
|
|
@ -120,9 +119,6 @@ Patch2: ffmpeg-allow-fdk-aac-free.patch
|
|||
# Support building with EVC base profile libraries
|
||||
Patch3: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20329.patch#/ffmpeg-support-evc-base-libraries.patch
|
||||
|
||||
# Backport fix for CVE-2025-22921
|
||||
Patch10: https://git.ffmpeg.org/gitweb/ffmpeg.git/patch/7f9c7f9849a2155224711f0ff57ecdac6e4bfb57#/ffmpeg-CVE-2025-22921.patch
|
||||
|
||||
# Add first_dts getter to libavformat for Chromium
|
||||
# See: https://bugzilla.redhat.com/show_bug.cgi?id=2240127
|
||||
# Reference: https://crbug.com/1306560
|
||||
|
|
@ -134,7 +130,6 @@ Requires: libavdevice%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
|||
Requires: libavfilter%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libavformat%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libavutil%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libpostproc%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libswresample%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libswscale%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
|
||||
|
|
@ -217,6 +212,7 @@ BuildRequires: pkgconfig(libxml-2.0)
|
|||
BuildRequires: pkgconfig(libzmq)
|
||||
BuildRequires: pkgconfig(lilv-0)
|
||||
BuildRequires: pkgconfig(lv2)
|
||||
BuildRequires: pkgconfig(oapv)
|
||||
BuildRequires: pkgconfig(ogg)
|
||||
BuildRequires: pkgconfig(openal)
|
||||
BuildRequires: pkgconfig(opencore-amrnb)
|
||||
|
|
@ -307,7 +303,6 @@ Requires: libavdevice%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
|||
Requires: libavfilter%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libavformat%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libavutil%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libpostproc%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libswresample%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libswscale%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
|
||||
|
|
@ -345,7 +340,6 @@ Requires: libavdevice%{?pkg_suffix}-devel = %{version}-%{release}
|
|||
Requires: libavfilter%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libavformat%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libavutil%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libpostproc%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libswresample%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libswscale%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
|
|
@ -432,7 +426,6 @@ Requires: libavcodec%{?pkg_suffix}-devel = %{version}-%{release}
|
|||
Requires: libavfilter%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libavformat%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libavutil%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libpostproc%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libswresample%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libswscale%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libavdevice%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
|
|
@ -459,7 +452,6 @@ Summary: FFmpeg audio and video filtering library
|
|||
Requires: libavcodec%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libavformat%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libavutil%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libpostproc%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libswresample%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: libswscale%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
|
||||
|
|
@ -478,7 +470,6 @@ Summary: Development files for FFmpeg's audio/video filter library
|
|||
Requires: libavcodec%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libavformat%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libavutil%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libpostproc%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libswresample%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libswscale%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libavfilter%{?pkg_suffix} = %{version}-%{release}
|
||||
|
|
@ -546,6 +537,7 @@ This subpackage contains the headers for FFmpeg libavformat.
|
|||
%package -n libavutil%{?pkg_suffix}
|
||||
Summary: FFmpeg's utility library
|
||||
Group: System/Libraries
|
||||
Obsoletes: libpostproc%{?pkg_suffix} < 8.0
|
||||
|
||||
%description -n libavutil%{?pkg_suffix}
|
||||
The libavutil library is a utility library to aid portable multimedia
|
||||
|
|
@ -564,6 +556,7 @@ for pixel and sample formats).
|
|||
Summary: Development files for FFmpeg's utility library
|
||||
Requires: libavutil%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
Obsoletes: libpostproc%{?pkg_suffix}-devel < 8.0
|
||||
|
||||
%description -n libavutil%{?pkg_suffix}-devel
|
||||
The libavutil library is a utility library to aid portable multimedia
|
||||
|
|
@ -582,41 +575,6 @@ This subpackage contains the headers for FFmpeg libavutil.
|
|||
|
||||
%dnl --------------------------------------------------------------------------------
|
||||
|
||||
%package -n libpostproc%{?pkg_suffix}
|
||||
Summary: FFmpeg post-processing library
|
||||
Requires: libavutil%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
|
||||
%description -n libpostproc%{?pkg_suffix}
|
||||
A library with video postprocessing filters, such as deblocking and
|
||||
deringing filters, noise reduction, automatic contrast and brightness
|
||||
correction, linear/cubic interpolating deinterlacing.
|
||||
|
||||
%files -n libpostproc%{?pkg_suffix}
|
||||
%license COPYING.GPLv2 LICENSE.md
|
||||
%{_libdir}/libpostproc.so.%{postproc_soversion}{,.*}
|
||||
|
||||
%dnl --------------------------------------------------------------------------------
|
||||
|
||||
%package -n libpostproc%{?pkg_suffix}-devel
|
||||
Summary: Development files for the FFmpeg post-processing library
|
||||
Requires: libavutil%{?pkg_suffix}-devel = %{version}-%{release}
|
||||
Requires: libpostproc%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
|
||||
%description -n libpostproc%{?pkg_suffix}-devel
|
||||
A library with video postprocessing filters, such as deblocking and
|
||||
deringing filters, noise reduction, automatic contrast and brightness
|
||||
correction, linear/cubic interpolating deinterlacing.
|
||||
|
||||
This subpackage contains the headers for FFmpeg libpostproc.
|
||||
|
||||
%files -n libpostproc%{?pkg_suffix}-devel
|
||||
%{_includedir}/%{name}/libpostproc
|
||||
%{_libdir}/pkgconfig/libpostproc.pc
|
||||
%{_libdir}/libpostproc.so
|
||||
|
||||
%dnl --------------------------------------------------------------------------------
|
||||
|
||||
%package -n libswresample%{?pkg_suffix}
|
||||
Summary: FFmpeg software resampling library
|
||||
Requires: libavutil%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||
|
|
@ -822,6 +780,7 @@ cp -a doc/examples/{*.c,Makefile,README} _doc/examples/
|
|||
--enable-libopencore-amrnb \
|
||||
--enable-libopencore-amrwb \
|
||||
--disable-libopencv \
|
||||
--enable-liboapv \
|
||||
--enable-libopenh264 \
|
||||
--enable-libopenjpeg \
|
||||
--enable-libopenmpt \
|
||||
|
|
@ -903,7 +862,6 @@ cp -a doc/examples/{*.c,Makefile,README} _doc/examples/
|
|||
%endif
|
||||
--enable-openal \
|
||||
--disable-openssl \
|
||||
--enable-postproc \
|
||||
--enable-pthreads \
|
||||
--enable-sdl2 \
|
||||
--enable-shared \
|
||||
|
|
@ -1004,6 +962,9 @@ rm -rf %{buildroot}%{_datadir}
|
|||
|
||||
|
||||
%changelog
|
||||
* Sun Nov 02 2025 Neal Gompa <ngompa@fedoraproject.org> - 8.0-1
|
||||
- Rebase to version 8.0
|
||||
|
||||
* Sun Nov 02 2025 Dominik Mierzejewski <dominik@greysector.net> - 7.1.2-3
|
||||
- Re-enable openal support (dropped by accident in commit 5917b714, resolves rhbz#2404091)
|
||||
|
||||
|
|
|
|||
4
sources
4
sources
|
|
@ -1,3 +1,3 @@
|
|||
SHA512 (ffmpeg-7.1.2.tar.xz) = 181e6415da359e3addbc448ff09b5cebe57d9c37106e5125c41f484adebc250502fc9efe150cb117d7378e20830715035be94c2ba4ad7c369b18af85f1a4ca20
|
||||
SHA512 (ffmpeg-7.1.2.tar.xz.asc) = b0358cea13be070a0d41b42e98c5df17ab8794b86a5f8b2a4bf0043e608a21b02fdbaad2bc3318457a9c43ef0d3c823509234ffd7292e6ea49b1eff951663f58
|
||||
SHA512 (ffmpeg-8.0.tar.xz) = 96f01fc3b881e208e8d35d858b2f60627f298b06103195e3e753b1c6429810d7a484d4daeebad6d0810172616383d103dfb5fcadc4512726c3719800d24a3fde
|
||||
SHA512 (ffmpeg-8.0.tar.xz.asc) = a3faf35b62d149dd7a8f77a417b4046c50216972696fd8a573538550f29000d53b80caa5d7b81778c65dbb2980482cb111b13afc5ff70934f46cbafc3c4fd639
|
||||
SHA512 (ffmpeg.keyring) = 9b36506835db36f776b7ddb53ad6fa9e915e6ca2f9c7cfebe8eb45513e1036a985283590a840ca313a111bf35dc3731f68885aaafb1fb7011ec433cc119e5165
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue