Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
62079f0ff3 | ||
|
|
081db52026 | ||
|
|
2cb206c8d5 | ||
|
|
2364ea43f4 | ||
|
|
333dc69736 | ||
|
|
28d758506e | ||
|
|
85d2ac244e | ||
|
|
2db297209f |
5 changed files with 44 additions and 93 deletions
|
|
@ -69,6 +69,7 @@ anull
|
||||||
apac
|
apac
|
||||||
ape
|
ape
|
||||||
apng # animated png
|
apng # animated png
|
||||||
|
apv
|
||||||
arbc
|
arbc
|
||||||
argo
|
argo
|
||||||
ass # trivial
|
ass # trivial
|
||||||
|
|
@ -210,7 +211,7 @@ libjxl # libjxl
|
||||||
liblc3 # liblc3
|
liblc3 # liblc3
|
||||||
libopencore_amrnb # opencore-amr
|
libopencore_amrnb # opencore-amr
|
||||||
libopencore_amrwb # opencore-amr
|
libopencore_amrwb # opencore-amr
|
||||||
libopenh264 # openh264_dlopen
|
libopenh264 # openh264
|
||||||
libopenjpeg # openjpeg
|
libopenjpeg # openjpeg
|
||||||
libopus # opus
|
libopus # opus
|
||||||
librsvg # librsvg
|
librsvg # librsvg
|
||||||
|
|
@ -335,6 +336,7 @@ pjs
|
||||||
png # libpng
|
png # libpng
|
||||||
ppm # trivial
|
ppm # trivial
|
||||||
prores
|
prores
|
||||||
|
prores_raw
|
||||||
prosumer
|
prosumer
|
||||||
psd
|
psd
|
||||||
ptx
|
ptx
|
||||||
|
|
|
||||||
|
|
@ -81,8 +81,9 @@ libilbc # ilbc
|
||||||
libjxl # libjxl
|
libjxl # libjxl
|
||||||
liblc3 # liblc3
|
liblc3 # liblc3
|
||||||
libmp3lame # lame
|
libmp3lame # lame
|
||||||
|
liboapv
|
||||||
libopencore_amrnb
|
libopencore_amrnb
|
||||||
libopenh264 # openh264_dlopen
|
libopenh264 # openh264
|
||||||
libopenjpeg # openjpeg
|
libopenjpeg # openjpeg
|
||||||
libopus # opus
|
libopus # opus
|
||||||
librav1e # rav1e
|
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
|
|
||||||
|
|
||||||
97
ffmpeg.spec
97
ffmpeg.spec
|
|
@ -47,13 +47,11 @@
|
||||||
# Disable dependencies not available or wanted on RHEL/EPEL
|
# Disable dependencies not available or wanted on RHEL/EPEL
|
||||||
%bcond chromaprint 0
|
%bcond chromaprint 0
|
||||||
%bcond flite 0
|
%bcond flite 0
|
||||||
%bcond lc3 0
|
|
||||||
%else
|
%else
|
||||||
# Break chromaprint dependency cycle (Fedora-only):
|
# Break chromaprint dependency cycle (Fedora-only):
|
||||||
# ffmpeg (libavcodec-free) → chromaprint → ffmpeg
|
# ffmpeg (libavcodec-free) → chromaprint → ffmpeg
|
||||||
%bcond chromaprint %{?_with_bootstrap:0}%{!?_with_bootstrap:1}
|
%bcond chromaprint %{?with_bootstrap:0}%{!?with_bootstrap:1}
|
||||||
%bcond flite 1
|
%bcond flite 1
|
||||||
%bcond lc3 1
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 9
|
%if 0%{?rhel} && 0%{?rhel} <= 9
|
||||||
|
|
@ -65,6 +63,14 @@
|
||||||
%bcond placebo 1
|
%bcond placebo 1
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?el10}
|
||||||
|
# Disable temporarily while we want for liblc3 to be upgraded
|
||||||
|
# Cf. https://issues.redhat.com/browse/RHEL-127169
|
||||||
|
%bcond lc3 0
|
||||||
|
%else
|
||||||
|
%bcond lc3 1
|
||||||
|
%endif
|
||||||
|
|
||||||
# For using an alternative build of EVC codecs
|
# For using an alternative build of EVC codecs
|
||||||
%bcond evc_main 0
|
%bcond evc_main 0
|
||||||
|
|
||||||
|
|
@ -87,20 +93,19 @@
|
||||||
# FIXME: GCC says there's incompatible pointer casts going on in libavdevice...
|
# FIXME: GCC says there's incompatible pointer casts going on in libavdevice...
|
||||||
%global build_type_safety_c 2
|
%global build_type_safety_c 2
|
||||||
|
|
||||||
%global av_codec_soversion 61
|
%global av_codec_soversion 62
|
||||||
%global av_device_soversion 61
|
%global av_device_soversion 62
|
||||||
%global av_filter_soversion 10
|
%global av_filter_soversion 11
|
||||||
%global av_format_soversion 61
|
%global av_format_soversion 62
|
||||||
%global av_util_soversion 59
|
%global av_util_soversion 60
|
||||||
%global postproc_soversion 58
|
%global swresample_soversion 6
|
||||||
%global swresample_soversion 5
|
%global swscale_soversion 9
|
||||||
%global swscale_soversion 8
|
|
||||||
|
|
||||||
Name: ffmpeg
|
Name: ffmpeg
|
||||||
%global pkg_name %{name}%{?pkg_suffix}
|
%global pkg_name %{name}%{?pkg_suffix}
|
||||||
|
|
||||||
Version: 7.1.2
|
Version: 8.0.1
|
||||||
Release: 4%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: A complete solution to record, convert and stream audio and video
|
Summary: A complete solution to record, convert and stream audio and video
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
URL: https://ffmpeg.org/
|
URL: https://ffmpeg.org/
|
||||||
|
|
@ -120,9 +125,6 @@ Patch2: ffmpeg-allow-fdk-aac-free.patch
|
||||||
# Support building with EVC base profile libraries
|
# Support building with EVC base profile libraries
|
||||||
Patch3: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20329.patch#/ffmpeg-support-evc-base-libraries.patch
|
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
|
# Add first_dts getter to libavformat for Chromium
|
||||||
# See: https://bugzilla.redhat.com/show_bug.cgi?id=2240127
|
# See: https://bugzilla.redhat.com/show_bug.cgi?id=2240127
|
||||||
# Reference: https://crbug.com/1306560
|
# Reference: https://crbug.com/1306560
|
||||||
|
|
@ -134,7 +136,6 @@ Requires: libavdevice%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libavfilter%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libavfilter%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libavformat%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libavformat%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libavutil%{?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: libswresample%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libswscale%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libswscale%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
|
@ -217,6 +218,7 @@ BuildRequires: pkgconfig(libxml-2.0)
|
||||||
BuildRequires: pkgconfig(libzmq)
|
BuildRequires: pkgconfig(libzmq)
|
||||||
BuildRequires: pkgconfig(lilv-0)
|
BuildRequires: pkgconfig(lilv-0)
|
||||||
BuildRequires: pkgconfig(lv2)
|
BuildRequires: pkgconfig(lv2)
|
||||||
|
BuildRequires: pkgconfig(oapv)
|
||||||
BuildRequires: pkgconfig(ogg)
|
BuildRequires: pkgconfig(ogg)
|
||||||
BuildRequires: pkgconfig(openal)
|
BuildRequires: pkgconfig(openal)
|
||||||
BuildRequires: pkgconfig(opencore-amrnb)
|
BuildRequires: pkgconfig(opencore-amrnb)
|
||||||
|
|
@ -307,7 +309,6 @@ Requires: libavdevice%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libavfilter%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libavfilter%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libavformat%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libavformat%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libavutil%{?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: libswresample%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libswscale%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libswscale%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
|
@ -345,7 +346,6 @@ Requires: libavdevice%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libavfilter%{?pkg_suffix}-devel = %{version}-%{release}
|
Requires: libavfilter%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libavformat%{?pkg_suffix}-devel = %{version}-%{release}
|
Requires: libavformat%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libavutil%{?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: libswresample%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libswscale%{?pkg_suffix}-devel = %{version}-%{release}
|
Requires: libswscale%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: pkgconfig
|
Requires: pkgconfig
|
||||||
|
|
@ -432,7 +432,6 @@ Requires: libavcodec%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libavfilter%{?pkg_suffix}-devel = %{version}-%{release}
|
Requires: libavfilter%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libavformat%{?pkg_suffix}-devel = %{version}-%{release}
|
Requires: libavformat%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libavutil%{?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: libswresample%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libswscale%{?pkg_suffix}-devel = %{version}-%{release}
|
Requires: libswscale%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libavdevice%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libavdevice%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
|
|
@ -459,7 +458,6 @@ Summary: FFmpeg audio and video filtering library
|
||||||
Requires: libavcodec%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libavcodec%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libavformat%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libavformat%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libavutil%{?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: libswresample%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: libswscale%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libswscale%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
|
@ -478,7 +476,6 @@ Summary: Development files for FFmpeg's audio/video filter library
|
||||||
Requires: libavcodec%{?pkg_suffix}-devel = %{version}-%{release}
|
Requires: libavcodec%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libavformat%{?pkg_suffix}-devel = %{version}-%{release}
|
Requires: libavformat%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libavutil%{?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: libswresample%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libswscale%{?pkg_suffix}-devel = %{version}-%{release}
|
Requires: libswscale%{?pkg_suffix}-devel = %{version}-%{release}
|
||||||
Requires: libavfilter%{?pkg_suffix} = %{version}-%{release}
|
Requires: libavfilter%{?pkg_suffix} = %{version}-%{release}
|
||||||
|
|
@ -546,6 +543,7 @@ This subpackage contains the headers for FFmpeg libavformat.
|
||||||
%package -n libavutil%{?pkg_suffix}
|
%package -n libavutil%{?pkg_suffix}
|
||||||
Summary: FFmpeg's utility library
|
Summary: FFmpeg's utility library
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
Obsoletes: libpostproc%{?pkg_suffix} < 8.0
|
||||||
|
|
||||||
%description -n libavutil%{?pkg_suffix}
|
%description -n libavutil%{?pkg_suffix}
|
||||||
The libavutil library is a utility library to aid portable multimedia
|
The libavutil library is a utility library to aid portable multimedia
|
||||||
|
|
@ -564,6 +562,7 @@ for pixel and sample formats).
|
||||||
Summary: Development files for FFmpeg's utility library
|
Summary: Development files for FFmpeg's utility library
|
||||||
Requires: libavutil%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libavutil%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
Requires: pkgconfig
|
Requires: pkgconfig
|
||||||
|
Obsoletes: libpostproc%{?pkg_suffix}-devel < 8.0
|
||||||
|
|
||||||
%description -n libavutil%{?pkg_suffix}-devel
|
%description -n libavutil%{?pkg_suffix}-devel
|
||||||
The libavutil library is a utility library to aid portable multimedia
|
The libavutil library is a utility library to aid portable multimedia
|
||||||
|
|
@ -582,41 +581,6 @@ This subpackage contains the headers for FFmpeg libavutil.
|
||||||
|
|
||||||
%dnl --------------------------------------------------------------------------------
|
%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}
|
%package -n libswresample%{?pkg_suffix}
|
||||||
Summary: FFmpeg software resampling library
|
Summary: FFmpeg software resampling library
|
||||||
Requires: libavutil%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
Requires: libavutil%{?pkg_suffix}%{_isa} = %{version}-%{release}
|
||||||
|
|
@ -728,7 +692,7 @@ sed -i "s|check_host_cflags -O3|check_host_cflags %{optflags}|" configure
|
||||||
install -m0755 -d _doc/examples
|
install -m0755 -d _doc/examples
|
||||||
cp -a doc/examples/{*.c,Makefile,README} _doc/examples/
|
cp -a doc/examples/{*.c,Makefile,README} _doc/examples/
|
||||||
|
|
||||||
%build
|
%conf
|
||||||
%set_build_flags
|
%set_build_flags
|
||||||
|
|
||||||
# This is not a normal configure script, don't use %%configure
|
# This is not a normal configure script, don't use %%configure
|
||||||
|
|
@ -822,6 +786,7 @@ cp -a doc/examples/{*.c,Makefile,README} _doc/examples/
|
||||||
--enable-libopencore-amrnb \
|
--enable-libopencore-amrnb \
|
||||||
--enable-libopencore-amrwb \
|
--enable-libopencore-amrwb \
|
||||||
--disable-libopencv \
|
--disable-libopencv \
|
||||||
|
--enable-liboapv \
|
||||||
--enable-libopenh264 \
|
--enable-libopenh264 \
|
||||||
--enable-libopenjpeg \
|
--enable-libopenjpeg \
|
||||||
--enable-libopenmpt \
|
--enable-libopenmpt \
|
||||||
|
|
@ -903,7 +868,6 @@ cp -a doc/examples/{*.c,Makefile,README} _doc/examples/
|
||||||
%endif
|
%endif
|
||||||
--enable-openal \
|
--enable-openal \
|
||||||
--disable-openssl \
|
--disable-openssl \
|
||||||
--enable-postproc \
|
|
||||||
--enable-pthreads \
|
--enable-pthreads \
|
||||||
--enable-sdl2 \
|
--enable-sdl2 \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
|
|
@ -978,6 +942,9 @@ for i in H264 HEVC; do
|
||||||
done
|
done
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%build
|
||||||
|
%set_build_flags
|
||||||
|
|
||||||
%make_build V=1
|
%make_build V=1
|
||||||
%make_build documentation V=1
|
%make_build documentation V=1
|
||||||
%make_build alltools V=1
|
%make_build alltools V=1
|
||||||
|
|
@ -1004,9 +971,19 @@ rm -rf %{buildroot}%{_datadir}
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Dec 04 2025 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 7.1.2-4
|
* Thu Dec 04 2025 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 8.0.1-2
|
||||||
- disable dc1394 and ffnvcodec on risc-v
|
- disable dc1394 and ffnvcodec on risc-v
|
||||||
|
|
||||||
|
* Fri Nov 21 2025 Dominik Mierzejewski <dominik@greysector.net> - 8.0.1-1
|
||||||
|
- Update to 8.0.1 (resolves rhbz#2416044)
|
||||||
|
- Split configure step to conf stage
|
||||||
|
|
||||||
|
* Fri Nov 14 2025 Neal Gompa <ngompa@fedoraproject.org> - 8.0-2
|
||||||
|
- Disable lc3 only on RHEL 10
|
||||||
|
|
||||||
|
* 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
|
* 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)
|
- 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-8.0.1.tar.xz) = 7af5cd1c7ba04f8d7ea1b54b64b9c235f2a606dc0c18d25cfdf20958bcad4851d3265b4894fc6ba5dd205c2309971c7e7fb890ee1d64e0a41a3faf159f77957f
|
||||||
SHA512 (ffmpeg-7.1.2.tar.xz.asc) = b0358cea13be070a0d41b42e98c5df17ab8794b86a5f8b2a4bf0043e608a21b02fdbaad2bc3318457a9c43ef0d3c823509234ffd7292e6ea49b1eff951663f58
|
SHA512 (ffmpeg-8.0.1.tar.xz.asc) = f56e9e89ecdf9f12e3dae90b52289e5d09bfbfc0f6e13aaf17da9330c138fdb62b132f856c2fd16f5d9f5d6bcf1725602c8781c3e5f07bda6ce1306c379792ab
|
||||||
SHA512 (ffmpeg.keyring) = 9b36506835db36f776b7ddb53ad6fa9e915e6ca2f9c7cfebe8eb45513e1036a985283590a840ca313a111bf35dc3731f68885aaafb1fb7011ec433cc119e5165
|
SHA512 (ffmpeg.keyring) = 9b36506835db36f776b7ddb53ad6fa9e915e6ca2f9c7cfebe8eb45513e1036a985283590a840ca313a111bf35dc3731f68885aaafb1fb7011ec433cc119e5165
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue