Add support for QSV with newer Intel iGPUs (#931)

This commit is contained in:
solidDoWant 2025-05-30 05:32:18 -05:00 committed by GitHub
parent 4f63f09566
commit 63df1baead
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,9 @@ RUN set -x && apt-get update \
# hwaccel dependencies # hwaccel dependencies
vainfo mesa-va-drivers \ vainfo mesa-va-drivers \
# intel hwaccel dependencies, not available everywhere # intel hwaccel dependencies, not available everywhere
$([ " $TARGETARCH" = " amd64" ] && echo "intel-media-va-driver-non-free i965-va-driver-shaders") \ # Install QSV packages required by ffmpeg here: https://trac.ffmpeg.org/wiki/Hardware/QuickSync
# libvpl2 is required for newer Intel iGPUs, such as those on Raptor Lake
$([ " $TARGETARCH" = " amd64" ] && echo "intel-media-va-driver-non-free i965-va-driver-shaders libmfx-gen1.2 libvpl2 libigfxcmrt7") \
# CA certificates for HTTPS to S3 buckets # CA certificates for HTTPS to S3 buckets
ca-certificates \ ca-certificates \
&& apt-get clean autoclean -y \ && apt-get clean autoclean -y \