Camera: adjust output format

This commit is contained in:
李通洲
2024-02-04 13:41:08 +08:00
committed by Carter Li
parent eed5efabea
commit 13fa218e5a
+1 -1
View File
@@ -21,7 +21,7 @@ static void printDevice(FFCameraOptions* options, const FFCameraResult* device,
}
if (device->width > 0 && device->height > 0)
printf(" (%upx x %upx)\n", (unsigned) device->width, (unsigned) device->height);
printf(" (%ux%u px)\n", (unsigned) device->width, (unsigned) device->height);
else
putchar('\n');
}