michael@0: /* michael@0: * jdtrans.c michael@0: * michael@0: * Copyright (C) 1995-1997, Thomas G. Lane. michael@0: * This file is part of the Independent JPEG Group's software. michael@0: * For conditions of distribution and use, see the accompanying README file. michael@0: * michael@0: * This file contains library routines for transcoding decompression, michael@0: * that is, reading raw DCT coefficient arrays from an input JPEG file. michael@0: * The routines in jdapimin.c will also be needed by a transcoder. michael@0: */ michael@0: michael@0: #define JPEG_INTERNALS michael@0: #include "jinclude.h" michael@0: #include "jpeglib.h" michael@0: michael@0: michael@0: /* Forward declarations */ michael@0: LOCAL(void) transdecode_master_selection JPP((j_decompress_ptr cinfo)); michael@0: michael@0: michael@0: /* michael@0: * Read the coefficient arrays from a JPEG file. michael@0: * jpeg_read_header must be completed before calling this. michael@0: * michael@0: * The entire image is read into a set of virtual coefficient-block arrays, michael@0: * one per component. The return value is a pointer to the array of michael@0: * virtual-array descriptors. These can be manipulated directly via the michael@0: * JPEG memory manager, or handed off to jpeg_write_coefficients(). michael@0: * To release the memory occupied by the virtual arrays, call michael@0: * jpeg_finish_decompress() when done with the data. michael@0: * michael@0: * An alternative usage is to simply obtain access to the coefficient arrays michael@0: * during a buffered-image-mode decompression operation. This is allowed michael@0: * after any jpeg_finish_output() call. The arrays can be accessed until michael@0: * jpeg_finish_decompress() is called. (Note that any call to the library michael@0: * may reposition the arrays, so don't rely on access_virt_barray() results michael@0: * to stay valid across library calls.) michael@0: * michael@0: * Returns NULL if suspended. This case need be checked only if michael@0: * a suspending data source is used. michael@0: */ michael@0: michael@0: GLOBAL(jvirt_barray_ptr *) michael@0: jpeg_read_coefficients (j_decompress_ptr cinfo) michael@0: { michael@0: if (cinfo->global_state == DSTATE_READY) { michael@0: /* First call: initialize active modules */ michael@0: transdecode_master_selection(cinfo); michael@0: cinfo->global_state = DSTATE_RDCOEFS; michael@0: } michael@0: if (cinfo->global_state == DSTATE_RDCOEFS) { michael@0: /* Absorb whole file into the coef buffer */ michael@0: for (;;) { michael@0: int retcode; michael@0: /* Call progress monitor hook if present */ michael@0: if (cinfo->progress != NULL) michael@0: (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo); michael@0: /* Absorb some more input */ michael@0: retcode = (*cinfo->inputctl->consume_input) (cinfo); michael@0: if (retcode == JPEG_SUSPENDED) michael@0: return NULL; michael@0: if (retcode == JPEG_REACHED_EOI) michael@0: break; michael@0: /* Advance progress counter if appropriate */ michael@0: if (cinfo->progress != NULL && michael@0: (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) { michael@0: if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) { michael@0: /* startup underestimated number of scans; ratchet up one scan */ michael@0: cinfo->progress->pass_limit += (long) cinfo->total_iMCU_rows; michael@0: } michael@0: } michael@0: } michael@0: /* Set state so that jpeg_finish_decompress does the right thing */ michael@0: cinfo->global_state = DSTATE_STOPPING; michael@0: } michael@0: /* At this point we should be in state DSTATE_STOPPING if being used michael@0: * standalone, or in state DSTATE_BUFIMAGE if being invoked to get access michael@0: * to the coefficients during a full buffered-image-mode decompression. michael@0: */ michael@0: if ((cinfo->global_state == DSTATE_STOPPING || michael@0: cinfo->global_state == DSTATE_BUFIMAGE) && cinfo->buffered_image) { michael@0: return cinfo->coef->coef_arrays; michael@0: } michael@0: /* Oops, improper usage */ michael@0: ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state); michael@0: return NULL; /* keep compiler happy */ michael@0: } michael@0: michael@0: michael@0: /* michael@0: * Master selection of decompression modules for transcoding. michael@0: * This substitutes for jdmaster.c's initialization of the full decompressor. michael@0: */ michael@0: michael@0: LOCAL(void) michael@0: transdecode_master_selection (j_decompress_ptr cinfo) michael@0: { michael@0: /* This is effectively a buffered-image operation. */ michael@0: cinfo->buffered_image = TRUE; michael@0: michael@0: #if JPEG_LIB_VERSION >= 80 michael@0: /* Compute output image dimensions and related values. */ michael@0: jpeg_core_output_dimensions(cinfo); michael@0: #endif michael@0: michael@0: /* Entropy decoding: either Huffman or arithmetic coding. */ michael@0: if (cinfo->arith_code) { michael@0: #ifdef D_ARITH_CODING_SUPPORTED michael@0: jinit_arith_decoder(cinfo); michael@0: #else michael@0: ERREXIT(cinfo, JERR_ARITH_NOTIMPL); michael@0: #endif michael@0: } else { michael@0: if (cinfo->progressive_mode) { michael@0: #ifdef D_PROGRESSIVE_SUPPORTED michael@0: jinit_phuff_decoder(cinfo); michael@0: #else michael@0: ERREXIT(cinfo, JERR_NOT_COMPILED); michael@0: #endif michael@0: } else michael@0: jinit_huff_decoder(cinfo); michael@0: } michael@0: michael@0: /* Always get a full-image coefficient buffer. */ michael@0: jinit_d_coef_controller(cinfo, TRUE); michael@0: michael@0: /* We can now tell the memory manager to allocate virtual arrays. */ michael@0: (*cinfo->mem->realize_virt_arrays) ((j_common_ptr) cinfo); michael@0: michael@0: /* Initialize input side of decompressor to consume first scan. */ michael@0: (*cinfo->inputctl->start_input_pass) (cinfo); michael@0: michael@0: /* Initialize progress monitoring. */ michael@0: if (cinfo->progress != NULL) { michael@0: int nscans; michael@0: /* Estimate number of scans to set pass_limit. */ michael@0: if (cinfo->progressive_mode) { michael@0: /* Arbitrarily estimate 2 interleaved DC scans + 3 AC scans/component. */ michael@0: nscans = 2 + 3 * cinfo->num_components; michael@0: } else if (cinfo->inputctl->has_multiple_scans) { michael@0: /* For a nonprogressive multiscan file, estimate 1 scan per component. */ michael@0: nscans = cinfo->num_components; michael@0: } else { michael@0: nscans = 1; michael@0: } michael@0: cinfo->progress->pass_counter = 0L; michael@0: cinfo->progress->pass_limit = (long) cinfo->total_iMCU_rows * nscans; michael@0: cinfo->progress->completed_passes = 0; michael@0: cinfo->progress->total_passes = 1; michael@0: } michael@0: }