diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-06-24 20:56:22 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-06-24 20:56:22 +0530 |
commit | 6e2d8a3634b87c99cf54ef9cb976a75b21cbde9a (patch) | |
tree | c1118a590c99622f32e3e337321b02c878134ca0 /recipes/gst-plugins-ugly-1.0.recipe | |
parent | 1221243788ca9fa7c23eb365ea56a0fd56de3c6b (diff) |
gst-plugins-ugly: Disabling of plugins was for UWP, not MSVC
Typo.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/528>
Diffstat (limited to 'recipes/gst-plugins-ugly-1.0.recipe')
-rw-r--r-- | recipes/gst-plugins-ugly-1.0.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/gst-plugins-ugly-1.0.recipe b/recipes/gst-plugins-ugly-1.0.recipe index 42c8dcb1..9ca02224 100644 --- a/recipes/gst-plugins-ugly-1.0.recipe +++ b/recipes/gst-plugins-ugly-1.0.recipe @@ -48,10 +48,10 @@ class Recipe(custom.GStreamer): files_lang = ['gst-plugins-ugly-1.0'] def prepare(self): - if self.using_msvc() or self.config.target_platform in (Platform.ANDROID, Platform.IOS): + if self.using_uwp() or self.config.target_platform in (Platform.ANDROID, Platform.IOS): self.disable_plugin('dvdread', 'dvd', dep='libdvdread') - if self.using_msvc(): + if self.using_uwp(): self.disable_plugin('a52dec', 'codecs_restricted', dep='a52dec') self.disable_plugin('amrnb', 'codecs_restricted', dep='opencore-amr') self.disable_plugin('amrwbdec', 'codecs_restricted', dep='opencore-amr') |