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
path: root/ci
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 /ci
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 'ci')
-rw-r--r--ci/utils.py36
1 files changed, 28 insertions, 8 deletions
diff --git a/ci/utils.py b/ci/utils.py
index f3d48dd50..ce56e1da8 100644
--- a/ci/utils.py
+++ b/ci/utils.py
@@ -1,14 +1,34 @@
import os
-DIRS = ['audio', 'generic', 'net', 'text', 'utils', 'video']
+DIRS = [
+ 'audio',
+ 'generic',
+ 'mux',
+ 'net',
+ 'text',
+ 'utils',
+ 'video',
+]
+
# Plugins whose name is prefixed by 'rs'
-RS_PREFIXED = ['audiofx', 'closedcaption',
- 'dav1d', 'file', 'json', 'onvif', 'regex', 'webp']
-OVERRIDE = {'wrap': 'rstextwrap', 'flavors': 'rsflv',
- 'ahead': 'textahead', 'tracers': 'rstracers',
- 'webrtc-http': 'webrtchttp',
- 'webrtc': 'rswebrtc'
- }
+RS_PREFIXED = [
+ 'audiofx',
+ 'closedcaption',
+ 'file',
+ 'onvif',
+ 'webp',
+ 'videofx',
+ 'webrtc',
+ 'png',
+ 'tracers',
+ 'rtp',
+]
+
+OVERRIDE = {
+ 'ahead': 'textahead',
+ 'flavors': 'rsflv',
+ 'wrap': 'textwrap',
+}
def iterate_plugins():