switch to ffmpeg 8.0

This commit is contained in:
2025-08-23 13:03:24 -05:00
parent fbfb7c224d
commit 9d7c85b250
2 changed files with 4 additions and 2 deletions

View File

@@ -184,7 +184,7 @@ int main() { puts(gnu_get_libc_version()); return 0; }' >"${srcTest}.c"
# name version file-extension url dep1,dep2 # name version file-extension url dep1,dep2
# shellcheck disable=SC2016 # shellcheck disable=SC2016
local BUILDS_CONF=' local BUILDS_CONF='
ffmpeg 7cd1edeaa410d977a9f1ff8436f480cb45b80178 git https://github.com/FFmpeg/FFmpeg/ ffmpeg 8.0 tar.gz https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${ver}.${ext}
hdr10plus_tool 1.7.1 tar.gz https://github.com/quietvoid/hdr10plus_tool/archive/refs/tags/${ver}.${ext} hdr10plus_tool 1.7.1 tar.gz https://github.com/quietvoid/hdr10plus_tool/archive/refs/tags/${ver}.${ext}
dovi_tool 2.3.0 tar.gz https://github.com/quietvoid/dovi_tool/archive/refs/tags/${ver}.${ext} dovi_tool 2.3.0 tar.gz https://github.com/quietvoid/dovi_tool/archive/refs/tags/${ver}.${ext}
libsvtav1 3.0.2 tar.gz https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v${ver}/SVT-AV1-v${ver}.${ext} libsvtav1 3.0.2 tar.gz https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v${ver}/SVT-AV1-v${ver}.${ext}
@@ -355,6 +355,8 @@ build() {
do_build "${build}" || return 1 do_build "${build}" || return 1
done done
do_build "ffmpeg" || return 1 do_build "ffmpeg" || return 1
# run ffmpeg to show completion
"${PREFIX}/bin/ffmpeg"
# suggestion for path # suggestion for path
hash -r hash -r

View File

@@ -19,7 +19,7 @@ set_docker_run_flags() {
for opt in "${FB_COMP_OPTS[@]}"; do for opt in "${FB_COMP_OPTS[@]}"; do
declare -n defOptVal="DEFAULT_${opt}" declare -n defOptVal="DEFAULT_${opt}"
declare -n optVal="${opt}" declare -n optVal="${opt}"
if [[ -n ${optVal} && ${optVal} != "${defOptVal}" ]]; then if [[ -v optVal && ${optVal} != "${defOptVal}" ]]; then
DOCKER_RUN_FLAGS+=("-e" "${opt}=${optVal}") DOCKER_RUN_FLAGS+=("-e" "${opt}=${optVal}")
fi fi
done done