Improved logs and Settings for hardware gstreamer plugins

This commit is contained in:
Bruno Herbelin
2023-02-17 18:53:54 +01:00
parent e105022185
commit d25c17342b
3 changed files with 19 additions and 11 deletions

View File

@@ -163,6 +163,7 @@ struct RenderConfig
int custom_width, custom_height;
float fading;
bool gpu_decoding;
bool gpu_decoding_available;
RenderConfig() {
disabled = false;
@@ -175,6 +176,7 @@ struct RenderConfig
custom_height = 600;
fading = 0.0;
gpu_decoding = true;
gpu_decoding_available = false;
}
};