From c3f23b3b72b72a4ad854732d0c8638e4db80a2b9 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 22 Aug 2023 00:39:21 +0200 Subject: Fallback to another video codec if the selected video codec is not auto and it's not supported --- src/main.cpp | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index bb33699..68b3c28 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1649,7 +1649,8 @@ int main(int argc, char **argv) { const double target_fps = 1.0 / (double)fps; - if(strcmp(video_codec_to_use, "auto") == 0) { + const bool video_codec_auto = strcmp(video_codec_to_use, "auto") == 0; + if(video_codec_auto) { if(gpu_inf.vendor == GSR_GPU_VENDOR_INTEL) { const AVCodec *h264_codec = find_h264_encoder(gpu_inf.vendor, card_path); if(!h264_codec) { @@ -1684,7 +1685,8 @@ int main(int argc, char **argv) { } //bool use_hevc = strcmp(window_str, "screen") == 0 || strcmp(window_str, "screen-direct") == 0; - if(video_codec != VideoCodec::H264 && strcmp(file_extension.c_str(), "flv") == 0) { + const bool is_flv = strcmp(file_extension.c_str(), "flv") == 0; + if(video_codec != VideoCodec::H264 && is_flv) { video_codec_to_use = "h264"; video_codec = VideoCodec::H264; fprintf(stderr, "Warning: h265 is not compatible with flv, falling back to h264 instead.\n"); @@ -1700,6 +1702,25 @@ int main(int argc, char **argv) { break; } + if(!video_codec_auto && !video_codec_f && !is_flv) { + switch(video_codec) { + case VideoCodec::H264: { + fprintf(stderr, "Warning: selected video codec h264 is not supported, trying h265 instead\n"); + video_codec_to_use = "h265"; + video_codec = VideoCodec::H265; + video_codec_f = find_h265_encoder(gpu_inf.vendor, card_path); + break; + } + case VideoCodec::H265: { + fprintf(stderr, "Warning: selected video codec h265 is not supported, trying h264 instead\n"); + video_codec_to_use = "h264"; + video_codec = VideoCodec::H264; + video_codec_f = find_h264_encoder(gpu_inf.vendor, card_path); + break; + } + } + } + if(!video_codec_f) { const char *video_codec_name = video_codec == VideoCodec::H264 ? "h264" : "h265"; fprintf(stderr, "Error: your gpu does not support '%s' video codec. If you are sure that your gpu does support '%s' video encoding and you are using an AMD/Intel GPU,\n" -- cgit v1.2.3