CVSROOT: /cvs Module name: src Changes by: kir...@cvs.openbsd.org 2025/01/13 08:32:36
Modified files: sys/dev/usb : uvideo.c uvideo.h Log message: sys/uvideo: bypass unknown pixelformat to consumer The GUID format read from a camera usually begins with a null-terminated pixel format. Certain formats should be mapped, such as converting YUY2 to YUYV and I420 to YVU420, among others. Instead of rejecting unknown driver formats like M420, I bypass them to the consumer, which likely knows how to handle these formats. OK mglocker@