Allow both hevc and h265 (as alias)

This commit is contained in:
dec05eba
2023-11-30 17:47:04 +01:00
parent f9e067b828
commit 31e54bdc85
2 changed files with 3 additions and 3 deletions

View File

@@ -1436,12 +1436,12 @@ int main(int argc, char **argv) {
if(strcmp(video_codec_to_use, "h264") == 0) {
video_codec = VideoCodec::H264;
} else if(strcmp(video_codec_to_use, "h265") == 0) {
} else if(strcmp(video_codec_to_use, "h265") == 0 || strcmp(video_codec_to_use, "hevc") == 0) {
video_codec = VideoCodec::HEVC;
} else if(strcmp(video_codec_to_use, "av1") == 0) {
video_codec = VideoCodec::AV1;
} else if(strcmp(video_codec_to_use, "auto") != 0) {
fprintf(stderr, "Error: -k should either be either 'auto', 'h264', 'h265' or 'av1', got: '%s'\n", video_codec_to_use);
fprintf(stderr, "Error: -k should either be either 'auto', 'h264', 'h265', 'hevc' or 'av1', got: '%s'\n", video_codec_to_use);
usage();
}