* harbour.spec
* INSTALL
* external/Makefile
+ external/jpeg
+ external/jpeg/README
+ external/jpeg/link.txt
+ external/jpeg/Makefile
+ external/jpeg/cderror.h
+ external/jpeg/cdjpeg.h
+ external/jpeg/jaricom.c
+ external/jpeg/jcapimin.c
+ external/jpeg/jcapistd.c
+ external/jpeg/jcarith.c
+ external/jpeg/jccoefct.c
+ external/jpeg/jccolor.c
+ external/jpeg/jcdctmgr.c
+ external/jpeg/jchuff.c
+ external/jpeg/jcinit.c
+ external/jpeg/jcmainct.c
+ external/jpeg/jcmarker.c
+ external/jpeg/jcmaster.c
+ external/jpeg/jcomapi.c
+ external/jpeg/jconfig.h
+ external/jpeg/jcparam.c
+ external/jpeg/jcprepct.c
+ external/jpeg/jctrans.c
+ external/jpeg/jcsample.c
+ external/jpeg/jdapimin.c
+ external/jpeg/jdapistd.c
+ external/jpeg/jdarith.c
+ external/jpeg/jdatadst.c
+ external/jpeg/jdatasrc.c
+ external/jpeg/jdcoefct.c
+ external/jpeg/jdcolor.c
+ external/jpeg/jdct.h
+ external/jpeg/jddctmgr.c
+ external/jpeg/jdhuff.c
+ external/jpeg/jdinput.c
+ external/jpeg/jdmainct.c
+ external/jpeg/jdmarker.c
+ external/jpeg/jdmaster.c
+ external/jpeg/jdmerge.c
+ external/jpeg/jdpostct.c
+ external/jpeg/jdsample.c
+ external/jpeg/jdtrans.c
+ external/jpeg/jerror.c
+ external/jpeg/jerror.h
+ external/jpeg/jfdctflt.c
+ external/jpeg/jfdctfst.c
+ external/jpeg/jfdctint.c
+ external/jpeg/jidctflt.c
+ external/jpeg/jidctfst.c
+ external/jpeg/jidctint.c
+ external/jpeg/jinclude.h
+ external/jpeg/jmemansi.c
+ external/jpeg/jmemdos.c
+ external/jpeg/jmemmac.c
+ external/jpeg/jmemmgr.c
+ external/jpeg/jmemname.c
+ external/jpeg/jmemnobs.c
+ external/jpeg/jmemsys.h
+ external/jpeg/jmorecfg.h
+ external/jpeg/jpegint.h
+ external/jpeg/jpeglib.h
+ external/jpeg/jquant1.c
+ external/jpeg/jquant2.c
+ external/jpeg/jutils.c
+ external/jpeg/jversion.h
+ external/jpeg/rdbmp.c
+ external/jpeg/rdcolmap.c
+ external/jpeg/rdgif.c
+ external/jpeg/rdppm.c
+ external/jpeg/rdrle.c
+ external/jpeg/rdswitch.c
+ external/jpeg/rdtarga.c
+ external/jpeg/transupp.c
+ external/jpeg/transupp.h
+ external/jpeg/wrbmp.c
+ external/jpeg/wrgif.c
+ external/jpeg/wrjpgcom.c
+ external/jpeg/wrppm.c
+ external/jpeg/wrrle.c
+ external/jpeg/wrtarga.c
+ Added JPEG lib v8.
66 lines
2.1 KiB
C
66 lines
2.1 KiB
C
/*
|
|
* jcinit.c
|
|
*
|
|
* Copyright (C) 1991-1997, Thomas G. Lane.
|
|
* This file is part of the Independent JPEG Group's software.
|
|
* For conditions of distribution and use, see the accompanying README file.
|
|
*
|
|
* This file contains initialization logic for the JPEG compressor.
|
|
* This routine is in charge of selecting the modules to be executed and
|
|
* making an initialization call to each one.
|
|
*
|
|
* Logically, this code belongs in jcmaster.c. It's split out because
|
|
* linking this routine implies linking the entire compression library.
|
|
* For a transcoding-only application, we want to be able to use jcmaster.c
|
|
* without linking in the whole library.
|
|
*/
|
|
|
|
#define JPEG_INTERNALS
|
|
#include "jinclude.h"
|
|
#include "jpeglib.h"
|
|
|
|
|
|
/*
|
|
* Master selection of compression modules.
|
|
* This is done once at the start of processing an image. We determine
|
|
* which modules will be used and give them appropriate initialization calls.
|
|
*/
|
|
|
|
GLOBAL(void)
|
|
jinit_compress_master (j_compress_ptr cinfo)
|
|
{
|
|
/* Initialize master control (includes parameter checking/processing) */
|
|
jinit_c_master_control(cinfo, FALSE /* full compression */);
|
|
|
|
/* Preprocessing */
|
|
if (! cinfo->raw_data_in) {
|
|
jinit_color_converter(cinfo);
|
|
jinit_downsampler(cinfo);
|
|
jinit_c_prep_controller(cinfo, FALSE /* never need full buffer here */);
|
|
}
|
|
/* Forward DCT */
|
|
jinit_forward_dct(cinfo);
|
|
/* Entropy encoding: either Huffman or arithmetic coding. */
|
|
if (cinfo->arith_code)
|
|
jinit_arith_encoder(cinfo);
|
|
else {
|
|
jinit_huff_encoder(cinfo);
|
|
}
|
|
|
|
/* Need a full-image coefficient buffer in any multi-pass mode. */
|
|
jinit_c_coef_controller(cinfo,
|
|
(boolean) (cinfo->num_scans > 1 || cinfo->optimize_coding));
|
|
jinit_c_main_controller(cinfo, FALSE /* never need full buffer here */);
|
|
|
|
jinit_marker_writer(cinfo);
|
|
|
|
/* We can now tell the memory manager to allocate virtual arrays. */
|
|
(*cinfo->mem->realize_virt_arrays) ((j_common_ptr) cinfo);
|
|
|
|
/* Write the datastream header (SOI) immediately.
|
|
* Frame and scan headers are postponed till later.
|
|
* This lets application insert special markers after the SOI.
|
|
*/
|
|
(*cinfo->marker->write_file_header) (cinfo);
|
|
}
|