Update ffmpeg to 7.1.1

This commit is contained in:
Isaac
2025-06-10 12:07:05 +08:00
parent 46f8362501
commit 8d2639f940
8581 changed files with 4153 additions and 7092 deletions

View File

@@ -0,0 +1,24 @@
#!/bin/sh
OUT_DIR="${1}"
SRC_DIR="${2}"
DOXYFILE="${3}"
DOXYGEN="${4}"
shift 4
cd ${SRC_DIR}
if [ -e "VERSION" ]; then
VERSION=`cat "VERSION"`
else
VERSION=`git describe`
fi
$DOXYGEN - <<EOF
@INCLUDE = ${DOXYFILE}
INPUT = $@
HTML_TIMESTAMP = NO
PROJECT_NUMBER = $VERSION
OUTPUT_DIRECTORY = $OUT_DIR
EOF