Thibault Saunier 2025-08-14 22:39:51 -04:00
parent 3e291611b2
commit 90cc117095

View file

@ -1,5 +1,4 @@
import os
from warnings import warn
DIRS = [
'audio',
@ -39,9 +38,6 @@ OVERRIDE = {
def iterate_plugins():
for d in DIRS:
for name in os.listdir(d):
if 'skia' in name:
warn('Skipping skia, see https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/692')
continue
if name in RS_PREFIXED:
name = "rs{}".format(name)
else: