mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-06-12 05:17:39 +02:00
Patch aom to support built-in vmaf models
This commit is contained in:
@ -7,10 +7,19 @@ ffbuild_enabled() {
|
||||
return 0
|
||||
}
|
||||
|
||||
ffbuild_dockerstage() {
|
||||
to_df "RUN --mount=src=${SELF},dst=/stage.sh --mount=src=patches/aom,dst=/patches run_stage /stage.sh"
|
||||
}
|
||||
|
||||
ffbuild_dockerbuild() {
|
||||
git-mini-clone "$AOM_REPO" "$AOM_COMMIT" aom
|
||||
cd aom
|
||||
|
||||
for patch in /patches/*.patch; do
|
||||
echo "Applying $patch"
|
||||
git am < "$patch"
|
||||
done
|
||||
|
||||
mkdir cmbuild && cd cmbuild
|
||||
|
||||
# Workaround broken build system
|
||||
|
Reference in New Issue
Block a user