gitextract_szejd5_7/ ├── .github/ │ ├── buildkit.toml │ ├── dependabot.yml │ └── workflows/ │ ├── build.yml │ └── pr.yml ├── .gitignore ├── LICENSE ├── README.md ├── addins/ │ ├── 4.3.sh │ ├── 4.4.sh │ ├── 5.0.sh │ ├── 5.1.sh │ ├── 6.0.sh │ ├── 6.1.sh │ ├── 7.0.sh │ ├── 7.1.sh │ ├── 8.0.sh │ ├── debug.sh │ └── lto.sh ├── build.sh ├── download.sh ├── generate.sh ├── images/ │ ├── base/ │ │ ├── Dockerfile │ │ ├── check-wget.sh │ │ ├── git-mini-clone.sh │ │ └── retry-tool.sh │ ├── base-linux32/ │ │ ├── Dockerfile │ │ ├── cross.meson │ │ ├── ct-ng-config │ │ ├── gen-implib.sh │ │ └── toolchain.cmake │ ├── base-linux64/ │ │ ├── Dockerfile │ │ ├── cross.meson │ │ ├── ct-ng-config │ │ ├── gen-implib.sh │ │ └── toolchain.cmake │ ├── base-linuxarm64/ │ │ ├── Dockerfile │ │ ├── cross.meson │ │ ├── ct-ng-config │ │ ├── gen-implib.sh │ │ └── toolchain.cmake │ ├── base-linuxmips64/ │ │ ├── Dockerfile │ │ ├── cross.meson │ │ ├── ct-ng-config │ │ ├── gen-implib.sh │ │ └── toolchain.cmake │ ├── base-linuxppc64/ │ │ ├── Dockerfile │ │ ├── cross.meson │ │ ├── ct-ng-config │ │ ├── gen-implib.sh │ │ └── toolchain.cmake │ ├── base-linuxriscv64/ │ │ ├── Dockerfile │ │ ├── cross.meson │ │ ├── ct-ng-config │ │ ├── gen-implib.sh │ │ └── toolchain.cmake │ ├── base-win32/ │ │ ├── Dockerfile │ │ ├── cross.meson │ │ ├── ct-ng-config │ │ └── toolchain.cmake │ ├── base-win64/ │ │ ├── Dockerfile │ │ ├── cross.meson │ │ ├── ct-ng-config │ │ └── toolchain.cmake │ └── base-winarm64/ │ ├── Dockerfile │ ├── cross.meson │ └── toolchain.cmake ├── makeimage.sh ├── patches/ │ ├── aom/ │ │ └── 0001-Fall-back-to-built-in-vmaf-model-on-load-failure.patch │ └── aribb24/ │ ├── 12.patch │ ├── 13.patch │ └── 17.patch ├── scripts.d/ │ ├── 10-mingw-std-threads.sh │ ├── 10-mingw.sh │ ├── 10-xorg-macros.sh │ ├── 15-base.sh │ ├── 20-libiconv.sh │ ├── 20-zlib.sh │ ├── 25-fftw3.sh │ ├── 25-fribidi.sh │ ├── 25-gmp.sh │ ├── 25-libogg.sh │ ├── 25-libxml2.sh │ ├── 25-openssl.sh │ ├── 25-xz.sh │ ├── 45-fonts/ │ │ ├── 25-freetype.sh │ │ ├── 35-fontconfig.sh │ │ ├── 45-harfbuzz.sh │ │ └── 50-freetype.sh │ ├── 45-libsamplerate.sh │ ├── 45-libudfread.sh │ ├── 45-libunibreak.sh │ ├── 45-libvorbis.sh │ ├── 45-opencl.sh │ ├── 45-pulseaudio.sh │ ├── 45-vmaf.sh │ ├── 45-x11/ │ │ ├── 10-xcbproto.sh │ │ ├── 10-xproto.sh │ │ ├── 10-xtrans.sh │ │ ├── 20-libxau.sh │ │ ├── 30-libxcb.sh │ │ ├── 40-libx11.sh │ │ ├── 50-libxext.sh │ │ ├── 50-libxfixes.sh │ │ ├── 50-libxi.sh │ │ ├── 50-libxinerama.sh │ │ ├── 50-libxrender.sh │ │ ├── 50-libxscrnsaver.sh │ │ ├── 50-libxxf86vm.sh │ │ ├── 60-libglvnd.sh │ │ ├── 60-libxcursor.sh │ │ ├── 60-libxrandr.sh │ │ ├── 60-libxv.sh │ │ └── 99-finalize.sh │ ├── 47-vulkan/ │ │ ├── 40-vulkan-headers.sh │ │ ├── 45-vulkan-loader.sh │ │ ├── 50-shaderc.sh │ │ ├── 55-spirv-cross.sh │ │ └── 99-enable.sh │ ├── 50-amf.sh │ ├── 50-aom.sh │ ├── 50-aribb24/ │ │ ├── 25-libpng.sh │ │ └── 50-libaribb24.sh │ ├── 50-avisynth.sh │ ├── 50-chromaprint.sh │ ├── 50-dav1d.sh │ ├── 50-davs2.sh │ ├── 50-dvd/ │ │ ├── 30-libdvdcss.sh │ │ ├── 40-libdvdread.sh │ │ └── 50-libdvdnav.sh │ ├── 50-fdk-aac.sh │ ├── 50-ffnvcodec.sh │ ├── 50-frei0r.sh │ ├── 50-gme.sh │ ├── 50-kvazaar.sh │ ├── 50-lcevcdec.sh │ ├── 50-libaribcaption.sh │ ├── 50-libass.sh │ ├── 50-libbluray.sh │ ├── 50-libjxl/ │ │ ├── 45-brotli.sh │ │ ├── 45-lcms2.sh │ │ └── 50-libjxl.sh │ ├── 50-libmp3lame.sh │ ├── 50-libopus.sh │ ├── 50-libplacebo.sh │ ├── 50-librist/ │ │ ├── 40-mbedtls.sh │ │ └── 50-librist.sh │ ├── 50-libssh.sh │ ├── 50-libtheora.sh │ ├── 50-libvpx.sh │ ├── 50-libwebp.sh │ ├── 50-libzmq.sh │ ├── 50-lilv/ │ │ ├── 96-lv2.sh │ │ ├── 96-serd.sh │ │ ├── 96-zix.sh │ │ ├── 97-sord.sh │ │ ├── 98-sratom.sh │ │ └── 99-lilv.sh │ ├── 50-onevpl.sh │ ├── 50-openal.sh │ ├── 50-openapv.sh │ ├── 50-opencore-amr.sh │ ├── 50-openh264.sh │ ├── 50-openjpeg.sh │ ├── 50-openmpt.sh │ ├── 50-rav1e.sh │ ├── 50-rubberband.sh │ ├── 50-schannel.sh │ ├── 50-sdl.sh │ ├── 50-snappy.sh │ ├── 50-soxr.sh │ ├── 50-srt.sh │ ├── 50-svtav1.sh │ ├── 50-twolame.sh │ ├── 50-uavs3d.sh │ ├── 50-vaapi/ │ │ ├── 30-libpciaccess.sh │ │ ├── 40-libdrm.sh │ │ ├── 50-libva.sh │ │ └── 99-finalize.sh │ ├── 50-vidstab.sh │ ├── 50-vvenc.sh │ ├── 50-whisper.sh │ ├── 50-x264.sh │ ├── 50-x265.sh │ ├── 50-xavs2.sh │ ├── 50-xvid.sh │ ├── 50-zimg.sh │ ├── 50-zvbi.sh │ ├── 99-rpath.sh │ └── zz-final.sh ├── util/ │ ├── clean_cache.sh │ ├── dl_functions.sh │ ├── get_dl_cache_tag.sh │ ├── prunetags.sh │ ├── repack_latest.sh │ ├── run_stage.sh │ ├── update_scripts.sh │ ├── update_wiki.sh │ └── vars.sh └── variants/ ├── defaults-gpl-shared.sh ├── defaults-gpl.sh ├── defaults-lgpl-shared.sh ├── defaults-lgpl.sh ├── dl-only.sh ├── linux-install-shared.sh ├── linux-install-static.sh ├── linux32-gpl-shared.sh ├── linux32-gpl.sh ├── linux32-lgpl-shared.sh ├── linux32-lgpl.sh ├── linux32-nonfree-shared.sh ├── linux32-nonfree.sh ├── linux64-gpl-shared.sh ├── linux64-gpl.sh ├── linux64-lgpl-shared.sh ├── linux64-lgpl.sh ├── linux64-nonfree-shared.sh ├── linux64-nonfree.sh ├── linuxarm64-gpl-shared.sh ├── linuxarm64-gpl.sh ├── linuxarm64-lgpl-shared.sh ├── linuxarm64-lgpl.sh ├── linuxarm64-nonfree-shared.sh ├── linuxarm64-nonfree.sh ├── linuxmips64-gpl-shared.sh ├── linuxmips64-gpl.sh ├── linuxmips64-lgpl-shared.sh ├── linuxmips64-lgpl.sh ├── linuxmips64-nonfree-shared.sh ├── linuxmips64-nonfree.sh ├── linuxppc64-gpl-shared.sh ├── linuxppc64-gpl.sh ├── linuxppc64-lgpl-shared.sh ├── linuxppc64-lgpl.sh ├── linuxppc64-nonfree-shared.sh ├── linuxppc64-nonfree.sh ├── linuxriscv64-gpl-shared.sh ├── linuxriscv64-gpl.sh ├── linuxriscv64-lgpl-shared.sh ├── linuxriscv64-lgpl.sh ├── linuxriscv64-nonfree-shared.sh ├── linuxriscv64-nonfree.sh ├── win32-gpl-shared.sh ├── win32-gpl.sh ├── win32-lgpl-shared.sh ├── win32-lgpl.sh ├── win32-nonfree-shared.sh ├── win32-nonfree.sh ├── win64-gpl-shared.sh ├── win64-gpl.sh ├── win64-lgpl-shared.sh ├── win64-lgpl.sh ├── win64-nonfree-shared.sh ├── win64-nonfree.sh ├── winarm64-gpl-shared.sh ├── winarm64-gpl.sh ├── winarm64-lgpl-shared.sh ├── winarm64-lgpl.sh ├── winarm64-nonfree-shared.sh ├── winarm64-nonfree.sh ├── windows-install-shared.sh └── windows-install-static.sh