From f95260387c2adb211552f862510764c92c3e7b94 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Wed, 25 Mar 2026 10:30:56 +0100 Subject: [PATCH] move json --- {frontend/public/json => json}/plane.json | 0 misc/tools.func | 8 +++++++- 2 files changed, 7 insertions(+), 1 deletion(-) rename {frontend/public/json => json}/plane.json (100%) diff --git a/frontend/public/json/plane.json b/json/plane.json similarity index 100% rename from frontend/public/json/plane.json rename to json/plane.json diff --git a/misc/tools.func b/misc/tools.func index 36df7c7a..69b666a9 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -3919,9 +3919,15 @@ function setup_ffmpeg() { DEPS+=( libx264-dev libx265-dev libvpx-dev libmp3lame-dev libfreetype6-dev libass-dev libopus-dev libvorbis-dev - libdav1d-dev libsvtav1-dev zlib1g-dev libnuma-dev + libdav1d-dev zlib1g-dev libnuma-dev libva-dev libdrm-dev ) + # libsvtav1-dev was renamed to libsvtav1enc-dev in Debian 13+ + if apt-cache show libsvtav1enc-dev &>/dev/null; then + DEPS+=(libsvtav1enc-dev) + elif apt-cache show libsvtav1-dev &>/dev/null; then + DEPS+=(libsvtav1-dev) + fi ;; *) msg_error "Invalid FFMPEG_TYPE: $TYPE"