diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2023-06-01 16:04:39 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2023-06-02 10:51:03 +0100 |
commit | 153baa87e94b1db64679d25c33ac177b45cf0fc4 (patch) | |
tree | c01b6d758260469d1365d2f87da21da021893b5c /recipes/gstreamer-vaapi-1.0.recipe | |
parent | 56f848a2b5c2465b33ad96e6b7c58350054d2e6a (diff) |
vaapi: update vaapi variant/recipe for meson option changes
Fixes #432
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1195>
Diffstat (limited to 'recipes/gstreamer-vaapi-1.0.recipe')
-rw-r--r-- | recipes/gstreamer-vaapi-1.0.recipe | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/recipes/gstreamer-vaapi-1.0.recipe b/recipes/gstreamer-vaapi-1.0.recipe index 9b17951b..61fdf7ef 100644 --- a/recipes/gstreamer-vaapi-1.0.recipe +++ b/recipes/gstreamer-vaapi-1.0.recipe @@ -6,9 +6,9 @@ class Recipe(custom.GStreamer): btype = BuildType.MESON tarball_checksum = 'a27867062e8b69305fca5b7d3f13ed7c318b703e7d72756c94395bd305c7b32c' meson_options = {# auto enable plugins - 'with_encoders': 'auto', - 'with_drm': 'auto', - 'with_wayland': 'auto'} + 'encoders': 'auto', + 'drm': 'auto', + 'wayland': 'auto'} deps = ['gst-plugins-bad-1.0'] use_system_libs = True @@ -23,6 +23,6 @@ class Recipe(custom.GStreamer): def prepare(self): if self.config.variants.x11: - self.meson_options['with_x11'] = 'yes' + self.meson_options['x11'] = 'enabled' else: - self.meson_options['with_x11'] = 'auto' + self.meson_options['x11'] = 'auto' |