|
static void | jpeg_buffer_src (j_decompress_ptr cinfo, unsigned char *buffer, long num) |
|
static void | jpeg_buffer_dest (j_compress_ptr cinfo, unsigned char *buffer, long len) |
|
static void | jpeg_skip_ff (j_decompress_ptr cinfo) |
|
static void | init_source (j_decompress_ptr cinfo) |
|
static boolean | fill_input_buffer (j_decompress_ptr cinfo) |
|
static void | skip_input_data (j_decompress_ptr cinfo, long num_bytes) |
|
static void | term_source (j_decompress_ptr cinfo) |
|
static void | init_destination (j_compress_ptr cinfo) |
|
static boolean | empty_output_buffer (j_compress_ptr cinfo) |
|
static void | term_destination (j_compress_ptr cinfo) |
|
static void | my_error_exit (j_common_ptr cinfo) |
|
static void | my_emit_message (j_common_ptr cinfo, int msg_level) |
|
static void | add_huff_table (j_decompress_ptr dinfo, JHUFF_TBL **htblptr, const UINT8 *bits, const UINT8 *val) |
|
static void | std_huff_tables (j_decompress_ptr dinfo) |
|
static void | guarantee_huff_tables (j_decompress_ptr dinfo) |
|
int | decode_jpeg_raw (unsigned char *jpeg_data, int len, int itype, int ctype, unsigned int width, unsigned int height, unsigned char *raw0, unsigned char *raw1, unsigned char *raw2) |
| decode JPEG buffer More...
|
|
int | decode_jpeg_gray_raw (unsigned char *jpeg_data, int len, int itype, int ctype, unsigned int width, unsigned int height, unsigned char *raw0, unsigned char *raw1, unsigned char *raw2) |
| decode JPEG raw gray buffer More...
|
|
int | encode_jpeg_raw (unsigned char *jpeg_data, int len, int quality, int itype, int ctype, unsigned int width, unsigned int height, unsigned char *raw0, unsigned char *raw1, unsigned char *raw2) |
| encode raw JPEG buffer More...
|
|
int | decode_jpeg_rgb (unsigned char *inBuffer, unsigned long inSize, uint8_t **memptr, size_t *memsize, int *naxis, int *w, int *h) |
| decode_jpeg_rgb Read jpeg in memory buffer and produce RGB image More...
|
|