aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-08-22 00:39:21 +0200
committerdec05eba <dec05eba@protonmail.com>2023-08-22 00:39:21 +0200
commitc3f23b3b72b72a4ad854732d0c8638e4db80a2b9 (patch)
treeed9ff28b0acfbdc7ac8ad74f839f01991a38d24b /src/main.cpp
parent3acc7e597278f040d46ddecf5d620a58b899bbca (diff)
Fallback to another video codec if the selected video codec is not auto and it's not supported
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp25
1 files changed, 23 insertions, 2 deletions
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"