Fix .jpg vs .jpeg file extension for YUV captures

This commit is contained in:
Martijn Braam
2024-12-23 17:34:18 +01:00
parent 8fbea82b2b
commit 79eab3fe1a

View File

@@ -1050,7 +1050,7 @@ static void
process_image_for_capture_yuv(const uint8_t *image, int count) process_image_for_capture_yuv(const uint8_t *image, int count)
{ {
char fname[255]; char fname[255];
sprintf(fname, "%s/%d.jpeg", burst_dir, count); sprintf(fname, "%s/%d.jpg", burst_dir, count);
save_jpeg(image, fname); save_jpeg(image, fname);
} }