diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2024-02-16 17:16:36 +0000 |
---|---|---|
committer | GStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2024-02-17 11:00:01 +0000 |
commit | 83bf69cadc2311805a3a1e3ac59a6dbbef4169b5 (patch) | |
tree | 960f2a3ff2f649c00507803ba0c7748260cf60a1 | |
parent | 4e8ba9c9b649dbd8e057e18a4d731c8b668a51cf (diff) |
gst-plugins-rs: add inter and rtsp plugins
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1376>
-rw-r--r-- | recipes/gst-plugins-rs.recipe | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/recipes/gst-plugins-rs.recipe b/recipes/gst-plugins-rs.recipe index 705a294d..b598ab91 100644 --- a/recipes/gst-plugins-rs.recipe +++ b/recipes/gst-plugins-rs.recipe @@ -39,6 +39,7 @@ class Recipe(recipe.Recipe): 'gif', 'hlssink3', 'hsv', + 'inter', 'json', 'livesync', 'lewton', @@ -51,6 +52,7 @@ class Recipe(recipe.Recipe): 'raptorq', 'png', 'rtp', + 'rtsp', 'textahead', 'textwrap', 'threadshare', @@ -101,10 +103,10 @@ class Recipe(recipe.Recipe): self.deps.append('openssl') plugin_files = { - 'core': ['fallbackswitch', 'livesync', 'rstracers', 'threadshare', - 'togglerecord'], - 'net': ['aws', 'hlssink3', 'ndi', 'rsonvif', 'raptorq', 'rsrtp', - 'reqwest', 'webrtchttp', 'rswebrtc'], + 'core': ['fallbackswitch', 'livesync', 'rsinter', 'rstracers', + 'threadshare', 'togglerecord'], + 'net': ['aws', 'hlssink3', 'ndi', 'rsonvif', 'raptorq', 'reqwest', + 'rsrtp', 'rsrtsp', 'webrtchttp', 'rswebrtc'], 'effects': ['rsaudiofx', 'rsvideofx'], 'codecs': ['cdg', 'claxon', 'dav1d', 'rsclosedcaption', 'ffv1', 'fmp4', 'mp4', 'gif', 'hsv', 'lewton', 'rav1e', 'json', |