Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-10-23 12:13:23 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-10-23 20:25:08 +0300
commit20ad9175d8e58f2285e709b576efdc822b009577 (patch)
tree93b9efad97196b6411efd36a05ce6b3e8411222d /meson.build
parent45168639e9d7e850350202db5064d8be05daf576 (diff)
Make GStreamer plugin/crate/library/directory names and descriptions consistent
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/238
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build12
1 files changed, 6 insertions, 6 deletions
diff --git a/meson.build b/meson.build
index a0aa1289e..e8d7a14c6 100644
--- a/meson.build
+++ b/meson.build
@@ -61,9 +61,9 @@ plugins = {
'gst-plugin-webrtc': 'libgstrswebrtc',
'gst-plugin-textahead': 'libgsttextahead',
- 'gst-plugin-json': 'libgstrsjson',
- 'gst-plugin-regex': 'libgstrsregex',
- 'gst-plugin-textwrap': 'libgstrstextwrap',
+ 'gst-plugin-json': 'libgstjson',
+ 'gst-plugin-regex': 'libgstregex',
+ 'gst-plugin-textwrap': 'libgsttextwrap',
'gst-plugin-fallbackswitch': 'libgstfallbackswitch',
'gst-plugin-togglerecord': 'libgsttogglerecord',
@@ -78,8 +78,8 @@ plugins = {
'gst-plugin-gif': 'libgstgif',
# gtk4 has an external dependency, see below
'gst-plugin-hsv': 'libgsthsv',
+ 'gst-plugin-png': 'libgstrspng',
'gst-plugin-rav1e': 'libgstrav1e',
- 'gst-plugin-rspng': 'libgstrspng',
# videofx has an external dependency, see below
# FIXME: libwebp-sys2 will build its bundled version on msvc and apple platforms
@@ -90,7 +90,7 @@ plugins = {
extra_env = {}
if dependency('cairo-gobject', required : get_option('videofx')).found()
- plugins += {'gst-plugin-videofx': 'libgstvideofx',}
+ plugins += {'gst-plugin-videofx': 'libgstrsvideofx',}
endif
if dependency('pangocairo', required : get_option('closedcaption')).found()
@@ -98,7 +98,7 @@ if dependency('pangocairo', required : get_option('closedcaption')).found()
endif
if dependency('dav1d', version : '>= 1.0.0', required : get_option('dav1d')).found()
- plugins += {'gst-plugin-dav1d' : 'libgstrsdav1d'}
+ plugins += {'gst-plugin-dav1d' : 'libgstdav1d'}
endif
sodium = get_option ('sodium')