From 9fbba4d66aebbda551e562185cef12ea4119d2a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Wed, 13 Nov 2024 20:16:56 +0100 Subject: [PATCH] meson: Bump min required GStreamer version Setting "start-bitrate" property requires at least GStreamer 1.24. We do not want to introduce APIs that work only if user has a certain dependency version, thus this bump instead of version check. Related work on GStreamer side: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3894 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3895 Since these were contributed to GStreamer almost 2 years ago with the intention of using them in Clapper, I think its about time to start do so. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 377fe254..1d5298f3 100644 --- a/meson.build +++ b/meson.build @@ -9,7 +9,7 @@ project('clapper', 'c', ) glib_req = '>= 2.76.0' -gst_req = '>= 1.20.0' +gst_req = '>= 1.24.0' gtk4_req = '>= 4.10.0' adw_req = '>= 1.4.0'