Skip to content

Commit 5bfee45

Browse files
committed
fix video option parsing which broke when adding options
must parse each item in the csv strings, and not try to parse or add the prefix to a csv string
1 parent 19484f8 commit 5bfee45

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

xpra/codecs/video.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ def filt(prefix: str, name: str,
120120
else:
121121
items = entry.split(",")
122122
for item in items:
123+
# "no-xxxx" -> "-xxxx"
124+
if item.startswith("no-"):
125+
item = item[2:]
123126
if item == "all":
124127
real_list += all_fn()
125128
else:
@@ -129,8 +132,6 @@ def filt(prefix: str, name: str,
129132
def ap(v: str) -> str:
130133
if v.startswith("-"):
131134
return "-"+autoprefix(prefix, v[1:])
132-
if v.startswith("no-"):
133-
return "-"+autoprefix(prefix, v[3:])
134135
parts = v.split(":", 1)
135136
if len(parts) == 1:
136137
return autoprefix(prefix, parts[0])
@@ -142,21 +143,22 @@ def apl(items: Iterable[str]) -> list[str]:
142143

143144
# when comparing, ignore options:
144145
def noopt(item_str: str):
145-
return item_str.split(":", 1)[0]
146+
return item_str.lstrip("-").split(":", 1)[0]
146147

147148
exclist = apl(x[1:] for x in real_list if x and x.startswith("-"))
148149
inclist = apl(x for x in real_list if x and not x.startswith("-"))
149150
if not inclist and exclist:
150151
inclist = apl(all_fn())
151152
lists = exclist + inclist
152153
all_list = apl(all_options)
153-
unknown = tuple(x for x in lists if noopt(ap(x)) not in CODEC_TO_MODULE and x.lower() != "none")
154+
unknown = tuple(x for x in lists if noopt(x) not in CODEC_TO_MODULE and x.lower() != "none")
154155
if unknown:
155156
log.warn(f"Warning: ignoring unknown {name}: "+csv(unknown))
156-
notfound = tuple(x for x in lists if (x and noopt(ap(x)) not in all_list and x not in unknown and x != "none"))
157+
notfound = tuple(x for x in lists if (x and noopt(x) not in all_list and x not in unknown and x != "none"))
157158
if notfound:
158159
log.warn(f"Warning: {name} not found: "+csv(notfound))
159-
allowed = apl(x for x in inclist if x not in exclist and x != "none")
160+
allowed = apl(x for x in inclist if x in all_list and x not in exclist and x != "none")
161+
# log(f"{inclist=}, {exclist=}, {all_list=} -> {allowed=}")
160162
# now we can parse individual entries:
161163
values = {}
162164
for entry in allowed:

0 commit comments

Comments
 (0)