mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 15:02:20 +00:00
[CHG] libjpeg updated to version 8c
This commit is contained in:
parent
38a8a153e4
commit
05adb413a2
6 changed files with 346 additions and 299 deletions
|
@ -1,187 +1,187 @@
|
||||||
/*
|
/*
|
||||||
* cdjpeg.h
|
* cdjpeg.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 1994-1997, Thomas G. Lane.
|
* Copyright (C) 1994-1997, Thomas G. Lane.
|
||||||
* This file is part of the Independent JPEG Group's software.
|
* This file is part of the Independent JPEG Group's software.
|
||||||
* For conditions of distribution and use, see the accompanying README file.
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
*
|
*
|
||||||
* This file contains common declarations for the sample applications
|
* This file contains common declarations for the sample applications
|
||||||
* cjpeg and djpeg. It is NOT used by the core JPEG library.
|
* cjpeg and djpeg. It is NOT used by the core JPEG library.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define JPEG_CJPEG_DJPEG /* define proper options in jconfig.h */
|
#define JPEG_CJPEG_DJPEG /* define proper options in jconfig.h */
|
||||||
#define JPEG_INTERNAL_OPTIONS /* cjpeg.c,djpeg.c need to see xxx_SUPPORTED */
|
#define JPEG_INTERNAL_OPTIONS /* cjpeg.c,djpeg.c need to see xxx_SUPPORTED */
|
||||||
#include "jinclude.h"
|
#include "jinclude.h"
|
||||||
#include "jpeglib.h"
|
#include "jpeglib.h"
|
||||||
#include "jerror.h" /* get library error codes too */
|
#include "jerror.h" /* get library error codes too */
|
||||||
#include "cderror.h" /* get application-specific error codes */
|
#include "cderror.h" /* get application-specific error codes */
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Object interface for cjpeg's source file decoding modules
|
* Object interface for cjpeg's source file decoding modules
|
||||||
*/
|
*/
|
||||||
|
|
||||||
typedef struct cjpeg_source_struct * cjpeg_source_ptr;
|
typedef struct cjpeg_source_struct * cjpeg_source_ptr;
|
||||||
|
|
||||||
struct cjpeg_source_struct {
|
struct cjpeg_source_struct {
|
||||||
JMETHOD(void, start_input, (j_compress_ptr cinfo,
|
JMETHOD(void, start_input, (j_compress_ptr cinfo,
|
||||||
cjpeg_source_ptr sinfo));
|
cjpeg_source_ptr sinfo));
|
||||||
JMETHOD(JDIMENSION, get_pixel_rows, (j_compress_ptr cinfo,
|
JMETHOD(JDIMENSION, get_pixel_rows, (j_compress_ptr cinfo,
|
||||||
cjpeg_source_ptr sinfo));
|
cjpeg_source_ptr sinfo));
|
||||||
JMETHOD(void, finish_input, (j_compress_ptr cinfo,
|
JMETHOD(void, finish_input, (j_compress_ptr cinfo,
|
||||||
cjpeg_source_ptr sinfo));
|
cjpeg_source_ptr sinfo));
|
||||||
|
|
||||||
FILE *input_file;
|
FILE *input_file;
|
||||||
|
|
||||||
JSAMPARRAY buffer;
|
JSAMPARRAY buffer;
|
||||||
JDIMENSION buffer_height;
|
JDIMENSION buffer_height;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Object interface for djpeg's output file encoding modules
|
* Object interface for djpeg's output file encoding modules
|
||||||
*/
|
*/
|
||||||
|
|
||||||
typedef struct djpeg_dest_struct * djpeg_dest_ptr;
|
typedef struct djpeg_dest_struct * djpeg_dest_ptr;
|
||||||
|
|
||||||
struct djpeg_dest_struct {
|
struct djpeg_dest_struct {
|
||||||
/* start_output is called after jpeg_start_decompress finishes.
|
/* start_output is called after jpeg_start_decompress finishes.
|
||||||
* The color map will be ready at this time, if one is needed.
|
* The color map will be ready at this time, if one is needed.
|
||||||
*/
|
*/
|
||||||
JMETHOD(void, start_output, (j_decompress_ptr cinfo,
|
JMETHOD(void, start_output, (j_decompress_ptr cinfo,
|
||||||
djpeg_dest_ptr dinfo));
|
djpeg_dest_ptr dinfo));
|
||||||
/* Emit the specified number of pixel rows from the buffer. */
|
/* Emit the specified number of pixel rows from the buffer. */
|
||||||
JMETHOD(void, put_pixel_rows, (j_decompress_ptr cinfo,
|
JMETHOD(void, put_pixel_rows, (j_decompress_ptr cinfo,
|
||||||
djpeg_dest_ptr dinfo,
|
djpeg_dest_ptr dinfo,
|
||||||
JDIMENSION rows_supplied));
|
JDIMENSION rows_supplied));
|
||||||
/* Finish up at the end of the image. */
|
/* Finish up at the end of the image. */
|
||||||
JMETHOD(void, finish_output, (j_decompress_ptr cinfo,
|
JMETHOD(void, finish_output, (j_decompress_ptr cinfo,
|
||||||
djpeg_dest_ptr dinfo));
|
djpeg_dest_ptr dinfo));
|
||||||
|
|
||||||
/* Target file spec; filled in by djpeg.c after object is created. */
|
/* Target file spec; filled in by djpeg.c after object is created. */
|
||||||
FILE * output_file;
|
FILE * output_file;
|
||||||
|
|
||||||
/* Output pixel-row buffer. Created by module init or start_output.
|
/* Output pixel-row buffer. Created by module init or start_output.
|
||||||
* Width is cinfo->output_width * cinfo->output_components;
|
* Width is cinfo->output_width * cinfo->output_components;
|
||||||
* height is buffer_height.
|
* height is buffer_height.
|
||||||
*/
|
*/
|
||||||
JSAMPARRAY buffer;
|
JSAMPARRAY buffer;
|
||||||
JDIMENSION buffer_height;
|
JDIMENSION buffer_height;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* cjpeg/djpeg may need to perform extra passes to convert to or from
|
* cjpeg/djpeg may need to perform extra passes to convert to or from
|
||||||
* the source/destination file format. The JPEG library does not know
|
* the source/destination file format. The JPEG library does not know
|
||||||
* about these passes, but we'd like them to be counted by the progress
|
* about these passes, but we'd like them to be counted by the progress
|
||||||
* monitor. We use an expanded progress monitor object to hold the
|
* monitor. We use an expanded progress monitor object to hold the
|
||||||
* additional pass count.
|
* additional pass count.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct cdjpeg_progress_mgr {
|
struct cdjpeg_progress_mgr {
|
||||||
struct jpeg_progress_mgr pub; /* fields known to JPEG library */
|
struct jpeg_progress_mgr pub; /* fields known to JPEG library */
|
||||||
int completed_extra_passes; /* extra passes completed */
|
int completed_extra_passes; /* extra passes completed */
|
||||||
int total_extra_passes; /* total extra */
|
int total_extra_passes; /* total extra */
|
||||||
/* last printed percentage stored here to avoid multiple printouts */
|
/* last printed percentage stored here to avoid multiple printouts */
|
||||||
int percent_done;
|
int percent_done;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct cdjpeg_progress_mgr * cd_progress_ptr;
|
typedef struct cdjpeg_progress_mgr * cd_progress_ptr;
|
||||||
|
|
||||||
|
|
||||||
/* Short forms of external names for systems with brain-damaged linkers. */
|
/* Short forms of external names for systems with brain-damaged linkers. */
|
||||||
|
|
||||||
#ifdef NEED_SHORT_EXTERNAL_NAMES
|
#ifdef NEED_SHORT_EXTERNAL_NAMES
|
||||||
#define jinit_read_bmp jIRdBMP
|
#define jinit_read_bmp jIRdBMP
|
||||||
#define jinit_write_bmp jIWrBMP
|
#define jinit_write_bmp jIWrBMP
|
||||||
#define jinit_read_gif jIRdGIF
|
#define jinit_read_gif jIRdGIF
|
||||||
#define jinit_write_gif jIWrGIF
|
#define jinit_write_gif jIWrGIF
|
||||||
#define jinit_read_ppm jIRdPPM
|
#define jinit_read_ppm jIRdPPM
|
||||||
#define jinit_write_ppm jIWrPPM
|
#define jinit_write_ppm jIWrPPM
|
||||||
#define jinit_read_rle jIRdRLE
|
#define jinit_read_rle jIRdRLE
|
||||||
#define jinit_write_rle jIWrRLE
|
#define jinit_write_rle jIWrRLE
|
||||||
#define jinit_read_targa jIRdTarga
|
#define jinit_read_targa jIRdTarga
|
||||||
#define jinit_write_targa jIWrTarga
|
#define jinit_write_targa jIWrTarga
|
||||||
#define read_quant_tables RdQTables
|
#define read_quant_tables RdQTables
|
||||||
#define read_scan_script RdScnScript
|
#define read_scan_script RdScnScript
|
||||||
#define set_quality_ratings SetQRates
|
#define set_quality_ratings SetQRates
|
||||||
#define set_quant_slots SetQSlots
|
#define set_quant_slots SetQSlots
|
||||||
#define set_sample_factors SetSFacts
|
#define set_sample_factors SetSFacts
|
||||||
#define read_color_map RdCMap
|
#define read_color_map RdCMap
|
||||||
#define enable_signal_catcher EnSigCatcher
|
#define enable_signal_catcher EnSigCatcher
|
||||||
#define start_progress_monitor StProgMon
|
#define start_progress_monitor StProgMon
|
||||||
#define end_progress_monitor EnProgMon
|
#define end_progress_monitor EnProgMon
|
||||||
#define read_stdin RdStdin
|
#define read_stdin RdStdin
|
||||||
#define write_stdout WrStdout
|
#define write_stdout WrStdout
|
||||||
#endif /* NEED_SHORT_EXTERNAL_NAMES */
|
#endif /* NEED_SHORT_EXTERNAL_NAMES */
|
||||||
|
|
||||||
/* Module selection routines for I/O modules. */
|
/* Module selection routines for I/O modules. */
|
||||||
|
|
||||||
EXTERN(cjpeg_source_ptr) jinit_read_bmp JPP((j_compress_ptr cinfo));
|
EXTERN(cjpeg_source_ptr) jinit_read_bmp JPP((j_compress_ptr cinfo));
|
||||||
EXTERN(djpeg_dest_ptr) jinit_write_bmp JPP((j_decompress_ptr cinfo,
|
EXTERN(djpeg_dest_ptr) jinit_write_bmp JPP((j_decompress_ptr cinfo,
|
||||||
boolean is_os2));
|
boolean is_os2));
|
||||||
EXTERN(cjpeg_source_ptr) jinit_read_gif JPP((j_compress_ptr cinfo));
|
EXTERN(cjpeg_source_ptr) jinit_read_gif JPP((j_compress_ptr cinfo));
|
||||||
EXTERN(djpeg_dest_ptr) jinit_write_gif JPP((j_decompress_ptr cinfo));
|
EXTERN(djpeg_dest_ptr) jinit_write_gif JPP((j_decompress_ptr cinfo));
|
||||||
EXTERN(cjpeg_source_ptr) jinit_read_ppm JPP((j_compress_ptr cinfo));
|
EXTERN(cjpeg_source_ptr) jinit_read_ppm JPP((j_compress_ptr cinfo));
|
||||||
EXTERN(djpeg_dest_ptr) jinit_write_ppm JPP((j_decompress_ptr cinfo));
|
EXTERN(djpeg_dest_ptr) jinit_write_ppm JPP((j_decompress_ptr cinfo));
|
||||||
EXTERN(cjpeg_source_ptr) jinit_read_rle JPP((j_compress_ptr cinfo));
|
EXTERN(cjpeg_source_ptr) jinit_read_rle JPP((j_compress_ptr cinfo));
|
||||||
EXTERN(djpeg_dest_ptr) jinit_write_rle JPP((j_decompress_ptr cinfo));
|
EXTERN(djpeg_dest_ptr) jinit_write_rle JPP((j_decompress_ptr cinfo));
|
||||||
EXTERN(cjpeg_source_ptr) jinit_read_targa JPP((j_compress_ptr cinfo));
|
EXTERN(cjpeg_source_ptr) jinit_read_targa JPP((j_compress_ptr cinfo));
|
||||||
EXTERN(djpeg_dest_ptr) jinit_write_targa JPP((j_decompress_ptr cinfo));
|
EXTERN(djpeg_dest_ptr) jinit_write_targa JPP((j_decompress_ptr cinfo));
|
||||||
|
|
||||||
/* cjpeg support routines (in rdswitch.c) */
|
/* cjpeg support routines (in rdswitch.c) */
|
||||||
|
|
||||||
EXTERN(boolean) read_quant_tables JPP((j_compress_ptr cinfo, char * filename,
|
EXTERN(boolean) read_quant_tables JPP((j_compress_ptr cinfo, char * filename,
|
||||||
boolean force_baseline));
|
boolean force_baseline));
|
||||||
EXTERN(boolean) read_scan_script JPP((j_compress_ptr cinfo, char * filename));
|
EXTERN(boolean) read_scan_script JPP((j_compress_ptr cinfo, char * filename));
|
||||||
EXTERN(boolean) set_quality_ratings JPP((j_compress_ptr cinfo, char *arg,
|
EXTERN(boolean) set_quality_ratings JPP((j_compress_ptr cinfo, char *arg,
|
||||||
boolean force_baseline));
|
boolean force_baseline));
|
||||||
EXTERN(boolean) set_quant_slots JPP((j_compress_ptr cinfo, char *arg));
|
EXTERN(boolean) set_quant_slots JPP((j_compress_ptr cinfo, char *arg));
|
||||||
EXTERN(boolean) set_sample_factors JPP((j_compress_ptr cinfo, char *arg));
|
EXTERN(boolean) set_sample_factors JPP((j_compress_ptr cinfo, char *arg));
|
||||||
|
|
||||||
/* djpeg support routines (in rdcolmap.c) */
|
/* djpeg support routines (in rdcolmap.c) */
|
||||||
|
|
||||||
EXTERN(void) read_color_map JPP((j_decompress_ptr cinfo, FILE * infile));
|
EXTERN(void) read_color_map JPP((j_decompress_ptr cinfo, FILE * infile));
|
||||||
|
|
||||||
/* common support routines (in cdjpeg.c) */
|
/* common support routines (in cdjpeg.c) */
|
||||||
|
|
||||||
EXTERN(void) enable_signal_catcher JPP((j_common_ptr cinfo));
|
EXTERN(void) enable_signal_catcher JPP((j_common_ptr cinfo));
|
||||||
EXTERN(void) start_progress_monitor JPP((j_common_ptr cinfo,
|
EXTERN(void) start_progress_monitor JPP((j_common_ptr cinfo,
|
||||||
cd_progress_ptr progress));
|
cd_progress_ptr progress));
|
||||||
EXTERN(void) end_progress_monitor JPP((j_common_ptr cinfo));
|
EXTERN(void) end_progress_monitor JPP((j_common_ptr cinfo));
|
||||||
EXTERN(boolean) keymatch JPP((char * arg, const char * keyword, int minchars));
|
EXTERN(boolean) keymatch JPP((char * arg, const char * keyword, int minchars));
|
||||||
EXTERN(FILE *) read_stdin JPP((void));
|
EXTERN(FILE *) read_stdin JPP((void));
|
||||||
EXTERN(FILE *) write_stdout JPP((void));
|
EXTERN(FILE *) write_stdout JPP((void));
|
||||||
|
|
||||||
/* miscellaneous useful macros */
|
/* miscellaneous useful macros */
|
||||||
|
|
||||||
#ifdef DONT_USE_B_MODE /* define mode parameters for fopen() */
|
#ifdef DONT_USE_B_MODE /* define mode parameters for fopen() */
|
||||||
#define READ_BINARY "r"
|
#define READ_BINARY "r"
|
||||||
#define WRITE_BINARY "w"
|
#define WRITE_BINARY "w"
|
||||||
#else
|
#else
|
||||||
#ifdef VMS /* VMS is very nonstandard */
|
#ifdef VMS /* VMS is very nonstandard */
|
||||||
#define READ_BINARY "rb", "ctx=stm"
|
#define READ_BINARY "rb", "ctx=stm"
|
||||||
#define WRITE_BINARY "wb", "ctx=stm"
|
#define WRITE_BINARY "wb", "ctx=stm"
|
||||||
#else /* standard ANSI-compliant case */
|
#else /* standard ANSI-compliant case */
|
||||||
#define READ_BINARY "rb"
|
#define READ_BINARY "rb"
|
||||||
#define WRITE_BINARY "wb"
|
#define WRITE_BINARY "wb"
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef EXIT_FAILURE /* define exit() codes if not provided */
|
#ifndef EXIT_FAILURE /* define exit() codes if not provided */
|
||||||
#define EXIT_FAILURE 1
|
#define EXIT_FAILURE 1
|
||||||
#endif
|
#endif
|
||||||
#ifndef EXIT_SUCCESS
|
#ifndef EXIT_SUCCESS
|
||||||
#ifdef VMS
|
#ifdef VMS
|
||||||
#define EXIT_SUCCESS 1 /* VMS is very nonstandard */
|
#define EXIT_SUCCESS 1 /* VMS is very nonstandard */
|
||||||
#else
|
#else
|
||||||
#define EXIT_SUCCESS 0
|
#define EXIT_SUCCESS 0
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#ifndef EXIT_WARNING
|
#ifndef EXIT_WARNING
|
||||||
#ifdef VMS
|
#ifdef VMS
|
||||||
#define EXIT_WARNING 1 /* VMS is very nonstandard */
|
#define EXIT_WARNING 1 /* VMS is very nonstandard */
|
||||||
#else
|
#else
|
||||||
#define EXIT_WARNING 2
|
#define EXIT_WARNING 2
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* cjpeg.c
|
* cjpeg.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 1991-1998, Thomas G. Lane.
|
* Copyright (C) 1991-1998, Thomas G. Lane.
|
||||||
* Modified 2003-2008 by Guido Vollbeding.
|
* Modified 2003-2010 by Guido Vollbeding.
|
||||||
* This file is part of the Independent JPEG Group's software.
|
* This file is part of the Independent JPEG Group's software.
|
||||||
* For conditions of distribution and use, see the accompanying README file.
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
*
|
*
|
||||||
|
@ -165,6 +165,9 @@ usage (void)
|
||||||
fprintf(stderr, " -targa Input file is Targa format (usually not needed)\n");
|
fprintf(stderr, " -targa Input file is Targa format (usually not needed)\n");
|
||||||
#endif
|
#endif
|
||||||
fprintf(stderr, "Switches for advanced users:\n");
|
fprintf(stderr, "Switches for advanced users:\n");
|
||||||
|
#ifdef DCT_SCALING_SUPPORTED
|
||||||
|
fprintf(stderr, " -block N DCT block size (1..16; default is 8)\n");
|
||||||
|
#endif
|
||||||
#ifdef DCT_ISLOW_SUPPORTED
|
#ifdef DCT_ISLOW_SUPPORTED
|
||||||
fprintf(stderr, " -dct int Use integer DCT method%s\n",
|
fprintf(stderr, " -dct int Use integer DCT method%s\n",
|
||||||
(JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
|
(JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
|
||||||
|
@ -254,10 +257,30 @@ parse_switches (j_compress_ptr cinfo, int argc, char **argv,
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
} else if (keymatch(arg, "baseline", 1)) {
|
} else if (keymatch(arg, "baseline", 2)) {
|
||||||
/* Force baseline-compatible output (8-bit quantizer values). */
|
/* Force baseline-compatible output (8-bit quantizer values). */
|
||||||
force_baseline = TRUE;
|
force_baseline = TRUE;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "block", 2)) {
|
||||||
|
/* Set DCT block size. */
|
||||||
|
#if defined(DCT_SCALING_SUPPORTED) && defined(JPEG_LIB_VERSION_MAJOR) && \
|
||||||
|
(JPEG_LIB_VERSION_MAJOR > 8 || (JPEG_LIB_VERSION_MAJOR == 8 && \
|
||||||
|
defined(JPEG_LIB_VERSION_MINOR) && JPEG_LIB_VERSION_MINOR >= 3))
|
||||||
|
int val;
|
||||||
|
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (sscanf(argv[argn], "%d", &val) != 1)
|
||||||
|
usage();
|
||||||
|
if (val < 1 || val > 16)
|
||||||
|
usage();
|
||||||
|
cinfo->block_size = val;
|
||||||
|
#else
|
||||||
|
fprintf(stderr, "%s: sorry, block size setting not supported\n",
|
||||||
|
progname);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
#endif
|
||||||
|
|
||||||
} else if (keymatch(arg, "dct", 2)) {
|
} else if (keymatch(arg, "dct", 2)) {
|
||||||
/* Select DCT algorithm. */
|
/* Select DCT algorithm. */
|
||||||
if (++argn >= argc) /* advance to next argument */
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* jcmarker.c
|
* jcmarker.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 1991-1998, Thomas G. Lane.
|
* Copyright (C) 1991-1998, Thomas G. Lane.
|
||||||
* Modified 2003-2009 by Guido Vollbeding.
|
* Modified 2003-2010 by Guido Vollbeding.
|
||||||
* This file is part of the Independent JPEG Group's software.
|
* This file is part of the Independent JPEG Group's software.
|
||||||
* For conditions of distribution and use, see the accompanying README file.
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
*
|
*
|
||||||
|
@ -231,10 +231,10 @@ emit_dac (j_compress_ptr cinfo)
|
||||||
char ac_in_use[NUM_ARITH_TBLS];
|
char ac_in_use[NUM_ARITH_TBLS];
|
||||||
int length, i;
|
int length, i;
|
||||||
jpeg_component_info *compptr;
|
jpeg_component_info *compptr;
|
||||||
|
|
||||||
for (i = 0; i < NUM_ARITH_TBLS; i++)
|
for (i = 0; i < NUM_ARITH_TBLS; i++)
|
||||||
dc_in_use[i] = ac_in_use[i] = 0;
|
dc_in_use[i] = ac_in_use[i] = 0;
|
||||||
|
|
||||||
for (i = 0; i < cinfo->comps_in_scan; i++) {
|
for (i = 0; i < cinfo->comps_in_scan; i++) {
|
||||||
compptr = cinfo->cur_comp_info[i];
|
compptr = cinfo->cur_comp_info[i];
|
||||||
/* DC needs no table for refinement scan */
|
/* DC needs no table for refinement scan */
|
||||||
|
@ -244,23 +244,25 @@ emit_dac (j_compress_ptr cinfo)
|
||||||
if (cinfo->Se)
|
if (cinfo->Se)
|
||||||
ac_in_use[compptr->ac_tbl_no] = 1;
|
ac_in_use[compptr->ac_tbl_no] = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
length = 0;
|
length = 0;
|
||||||
for (i = 0; i < NUM_ARITH_TBLS; i++)
|
for (i = 0; i < NUM_ARITH_TBLS; i++)
|
||||||
length += dc_in_use[i] + ac_in_use[i];
|
length += dc_in_use[i] + ac_in_use[i];
|
||||||
|
|
||||||
emit_marker(cinfo, M_DAC);
|
if (length) {
|
||||||
|
emit_marker(cinfo, M_DAC);
|
||||||
emit_2bytes(cinfo, length*2 + 2);
|
|
||||||
|
emit_2bytes(cinfo, length*2 + 2);
|
||||||
for (i = 0; i < NUM_ARITH_TBLS; i++) {
|
|
||||||
if (dc_in_use[i]) {
|
for (i = 0; i < NUM_ARITH_TBLS; i++) {
|
||||||
emit_byte(cinfo, i);
|
if (dc_in_use[i]) {
|
||||||
emit_byte(cinfo, cinfo->arith_dc_L[i] + (cinfo->arith_dc_U[i]<<4));
|
emit_byte(cinfo, i);
|
||||||
}
|
emit_byte(cinfo, cinfo->arith_dc_L[i] + (cinfo->arith_dc_U[i]<<4));
|
||||||
if (ac_in_use[i]) {
|
}
|
||||||
emit_byte(cinfo, i + 0x10);
|
if (ac_in_use[i]) {
|
||||||
emit_byte(cinfo, cinfo->arith_ac_K[i]);
|
emit_byte(cinfo, i + 0x10);
|
||||||
|
emit_byte(cinfo, cinfo->arith_ac_K[i]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif /* C_ARITH_CODING_SUPPORTED */
|
#endif /* C_ARITH_CODING_SUPPORTED */
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* jcmaster.c
|
* jcmaster.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 1991-1997, Thomas G. Lane.
|
* Copyright (C) 1991-1997, Thomas G. Lane.
|
||||||
* Modified 2003-2010 by Guido Vollbeding.
|
* Modified 2003-2011 by Guido Vollbeding.
|
||||||
* This file is part of the Independent JPEG Group's software.
|
* This file is part of the Independent JPEG Group's software.
|
||||||
* For conditions of distribution and use, see the accompanying README file.
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
*
|
*
|
||||||
|
@ -55,125 +55,140 @@ jpeg_calc_jpeg_dimensions (j_compress_ptr cinfo)
|
||||||
{
|
{
|
||||||
#ifdef DCT_SCALING_SUPPORTED
|
#ifdef DCT_SCALING_SUPPORTED
|
||||||
|
|
||||||
|
/* Sanity check on input image dimensions to prevent overflow in
|
||||||
|
* following calculation.
|
||||||
|
* We do check jpeg_width and jpeg_height in initial_setup below,
|
||||||
|
* but image_width and image_height can come from arbitrary data,
|
||||||
|
* and we need some space for multiplication by block_size.
|
||||||
|
*/
|
||||||
|
if (((long) cinfo->image_width >> 24) || ((long) cinfo->image_height >> 24))
|
||||||
|
ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) JPEG_MAX_DIMENSION);
|
||||||
|
|
||||||
/* Compute actual JPEG image dimensions and DCT scaling choices. */
|
/* Compute actual JPEG image dimensions and DCT scaling choices. */
|
||||||
if (cinfo->scale_num >= cinfo->scale_denom * 8) {
|
if (cinfo->scale_num >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 8/1 scaling */
|
/* Provide block_size/1 scaling */
|
||||||
cinfo->jpeg_width = cinfo->image_width << 3;
|
cinfo->jpeg_width = cinfo->image_width * cinfo->block_size;
|
||||||
cinfo->jpeg_height = cinfo->image_height << 3;
|
cinfo->jpeg_height = cinfo->image_height * cinfo->block_size;
|
||||||
cinfo->min_DCT_h_scaled_size = 1;
|
cinfo->min_DCT_h_scaled_size = 1;
|
||||||
cinfo->min_DCT_v_scaled_size = 1;
|
cinfo->min_DCT_v_scaled_size = 1;
|
||||||
} else if (cinfo->scale_num >= cinfo->scale_denom * 4) {
|
} else if (cinfo->scale_num * 2 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 4/1 scaling */
|
/* Provide block_size/2 scaling */
|
||||||
cinfo->jpeg_width = cinfo->image_width << 2;
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
cinfo->jpeg_height = cinfo->image_height << 2;
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 2L);
|
||||||
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 2L);
|
||||||
cinfo->min_DCT_h_scaled_size = 2;
|
cinfo->min_DCT_h_scaled_size = 2;
|
||||||
cinfo->min_DCT_v_scaled_size = 2;
|
cinfo->min_DCT_v_scaled_size = 2;
|
||||||
} else if (cinfo->scale_num * 3 >= cinfo->scale_denom * 8) {
|
} else if (cinfo->scale_num * 3 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 8/3 scaling */
|
/* Provide block_size/3 scaling */
|
||||||
cinfo->jpeg_width = (cinfo->image_width << 1) + (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width * 2, 3L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 3L);
|
||||||
cinfo->jpeg_height = (cinfo->image_height << 1) + (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height * 2, 3L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 3L);
|
||||||
cinfo->min_DCT_h_scaled_size = 3;
|
cinfo->min_DCT_h_scaled_size = 3;
|
||||||
cinfo->min_DCT_v_scaled_size = 3;
|
cinfo->min_DCT_v_scaled_size = 3;
|
||||||
} else if (cinfo->scale_num >= cinfo->scale_denom * 2) {
|
} else if (cinfo->scale_num * 4 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 2/1 scaling */
|
/* Provide block_size/4 scaling */
|
||||||
cinfo->jpeg_width = cinfo->image_width << 1;
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
cinfo->jpeg_height = cinfo->image_height << 1;
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 4L);
|
||||||
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 4L);
|
||||||
cinfo->min_DCT_h_scaled_size = 4;
|
cinfo->min_DCT_h_scaled_size = 4;
|
||||||
cinfo->min_DCT_v_scaled_size = 4;
|
cinfo->min_DCT_v_scaled_size = 4;
|
||||||
} else if (cinfo->scale_num * 5 >= cinfo->scale_denom * 8) {
|
} else if (cinfo->scale_num * 5 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 8/5 scaling */
|
/* Provide block_size/5 scaling */
|
||||||
cinfo->jpeg_width = cinfo->image_width + (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width * 3, 5L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 5L);
|
||||||
cinfo->jpeg_height = cinfo->image_height + (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height * 3, 5L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 5L);
|
||||||
cinfo->min_DCT_h_scaled_size = 5;
|
cinfo->min_DCT_h_scaled_size = 5;
|
||||||
cinfo->min_DCT_v_scaled_size = 5;
|
cinfo->min_DCT_v_scaled_size = 5;
|
||||||
} else if (cinfo->scale_num * 3 >= cinfo->scale_denom * 4) {
|
} else if (cinfo->scale_num * 6 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 4/3 scaling */
|
/* Provide block_size/6 scaling */
|
||||||
cinfo->jpeg_width = cinfo->image_width + (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width, 3L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 6L);
|
||||||
cinfo->jpeg_height = cinfo->image_height + (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height, 3L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 6L);
|
||||||
cinfo->min_DCT_h_scaled_size = 6;
|
cinfo->min_DCT_h_scaled_size = 6;
|
||||||
cinfo->min_DCT_v_scaled_size = 6;
|
cinfo->min_DCT_v_scaled_size = 6;
|
||||||
} else if (cinfo->scale_num * 7 >= cinfo->scale_denom * 8) {
|
} else if (cinfo->scale_num * 7 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 8/7 scaling */
|
/* Provide block_size/7 scaling */
|
||||||
cinfo->jpeg_width = cinfo->image_width + (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width, 7L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 7L);
|
||||||
cinfo->jpeg_height = cinfo->image_height + (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height, 7L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 7L);
|
||||||
cinfo->min_DCT_h_scaled_size = 7;
|
cinfo->min_DCT_h_scaled_size = 7;
|
||||||
cinfo->min_DCT_v_scaled_size = 7;
|
cinfo->min_DCT_v_scaled_size = 7;
|
||||||
} else if (cinfo->scale_num >= cinfo->scale_denom) {
|
} else if (cinfo->scale_num * 8 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 1/1 scaling */
|
/* Provide block_size/8 scaling */
|
||||||
cinfo->jpeg_width = cinfo->image_width;
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
cinfo->jpeg_height = cinfo->image_height;
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 8L);
|
||||||
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 8L);
|
||||||
cinfo->min_DCT_h_scaled_size = 8;
|
cinfo->min_DCT_h_scaled_size = 8;
|
||||||
cinfo->min_DCT_v_scaled_size = 8;
|
cinfo->min_DCT_v_scaled_size = 8;
|
||||||
} else if (cinfo->scale_num * 9 >= cinfo->scale_denom * 8) {
|
} else if (cinfo->scale_num * 9 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 8/9 scaling */
|
/* Provide block_size/9 scaling */
|
||||||
cinfo->jpeg_width = (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width * 8, 9L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 9L);
|
||||||
cinfo->jpeg_height = (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height * 8, 9L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 9L);
|
||||||
cinfo->min_DCT_h_scaled_size = 9;
|
cinfo->min_DCT_h_scaled_size = 9;
|
||||||
cinfo->min_DCT_v_scaled_size = 9;
|
cinfo->min_DCT_v_scaled_size = 9;
|
||||||
} else if (cinfo->scale_num * 5 >= cinfo->scale_denom * 4) {
|
} else if (cinfo->scale_num * 10 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 4/5 scaling */
|
/* Provide block_size/10 scaling */
|
||||||
cinfo->jpeg_width = (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width * 4, 5L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 10L);
|
||||||
cinfo->jpeg_height = (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height * 4, 5L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 10L);
|
||||||
cinfo->min_DCT_h_scaled_size = 10;
|
cinfo->min_DCT_h_scaled_size = 10;
|
||||||
cinfo->min_DCT_v_scaled_size = 10;
|
cinfo->min_DCT_v_scaled_size = 10;
|
||||||
} else if (cinfo->scale_num * 11 >= cinfo->scale_denom * 8) {
|
} else if (cinfo->scale_num * 11 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 8/11 scaling */
|
/* Provide block_size/11 scaling */
|
||||||
cinfo->jpeg_width = (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width * 8, 11L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 11L);
|
||||||
cinfo->jpeg_height = (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height * 8, 11L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 11L);
|
||||||
cinfo->min_DCT_h_scaled_size = 11;
|
cinfo->min_DCT_h_scaled_size = 11;
|
||||||
cinfo->min_DCT_v_scaled_size = 11;
|
cinfo->min_DCT_v_scaled_size = 11;
|
||||||
} else if (cinfo->scale_num * 3 >= cinfo->scale_denom * 2) {
|
} else if (cinfo->scale_num * 12 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 2/3 scaling */
|
/* Provide block_size/12 scaling */
|
||||||
cinfo->jpeg_width = (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width * 2, 3L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 12L);
|
||||||
cinfo->jpeg_height = (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height * 2, 3L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 12L);
|
||||||
cinfo->min_DCT_h_scaled_size = 12;
|
cinfo->min_DCT_h_scaled_size = 12;
|
||||||
cinfo->min_DCT_v_scaled_size = 12;
|
cinfo->min_DCT_v_scaled_size = 12;
|
||||||
} else if (cinfo->scale_num * 13 >= cinfo->scale_denom * 8) {
|
} else if (cinfo->scale_num * 13 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 8/13 scaling */
|
/* Provide block_size/13 scaling */
|
||||||
cinfo->jpeg_width = (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width * 8, 13L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 13L);
|
||||||
cinfo->jpeg_height = (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height * 8, 13L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 13L);
|
||||||
cinfo->min_DCT_h_scaled_size = 13;
|
cinfo->min_DCT_h_scaled_size = 13;
|
||||||
cinfo->min_DCT_v_scaled_size = 13;
|
cinfo->min_DCT_v_scaled_size = 13;
|
||||||
} else if (cinfo->scale_num * 7 >= cinfo->scale_denom * 4) {
|
} else if (cinfo->scale_num * 14 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 4/7 scaling */
|
/* Provide block_size/14 scaling */
|
||||||
cinfo->jpeg_width = (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width * 4, 7L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 14L);
|
||||||
cinfo->jpeg_height = (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height * 4, 7L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 14L);
|
||||||
cinfo->min_DCT_h_scaled_size = 14;
|
cinfo->min_DCT_h_scaled_size = 14;
|
||||||
cinfo->min_DCT_v_scaled_size = 14;
|
cinfo->min_DCT_v_scaled_size = 14;
|
||||||
} else if (cinfo->scale_num * 15 >= cinfo->scale_denom * 8) {
|
} else if (cinfo->scale_num * 15 >= cinfo->scale_denom * cinfo->block_size) {
|
||||||
/* Provide 8/15 scaling */
|
/* Provide block_size/15 scaling */
|
||||||
cinfo->jpeg_width = (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width * 8, 15L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 15L);
|
||||||
cinfo->jpeg_height = (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height * 8, 15L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 15L);
|
||||||
cinfo->min_DCT_h_scaled_size = 15;
|
cinfo->min_DCT_h_scaled_size = 15;
|
||||||
cinfo->min_DCT_v_scaled_size = 15;
|
cinfo->min_DCT_v_scaled_size = 15;
|
||||||
} else {
|
} else {
|
||||||
/* Provide 1/2 scaling */
|
/* Provide block_size/16 scaling */
|
||||||
cinfo->jpeg_width = (JDIMENSION)
|
cinfo->jpeg_width = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_width, 2L);
|
jdiv_round_up((long) cinfo->image_width * cinfo->block_size, 16L);
|
||||||
cinfo->jpeg_height = (JDIMENSION)
|
cinfo->jpeg_height = (JDIMENSION)
|
||||||
jdiv_round_up((long) cinfo->image_height, 2L);
|
jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 16L);
|
||||||
cinfo->min_DCT_h_scaled_size = 16;
|
cinfo->min_DCT_h_scaled_size = 16;
|
||||||
cinfo->min_DCT_v_scaled_size = 16;
|
cinfo->min_DCT_v_scaled_size = 16;
|
||||||
}
|
}
|
||||||
|
@ -193,25 +208,11 @@ jpeg_calc_jpeg_dimensions (j_compress_ptr cinfo)
|
||||||
LOCAL(void)
|
LOCAL(void)
|
||||||
jpeg_calc_trans_dimensions (j_compress_ptr cinfo)
|
jpeg_calc_trans_dimensions (j_compress_ptr cinfo)
|
||||||
{
|
{
|
||||||
if (cinfo->min_DCT_h_scaled_size < 1 || cinfo->min_DCT_h_scaled_size > 16
|
if (cinfo->min_DCT_h_scaled_size != cinfo->min_DCT_v_scaled_size)
|
||||||
|| cinfo->min_DCT_h_scaled_size != cinfo->min_DCT_v_scaled_size)
|
|
||||||
ERREXIT2(cinfo, JERR_BAD_DCTSIZE,
|
ERREXIT2(cinfo, JERR_BAD_DCTSIZE,
|
||||||
cinfo->min_DCT_h_scaled_size, cinfo->min_DCT_v_scaled_size);
|
cinfo->min_DCT_h_scaled_size, cinfo->min_DCT_v_scaled_size);
|
||||||
|
|
||||||
cinfo->block_size = cinfo->min_DCT_h_scaled_size;
|
cinfo->block_size = cinfo->min_DCT_h_scaled_size;
|
||||||
|
|
||||||
switch (cinfo->block_size) {
|
|
||||||
case 2: cinfo->natural_order = jpeg_natural_order2; break;
|
|
||||||
case 3: cinfo->natural_order = jpeg_natural_order3; break;
|
|
||||||
case 4: cinfo->natural_order = jpeg_natural_order4; break;
|
|
||||||
case 5: cinfo->natural_order = jpeg_natural_order5; break;
|
|
||||||
case 6: cinfo->natural_order = jpeg_natural_order6; break;
|
|
||||||
case 7: cinfo->natural_order = jpeg_natural_order7; break;
|
|
||||||
default: cinfo->natural_order = jpeg_natural_order; break;
|
|
||||||
}
|
|
||||||
|
|
||||||
cinfo->lim_Se = cinfo->block_size < DCTSIZE ?
|
|
||||||
cinfo->block_size * cinfo->block_size - 1 : DCTSIZE2-1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -229,6 +230,25 @@ initial_setup (j_compress_ptr cinfo, boolean transcode_only)
|
||||||
else
|
else
|
||||||
jpeg_calc_jpeg_dimensions(cinfo);
|
jpeg_calc_jpeg_dimensions(cinfo);
|
||||||
|
|
||||||
|
/* Sanity check on block_size */
|
||||||
|
if (cinfo->block_size < 1 || cinfo->block_size > 16)
|
||||||
|
ERREXIT2(cinfo, JERR_BAD_DCTSIZE, cinfo->block_size, cinfo->block_size);
|
||||||
|
|
||||||
|
/* Derive natural_order from block_size */
|
||||||
|
switch (cinfo->block_size) {
|
||||||
|
case 2: cinfo->natural_order = jpeg_natural_order2; break;
|
||||||
|
case 3: cinfo->natural_order = jpeg_natural_order3; break;
|
||||||
|
case 4: cinfo->natural_order = jpeg_natural_order4; break;
|
||||||
|
case 5: cinfo->natural_order = jpeg_natural_order5; break;
|
||||||
|
case 6: cinfo->natural_order = jpeg_natural_order6; break;
|
||||||
|
case 7: cinfo->natural_order = jpeg_natural_order7; break;
|
||||||
|
default: cinfo->natural_order = jpeg_natural_order; break;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Derive lim_Se from block_size */
|
||||||
|
cinfo->lim_Se = cinfo->block_size < DCTSIZE ?
|
||||||
|
cinfo->block_size * cinfo->block_size - 1 : DCTSIZE2-1;
|
||||||
|
|
||||||
/* Sanity check on image dimensions */
|
/* Sanity check on image dimensions */
|
||||||
if (cinfo->jpeg_height <= 0 || cinfo->jpeg_width <= 0 ||
|
if (cinfo->jpeg_height <= 0 || cinfo->jpeg_width <= 0 ||
|
||||||
cinfo->num_components <= 0 || cinfo->input_components <= 0)
|
cinfo->num_components <= 0 || cinfo->input_components <= 0)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* jpeglib.h
|
* jpeglib.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 1991-1998, Thomas G. Lane.
|
* Copyright (C) 1991-1998, Thomas G. Lane.
|
||||||
* Modified 2002-2009 by Guido Vollbeding.
|
* Modified 2002-2010 by Guido Vollbeding.
|
||||||
* This file is part of the Independent JPEG Group's software.
|
* This file is part of the Independent JPEG Group's software.
|
||||||
* For conditions of distribution and use, see the accompanying README file.
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
*
|
*
|
||||||
|
@ -33,11 +33,13 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Version ID for the JPEG library.
|
/* Version IDs for the JPEG library.
|
||||||
* Might be useful for tests like "#if JPEG_LIB_VERSION >= 80".
|
* Might be useful for tests like "#if JPEG_LIB_VERSION >= 80".
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define JPEG_LIB_VERSION 80 /* Version 8.0 */
|
#define JPEG_LIB_VERSION 80 /* Compatibility version 8.0 */
|
||||||
|
#define JPEG_LIB_VERSION_MAJOR 8
|
||||||
|
#define JPEG_LIB_VERSION_MINOR 3
|
||||||
|
|
||||||
|
|
||||||
/* Various constants determining the sizes of things.
|
/* Various constants determining the sizes of things.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* jversion.h
|
* jversion.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 1991-2010, Thomas G. Lane, Guido Vollbeding.
|
* Copyright (C) 1991-2011, Thomas G. Lane, Guido Vollbeding.
|
||||||
* This file is part of the Independent JPEG Group's software.
|
* This file is part of the Independent JPEG Group's software.
|
||||||
* For conditions of distribution and use, see the accompanying README file.
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
*
|
*
|
||||||
|
@ -9,6 +9,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#define JVERSION "8b 16-May-2010"
|
#define JVERSION "8c 16-Jan-2011"
|
||||||
|
|
||||||
#define JCOPYRIGHT "Copyright (C) 2010, Thomas G. Lane, Guido Vollbeding"
|
#define JCOPYRIGHT "Copyright (C) 2011, Thomas G. Lane, Guido Vollbeding"
|
||||||
|
|
Loading…
Reference in a new issue