diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2021-10-14 19:23:32 +0100 |
---|---|---|
committer | GStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2021-10-19 00:17:54 +0000 |
commit | a92243748207a49f088f707683bdf59efba74240 (patch) | |
tree | 3635cd64c5c922a7ee692c63fa5cf9f80fa97fab | |
parent | f875214f74e19466f9f5298ef6555459399bff6c (diff) |
recipes: gst-plugins-bad, gst-plugins-ugly: update for explicit GPL opt-in
See https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1084
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/754>
-rw-r--r-- | recipes/gst-plugins-bad-1.0.recipe | 3 | ||||
-rw-r--r-- | recipes/gst-plugins-ugly-1.0.recipe | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/recipes/gst-plugins-bad-1.0.recipe b/recipes/gst-plugins-bad-1.0.recipe index 8ab4f18b..815f619f 100644 --- a/recipes/gst-plugins-bad-1.0.recipe +++ b/recipes/gst-plugins-bad-1.0.recipe @@ -8,7 +8,8 @@ class Recipe(custom.GStreamer): tarball_checksum = '5382f98a9af2c92e5c0ca4fcb3911025cafd9f89b3142b206eb7b92b812e0979' # Explicitly enable plugins that we provide dependencies for to ensure that # we error out if they weren't found. - meson_options = {# enabled plugins + meson_options = {'gpl': 'enabled', + # enabled plugins 'assrender': 'enabled', 'bz2': 'enabled', 'closedcaption': 'enabled', diff --git a/recipes/gst-plugins-ugly-1.0.recipe b/recipes/gst-plugins-ugly-1.0.recipe index 45e4b9bd..765d35ae 100644 --- a/recipes/gst-plugins-ugly-1.0.recipe +++ b/recipes/gst-plugins-ugly-1.0.recipe @@ -5,7 +5,9 @@ class Recipe(custom.GStreamer): name = 'gst-plugins-ugly-1.0' btype = BuildType.MESON tarball_checksum = 'f2a0fcf9fa0e74fe2598b19d25ee03b65256accccd9562a2420100f230329fdf' - meson_options = {'a52dec': 'enabled', + meson_options = {'gpl': 'enabled', + # enabled plugins + 'a52dec': 'enabled', 'amrnb': 'enabled', 'amrwbdec': 'enabled', 'dvdread': 'enabled', |