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:
authorMathieu Duponchelle <mathieu@centricular.com>2021-03-17 01:43:55 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-03-20 11:53:20 +0300
commitd9e727050cb4e3086c8c9d3e54fd6761ac5341fc (patch)
treec409ea556b8c7c735d6919b9df6044c122fb937f /ci
parent359c07203e277e7b5e8f5c3f97c73ddbf7729b7a (diff)
video: implement webp decoder around libwebp-sys2 crate
Unlike webpdec from -bad, this element inherits from GstElement and can decode animated webp data.
Diffstat (limited to 'ci')
-rw-r--r--ci/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/utils.py b/ci/utils.py
index 8951e4b05..dd5abae3d 100644
--- a/ci/utils.py
+++ b/ci/utils.py
@@ -2,7 +2,7 @@ import os
DIRS = ['audio', 'generic', 'net', 'text', 'utils', 'video']
# Plugins whose name is prefixed by 'rs'
-RS_PREFIXED = ['audiofx', 'closedcaption', 'dav1d', 'file', 'json', 'regex']
+RS_PREFIXED = ['audiofx', 'closedcaption', 'dav1d', 'file', 'json', 'regex', 'webp']
OVERRIDE = {'wrap': 'rstextwrap', 'flavors': 'rsflv'}