1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
/*
* jpegsrc.c
*
* Copyright (C) 2022 Timo Kokkonen
* All Rights Reserved.
*
* Custom libjpeg "Source Manager" for reading from a file handle
* and optionally saving the input also into a memory buffer.
*
* $Id: e735d6876d81f024264d7cf4fe5551766038c74e $
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <jpeglib.h>
#include <jerror.h>
#include "jpegoptim.h"
#define STDIO_BUFFER_SIZE 4096
/* Custom jpeg source manager object */
typedef struct {
struct jpeg_source_mgr pub; /* public fields */
unsigned char **buf_ptr;
size_t *bufsize_ptr;
size_t *bufused_ptr;
size_t incsize;
unsigned char *buf;
size_t bufsize;
size_t bufused;
FILE *infile;
JOCTET *stdio_buffer;
boolean start_of_file;
} jpeg_custom_source_mgr;
typedef jpeg_custom_source_mgr* jpeg_custom_source_mgr_ptr;
void custom_init_source (j_decompress_ptr dinfo)
{
jpeg_custom_source_mgr_ptr src = (jpeg_custom_source_mgr_ptr) dinfo->src;
src->bufused = 0;
if (src->bufused_ptr)
*src->bufused_ptr = 0;
src->start_of_file = TRUE;
}
boolean custom_fill_input_buffer (j_decompress_ptr dinfo)
{
jpeg_custom_source_mgr_ptr src = (jpeg_custom_source_mgr_ptr) dinfo->src;
size_t bytes_read;
unsigned char *newbuf;
bytes_read = fread(src->stdio_buffer, 1, STDIO_BUFFER_SIZE, src->infile);
if (bytes_read <= 0) {
if (src->start_of_file)
ERREXIT(dinfo, JERR_INPUT_EMPTY);
WARNMS(dinfo, JWRN_JPEG_EOF);
/* Insert fake EOI marker if read failed */
src->stdio_buffer[0] = (JOCTET) 0xff;
src->stdio_buffer[1] = (JOCTET) JPEG_EOI;
bytes_read = 2;
} else if (src->buf_ptr && src->buf) {
if (bytes_read > (src->bufsize - src->bufused)) {
/* Need to allocate more memory for the buffer. */
src->bufsize += src->incsize;
newbuf = realloc(src->buf, src->bufsize);
if (!newbuf) ERREXIT1(dinfo, JERR_OUT_OF_MEMORY, 42);
src->buf = newbuf;
*src->buf_ptr = newbuf;
src->incsize *= 2;
}
memcpy(&src->buf[src->bufused], src->stdio_buffer, bytes_read);
src->bufused += bytes_read;
if (src->bufused_ptr)
*src->bufused_ptr = src->bufused;
}
src->pub.next_input_byte = src->stdio_buffer;
src->pub.bytes_in_buffer = bytes_read;
src->start_of_file = FALSE;
return TRUE;
}
void custom_skip_input_data (j_decompress_ptr dinfo, long num_bytes)
{
jpeg_custom_source_mgr_ptr src = (jpeg_custom_source_mgr_ptr) dinfo->src;
if (num_bytes <= 0)
return;
/* skip "num_bytes" bytes of data from input... */
while (num_bytes > (long) src->pub.bytes_in_buffer) {
num_bytes -= src->pub.bytes_in_buffer;
(void) custom_fill_input_buffer(dinfo);
}
src->pub.next_input_byte += (size_t) num_bytes;
src->pub.bytes_in_buffer -= (size_t) num_bytes;
}
void custom_term_source (j_decompress_ptr dinfo)
{
jpeg_custom_source_mgr_ptr src = (jpeg_custom_source_mgr_ptr) dinfo->src;
if (src->bufused_ptr)
*src->bufused_ptr = src->bufused;
}
void jpeg_custom_src(j_decompress_ptr dinfo, FILE *infile,
unsigned char **bufptr, size_t *bufsizeptr, size_t *bufusedptr, size_t incsize)
{
jpeg_custom_source_mgr_ptr src;
if (!dinfo->src) {
/* Allocate source manager object if needed */
dinfo->src = (struct jpeg_source_mgr *)
(*dinfo->mem->alloc_small) ((j_common_ptr) dinfo, JPOOL_PERMANENT,
sizeof(jpeg_custom_source_mgr));
src = (jpeg_custom_source_mgr_ptr) dinfo->src;
src->stdio_buffer = (JOCTET *)
(*dinfo->mem->alloc_small) ((j_common_ptr) dinfo, JPOOL_PERMANENT,
STDIO_BUFFER_SIZE * sizeof(JOCTET));
} else {
src = (jpeg_custom_source_mgr_ptr) dinfo->src;
}
src->pub.init_source = custom_init_source;
src->pub.fill_input_buffer = custom_fill_input_buffer;
src->pub.resync_to_restart = jpeg_resync_to_restart;
src->pub.term_source = custom_term_source;
src->infile = infile;
src->pub.bytes_in_buffer = 0;
src->pub.next_input_byte = NULL;
src->buf_ptr = bufptr;
src->buf = (bufptr ? *bufptr : NULL);
src->bufsize_ptr = bufsizeptr;
src->bufused_ptr = bufusedptr;
src->bufsize = (bufsizeptr ? *bufsizeptr : 0);
src->incsize = incsize;
}
/* eof :-) */
|