mpv: disable scale filter in ffmpeg build (#12312)

Fixes timeouts and OOMs on huge scaling sizes. It is not mpv filter
anyway, so we can skip testing it.
This commit is contained in:
Kacper Michajłow 2024-08-07 22:37:01 +02:00 committed by GitHub
parent ae01ac91e1
commit 1d568ac892
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,7 @@ pushd $SRC/ffmpeg
./configure --cc=$CC --cxx=$CXX --ld="$CXX $CXXFLAGS" \
--enable-{gpl,nonfree} \
--disable-{asm,bsfs,doc,encoders,filters,muxers,network,postproc,programs,shared} \
--enable-filter={scale,sine,yuvtestsrc} \
--enable-filter={sine,yuvtestsrc} \
--pkg-config-flags="--static" \
$FFMPEG_BUILD_ARGS
make -j`nproc`

View File

@ -19,4 +19,5 @@ fuzzing_engines:
selective_unpack: true
coverage_extra_args: >
-ignore-filename-regex=mpv/subprojects/.*
-ignore-filename-regex=mpv/build/subprojects/.*
-ignore-filename-regex=ffmpeg/.*