We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7704fe1 commit a73ffaaCopy full SHA for a73ffaa
1 file changed
publish.py
@@ -12275,7 +12275,11 @@ def get_queue_config(lowlatency=False):
12275
12276
if v4l2_device_name:
12277
v4l2_device_name_l = v4l2_device_name.lower()
12278
- is_macrosilicon = ("macrosilicon" in v4l2_device_name_l) or ("ms2109" in v4l2_device_name_l)
+ is_macrosilicon = (
12279
+ ("macrosilicon" in v4l2_device_name_l)
12280
+ or ("ms2109" in v4l2_device_name_l)
12281
+ or (re.search(r"\((?:345f|534d):2109\)", v4l2_device_name_l) is not None)
12282
+ )
12283
12284
# Default to software JPEG decoding for known-problematic dongles.
12285
if is_macrosilicon and (not args.raw) and (not args.soft_jpeg):
0 commit comments