aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-11-30 18:45:25 +0100
committerdec05eba <dec05eba@protonmail.com>2023-11-30 18:45:25 +0100
commitbe9bc05899f18d134290f45202226f676cb56bc0 (patch)
treec65996c35e3dcb373aedb9fe9e9d8ed5853e613b
parent84bc482c28a9198edc8a1377742b13be3a56c058 (diff)
Use h265 instead of hevc as arg
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 3629fd0..233b4f6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2307,7 +2307,7 @@ static GtkWidget* create_common_settings_page(GtkStack *stack, GtkApplication *a
if(supported_video_codecs.h264)
gtk_combo_box_text_append(video_codec_input_menu, "h264", "H264");
if(supported_video_codecs.hevc)
- gtk_combo_box_text_append(video_codec_input_menu, "hevc", "HEVC");
+ gtk_combo_box_text_append(video_codec_input_menu, "h265", "HEVC");
if(supported_video_codecs.av1)
gtk_combo_box_text_append(video_codec_input_menu, "av1", "AV1");
} else {