From 447712afbd6f99f23c632a02932dbe9de435682b Mon Sep 17 00:00:00 2001 From: Marc Ferland Date: Tue, 26 Nov 2024 10:49:25 -0500 Subject: [PATCH] ffmpeg: make sure to enable x264 and vaapi KRdp will use x264 and VA-API to encode the screen using hardware acceleration. Make sure both of these options are enabled. Signed-off-by: Marc Ferland --- recipes-support/ffmpeg_%.bbappend | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 recipes-support/ffmpeg_%.bbappend diff --git a/recipes-support/ffmpeg_%.bbappend b/recipes-support/ffmpeg_%.bbappend new file mode 100644 index 0000000..bee3eea --- /dev/null +++ b/recipes-support/ffmpeg_%.bbappend @@ -0,0 +1,5 @@ +# For Krdp x264 support +PACKAGECONFIG:append = " x264 gpl" + +# For vaapi support (hardware encoding) +PACKAGECONFIG:append = " vaapi"