Write YUV frames to jpeg directly instead of DNG

This commit is contained in:
Martijn Braam
2024-01-18 03:12:57 +01:00
parent e0e94a62b2
commit dbacf8a005
3 changed files with 110 additions and 2 deletions

View File

@@ -16,6 +16,7 @@
#include "dcp.h"
#include "gl_util.h"
#include "libdng.h"
#include <jpeglib.h>
#include <sys/mman.h>
#include <sys/prctl.h>
@@ -481,7 +482,92 @@ process_image_for_preview(const uint8_t *image)
}
static void
process_image_for_capture(const uint8_t *image, int count)
process_image_for_capture_yuv(const uint8_t *image, int count)
{
char fname[255];
sprintf(fname, "%s/%d.jpg", burst_dir, count);
FILE *outfile;
if ((outfile = fopen(fname, "wb")) == NULL) {
g_printerr("jpeg open %s: error %d, %s\n",
fname,
errno,
strerror(errno));
return;
}
int width = state_proc.mode->width;
struct jpeg_compress_struct cinfo;
struct jpeg_error_mgr jerr;
cinfo.err = jpeg_std_error(&jerr);
jpeg_create_compress(&cinfo);
jpeg_stdio_dest(&cinfo, outfile);
cinfo.image_width = state_proc.mode->width & -1;
cinfo.image_height = state_proc.mode->height & -1;
cinfo.input_components = 3;
cinfo.in_color_space = JCS_YCbCr;
jpeg_set_defaults(&cinfo);
jpeg_set_quality(&cinfo, 92, TRUE);
jpeg_start_compress(&cinfo, TRUE);
uint8_t *row = malloc(width * 3);
JSAMPROW row_pointer[1];
row_pointer[0] = row;
unsigned int y1 = 0;
unsigned int u = 1;
unsigned int y2 = 2;
unsigned int v = 3;
switch (state_proc.mode->v4l_pixfmt) {
case V4L2_PIX_FMT_UYVY:
u = 0;
y1 = 1;
v = 2;
y2 = 3;
break;
case V4L2_PIX_FMT_YUYV:
y1 = 0;
u = 1;
y2 = 2;
v = 3;
break;
case V4L2_PIX_FMT_YVYU:
y1 = 0;
v = 1;
y2 = 2;
u = 3;
break;
case V4L2_PIX_FMT_VYUY:
v = 0;
y1 = 1;
u = 2;
y2 = 3;
break;
}
while (cinfo.next_scanline < cinfo.image_height) {
unsigned int i, j = 0;
unsigned int offset = cinfo.next_scanline * cinfo.image_width * 2;
for (i = 0; i < cinfo.image_width * 2; i += 4) {
row[j + 0] = image[offset + i + y1];
row[j + 1] = image[offset + i + u];
row[j + 2] = image[offset + i + v];
row[j + 3] = image[offset + i + y2];
row[j + 4] = image[offset + i + u];
row[j + 5] = image[offset + i + v];
j += 6;
}
jpeg_write_scanlines(&cinfo, row_pointer, 1);
}
jpeg_finish_compress(&cinfo);
fclose(outfile);
jpeg_destroy_compress(&cinfo);
}
static void
process_image_for_capture_bayer(const uint8_t *image, int count)
{
char fname[255];
sprintf(fname, "%s/%d.dng", burst_dir, count);
@@ -580,6 +666,22 @@ process_image_for_capture(const uint8_t *image, int count)
*/
}
static void
process_image_for_capture(const uint8_t *image, int count)
{
switch (state_proc.mode->v4l_pixfmt) {
case V4L2_PIX_FMT_UYVY:
case V4L2_PIX_FMT_YUYV:
case V4L2_PIX_FMT_YVYU:
case V4L2_PIX_FMT_VYUY:
process_image_for_capture_yuv(image, count);
break;
default:
process_image_for_capture_bayer(image, count);
break;
}
}
static void
post_process_finished(GSubprocess *proc, GAsyncResult *res, GdkTexture *thumb)
{