diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-05-25 21:21:50 +0530 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2022-05-30 12:12:54 +0100 |
commit | 5962e91be2dcb5a24151ed146a1b5b59dc216444 (patch) | |
tree | a24e2dbc7ef2c55c608aa88456f9b1cb506e4840 /recipes | |
parent | 5517b240c1207473744ee58ece73130b96ee46d2 (diff) |
Add a variant to control building the JACK plugin
Similar to ALSA and Pulse, but not enabled by default.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/876>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gst-plugins-good-1.0.recipe | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/gst-plugins-good-1.0.recipe b/recipes/gst-plugins-good-1.0.recipe index 517f4923..2a715160 100644 --- a/recipes/gst-plugins-good-1.0.recipe +++ b/recipes/gst-plugins-good-1.0.recipe @@ -22,7 +22,6 @@ class Recipe(custom.GStreamer): 'aalib': 'disabled', 'dv1394': 'disabled', 'gtk3': 'disabled', - 'jack': 'disabled', 'libcaca': 'disabled', 'oss': 'disabled', 'oss4': 'disabled', @@ -232,9 +231,10 @@ class Recipe(custom.GStreamer): elif self.config.target_platform == Platform.IOS: self.meson_options['osxaudio'] = 'enabled' - self.enable_plugin('video4linux2', 'capture', 'v4l2', option='v4l2') - self.enable_plugin('ximagesrc', 'capture', 'x11') - self.enable_plugin('pulseaudio', 'sys', 'pulse', option='pulse') + self.enable_plugin('video4linux2', 'capture', variant='v4l2', option='v4l2') + self.enable_plugin('ximagesrc', 'capture', variant='x11') + self.enable_plugin('pulseaudio', 'sys', variant='pulse', option='pulse') + self.enable_plugin('jack', 'sys', variant='jack') # Enable qt5 plugin if possible and selected can_enable_qt5 = True |