Add vp8 and vp9 to --list-supported-video-codecs

This commit is contained in:
dec05eba
2024-07-06 01:44:58 +02:00
parent 6141fda5e2
commit 27a57e5053

View File

@@ -1646,6 +1646,10 @@ static void list_supported_video_codecs() {
puts("hevc"); puts("hevc");
if(find_av1_encoder(egl.gpu_info.vendor, card_path)) if(find_av1_encoder(egl.gpu_info.vendor, card_path))
puts("av1"); 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); fflush(stdout);