add yu12 to supported pixel formats on linux

This commit is contained in:
Craig Raw 2025-11-05 07:51:26 +02:00
parent 2f62a9e9c8
commit 4774830ce4

View file

@ -7,6 +7,7 @@ public enum WebcamPixelFormat {
PIX_FMT_RGB24("RGB3", true),
PIX_FMT_YUYV("YUYV", true),
PIX_FMT_NV12("NV12", true),
PIX_FMT_YU12("YU12", true),
PIX_FMT_MJPG("MJPG", true);
private final String name;