Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion camlibs/jl2005c/jl2005bcd_decompress.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jl2005bcd_decompress (unsigned char *output, unsigned char *input,
struct jpeg_error_mgr jcerr, jderr;
JOCTET *jpeg_header = NULL;
int outputsize = 0;
unsigned long jpeg_header_size = 0;
uint32_t jpeg_header_size = 0;
int i, x, y, x1, y1, jpeg_data_size, jpeg_data_idx, eoi, size, ret;
JSAMPLE green[8 * 16];
JSAMPLE red[8 * 8];
Expand Down
2 changes: 1 addition & 1 deletion camlibs/ptp2/chdk.c
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ static void yuv_live_to_jpeg(unsigned char *p_yuv,
struct jpeg_error_mgr jerr;
JSAMPROW row_ptr[1];
uint8_t *outbuf = NULL, *tmprowbuf = NULL;
unsigned long outlen = 0;
uint32_t outlen = 0;
unsigned int row_inc;
int sshift, dshift, xshift, skip;

Expand Down
Loading