diff options
author | Seungha Yang <seungha@centricular.com> | 2021-03-03 19:57:38 +0900 |
---|---|---|
committer | Seungha Yang <seungha@centricular.com> | 2021-03-03 19:57:38 +0900 |
commit | 095c89bc2dbb699377e8d52d11e1c9838d853162 (patch) | |
tree | bae790f0431a7e59ffb5dd664432a821715c979e | |
parent | dece92ddb26c93502e0516865c7b6c2f3d896e33 (diff) |
gst-plugins-bad-1.0: Includes libgstd3d11-1.0 library
It's a new dependency for d3d11 (and optional for mediafoundation)
plugin.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/683>
-rw-r--r-- | recipes/gst-plugins-bad-1.0.recipe | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes/gst-plugins-bad-1.0.recipe b/recipes/gst-plugins-bad-1.0.recipe index 18d1efc7..3a650a6d 100644 --- a/recipes/gst-plugins-bad-1.0.recipe +++ b/recipes/gst-plugins-bad-1.0.recipe @@ -491,6 +491,9 @@ class Recipe(custom.GStreamer): if self.config.msvc_version == 'vs14': self.disable_plugin('d3d11', 'sys') + if self.meson_options['d3d11'] == 'enabled': + self.files_libs += ['libgstd3d11-1.0'] + if self.config.target_platform in (Platform.LINUX, Platform.DARWIN, Platform.IOS): self.meson_options['shm'] = 'enabled' |