From 27a57e50537ab3bf45b76ea2f080b5f8d7044fcd Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 6 Jul 2024 01:44:58 +0200 Subject: Add vp8 and vp9 to --list-supported-video-codecs --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 9ff8563..1df1044 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1646,6 +1646,10 @@ static void list_supported_video_codecs() { puts("hevc"); if(find_av1_encoder(egl.gpu_info.vendor, card_path)) puts("av1"); + if(find_vp8_encoder(egl.gpu_info.vendor, card_path)) + puts("vp8"); + if(find_vp9_encoder(egl.gpu_info.vendor, card_path)) + puts("vp9"); fflush(stdout); -- cgit v1.2.3