From 086fa80a78c9f9b00df31974c407b7bebe86c6e8 Mon Sep 17 00:00:00 2001 From: Matthias Reichl Date: Fri, 13 Dec 2024 21:16:22 +0100 Subject: [PATCH] tools/ffmpeg/gen-patches: update to 7.1 Also switch libreelec patch branch to use FFMPEG_VERSION, like used for the v4l2 patches. Signed-off-by: Matthias Reichl --- tools/ffmpeg/gen-patches.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ffmpeg/gen-patches.sh b/tools/ffmpeg/gen-patches.sh index f253de3a81..3797d1ff45 100755 --- a/tools/ffmpeg/gen-patches.sh +++ b/tools/ffmpeg/gen-patches.sh @@ -2,7 +2,7 @@ # base ffmpeg version FFMPEG_REPO="git://source.ffmpeg.org/ffmpeg.git" -FFMPEG_VERSION="n6.0.1" +FFMPEG_VERSION="n7.1" ALL_FEATURE_SETS="v4l2-drmprime v4l2-request libreelec rpi vf-deinterlace-v4l2m2m" @@ -34,7 +34,7 @@ create_patch() { ;; libreelec) REPO="https://github.com/LibreELEC/FFmpeg" - REFSPEC="6.0-libreelec-misc" + REFSPEC="libreelec-misc-${FFMPEG_VERSION}" ;; rpi) REPO="https://github.com/jc-kynesim/rpi-ffmpeg"