aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-09-02 22:05:09 +0200
committerdec05eba <dec05eba@protonmail.com>2024-09-02 22:05:09 +0200
commit4f267e6f29c98259fea3a572778475f3bda9374e (patch)
treeeca8e5082596478d21b42f4419a18e74a232a256
parent8b7b75ef5b9789ecce4a216a081bd4f1beb15f6e (diff)
Text
-rw-r--r--README.md2
-rw-r--r--src/main.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 94c927e..ad83c73 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Run `sudo ./install.sh` or if you are running Arch Linux, then you can find gpu
You can also install gpu screen recorder (the gtk gui version) from [flathub](https://flathub.org/apps/details/com.dec05eba.gpu_screen_recorder). This flatpak includes gpu-screen-recorder so no need to install that first.
# Dependencies
-GPU Screen Recorder GTK uses meson build system so you need to install `meson` to build GPU Screen Recorder GTK:
+GPU Screen Recorder GTK uses meson build system so you need to install `meson` to build GPU Screen Recorder GTK.
## Build dependencies
These are the dependencies needed to build GPU Screen Recorder GTK:
diff --git a/src/main.cpp b/src/main.cpp
index b7d78ad..2b6cac9 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2758,7 +2758,7 @@ static GtkWidget* create_common_settings_page(GtkStack *stack, GtkApplication *a
gtk_list_store_set(store, &iter, 1, "auto", -1);
gtk_list_store_append(store, &iter);
- gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.h264 ? "H264 (Worst compression, best software compatibility)" : "H264 (Not available on your system)", -1);
+ gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.h264 ? "H264 (Largest file size, best software compatibility)" : "H264 (Not available on your system)", -1);
gtk_list_store_set(store, &iter, 1, "h264", -1);
gtk_list_store_append(store, &iter);
@@ -2766,7 +2766,7 @@ static GtkWidget* create_common_settings_page(GtkStack *stack, GtkApplication *a
gtk_list_store_set(store, &iter, 1, "hevc", -1);
gtk_list_store_append(store, &iter);
- gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.av1 ? "AV1 (Best compression, worst software compatibility)" : "AV1 (Not available on your system)", -1);
+ gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.av1 ? "AV1 (Smallest file size, worst software compatibility)" : "AV1 (Not available on your system)", -1);
gtk_list_store_set(store, &iter, 1, "av1", -1);
gtk_list_store_append(store, &iter);