— Update ffmpeg

— Refactor ffmpeg usage to modern APIs
— Update media encoding and decoding
This commit is contained in:
Isaac
2024-11-15 18:30:10 +04:00
parent 10984d7ce4
commit b39ff58211
10756 changed files with 1243300 additions and 786971 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