3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-30 23:02:18 +00:00
Brooklyn/drivers/media/platform/verisilicon/hantro_jpeg.h

16 lines
352 B
C
Raw Normal View History

2022-12-14 06:30:32 +00:00
/* SPDX-License-Identifier: GPL-2.0+ */
#define JPEG_HEADER_SIZE 624
#define JPEG_QUANT_SIZE 64
struct hantro_jpeg_ctx {
int width;
int height;
int quality;
unsigned char *buffer;
unsigned char hw_luma_qtable[JPEG_QUANT_SIZE];
unsigned char hw_chroma_qtable[JPEG_QUANT_SIZE];
};
void hantro_jpeg_header_assemble(struct hantro_jpeg_ctx *ctx);