vrshoot

annotate libs/libjpeg/jdtrans.c @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
rev   line source
nuclear@0 1 /*
nuclear@0 2 * jdtrans.c
nuclear@0 3 *
nuclear@0 4 * Copyright (C) 1995-1997, Thomas G. Lane.
nuclear@0 5 * This file is part of the Independent JPEG Group's software.
nuclear@0 6 * For conditions of distribution and use, see the accompanying README file.
nuclear@0 7 *
nuclear@0 8 * This file contains library routines for transcoding decompression,
nuclear@0 9 * that is, reading raw DCT coefficient arrays from an input JPEG file.
nuclear@0 10 * The routines in jdapimin.c will also be needed by a transcoder.
nuclear@0 11 */
nuclear@0 12
nuclear@0 13 #define JPEG_INTERNALS
nuclear@0 14 #include "jinclude.h"
nuclear@0 15 #include "jpeglib.h"
nuclear@0 16
nuclear@0 17
nuclear@0 18 /* Forward declarations */
nuclear@0 19 LOCAL(void) transdecode_master_selection JPP((j_decompress_ptr cinfo));
nuclear@0 20
nuclear@0 21
nuclear@0 22 /*
nuclear@0 23 * Read the coefficient arrays from a JPEG file.
nuclear@0 24 * jpeg_read_header must be completed before calling this.
nuclear@0 25 *
nuclear@0 26 * The entire image is read into a set of virtual coefficient-block arrays,
nuclear@0 27 * one per component. The return value is a pointer to the array of
nuclear@0 28 * virtual-array descriptors. These can be manipulated directly via the
nuclear@0 29 * JPEG memory manager, or handed off to jpeg_write_coefficients().
nuclear@0 30 * To release the memory occupied by the virtual arrays, call
nuclear@0 31 * jpeg_finish_decompress() when done with the data.
nuclear@0 32 *
nuclear@0 33 * An alternative usage is to simply obtain access to the coefficient arrays
nuclear@0 34 * during a buffered-image-mode decompression operation. This is allowed
nuclear@0 35 * after any jpeg_finish_output() call. The arrays can be accessed until
nuclear@0 36 * jpeg_finish_decompress() is called. (Note that any call to the library
nuclear@0 37 * may reposition the arrays, so don't rely on access_virt_barray() results
nuclear@0 38 * to stay valid across library calls.)
nuclear@0 39 *
nuclear@0 40 * Returns NULL if suspended. This case need be checked only if
nuclear@0 41 * a suspending data source is used.
nuclear@0 42 */
nuclear@0 43
nuclear@0 44 GLOBAL(jvirt_barray_ptr *)
nuclear@0 45 jpeg_read_coefficients (j_decompress_ptr cinfo)
nuclear@0 46 {
nuclear@0 47 if (cinfo->global_state == DSTATE_READY) {
nuclear@0 48 /* First call: initialize active modules */
nuclear@0 49 transdecode_master_selection(cinfo);
nuclear@0 50 cinfo->global_state = DSTATE_RDCOEFS;
nuclear@0 51 }
nuclear@0 52 if (cinfo->global_state == DSTATE_RDCOEFS) {
nuclear@0 53 /* Absorb whole file into the coef buffer */
nuclear@0 54 for (;;) {
nuclear@0 55 int retcode;
nuclear@0 56 /* Call progress monitor hook if present */
nuclear@0 57 if (cinfo->progress != NULL)
nuclear@0 58 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
nuclear@0 59 /* Absorb some more input */
nuclear@0 60 retcode = (*cinfo->inputctl->consume_input) (cinfo);
nuclear@0 61 if (retcode == JPEG_SUSPENDED)
nuclear@0 62 return NULL;
nuclear@0 63 if (retcode == JPEG_REACHED_EOI)
nuclear@0 64 break;
nuclear@0 65 /* Advance progress counter if appropriate */
nuclear@0 66 if (cinfo->progress != NULL &&
nuclear@0 67 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) {
nuclear@0 68 if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) {
nuclear@0 69 /* startup underestimated number of scans; ratchet up one scan */
nuclear@0 70 cinfo->progress->pass_limit += (long) cinfo->total_iMCU_rows;
nuclear@0 71 }
nuclear@0 72 }
nuclear@0 73 }
nuclear@0 74 /* Set state so that jpeg_finish_decompress does the right thing */
nuclear@0 75 cinfo->global_state = DSTATE_STOPPING;
nuclear@0 76 }
nuclear@0 77 /* At this point we should be in state DSTATE_STOPPING if being used
nuclear@0 78 * standalone, or in state DSTATE_BUFIMAGE if being invoked to get access
nuclear@0 79 * to the coefficients during a full buffered-image-mode decompression.
nuclear@0 80 */
nuclear@0 81 if ((cinfo->global_state == DSTATE_STOPPING ||
nuclear@0 82 cinfo->global_state == DSTATE_BUFIMAGE) && cinfo->buffered_image) {
nuclear@0 83 return cinfo->coef->coef_arrays;
nuclear@0 84 }
nuclear@0 85 /* Oops, improper usage */
nuclear@0 86 ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
nuclear@0 87 return NULL; /* keep compiler happy */
nuclear@0 88 }
nuclear@0 89
nuclear@0 90
nuclear@0 91 /*
nuclear@0 92 * Master selection of decompression modules for transcoding.
nuclear@0 93 * This substitutes for jdmaster.c's initialization of the full decompressor.
nuclear@0 94 */
nuclear@0 95
nuclear@0 96 LOCAL(void)
nuclear@0 97 transdecode_master_selection (j_decompress_ptr cinfo)
nuclear@0 98 {
nuclear@0 99 /* This is effectively a buffered-image operation. */
nuclear@0 100 cinfo->buffered_image = TRUE;
nuclear@0 101
nuclear@0 102 /* Entropy decoding: either Huffman or arithmetic coding. */
nuclear@0 103 if (cinfo->arith_code) {
nuclear@0 104 ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
nuclear@0 105 } else {
nuclear@0 106 if (cinfo->progressive_mode) {
nuclear@0 107 #ifdef D_PROGRESSIVE_SUPPORTED
nuclear@0 108 jinit_phuff_decoder(cinfo);
nuclear@0 109 #else
nuclear@0 110 ERREXIT(cinfo, JERR_NOT_COMPILED);
nuclear@0 111 #endif
nuclear@0 112 } else
nuclear@0 113 jinit_huff_decoder(cinfo);
nuclear@0 114 }
nuclear@0 115
nuclear@0 116 /* Always get a full-image coefficient buffer. */
nuclear@0 117 jinit_d_coef_controller(cinfo, TRUE);
nuclear@0 118
nuclear@0 119 /* We can now tell the memory manager to allocate virtual arrays. */
nuclear@0 120 (*cinfo->mem->realize_virt_arrays) ((j_common_ptr) cinfo);
nuclear@0 121
nuclear@0 122 /* Initialize input side of decompressor to consume first scan. */
nuclear@0 123 (*cinfo->inputctl->start_input_pass) (cinfo);
nuclear@0 124
nuclear@0 125 /* Initialize progress monitoring. */
nuclear@0 126 if (cinfo->progress != NULL) {
nuclear@0 127 int nscans;
nuclear@0 128 /* Estimate number of scans to set pass_limit. */
nuclear@0 129 if (cinfo->progressive_mode) {
nuclear@0 130 /* Arbitrarily estimate 2 interleaved DC scans + 3 AC scans/component. */
nuclear@0 131 nscans = 2 + 3 * cinfo->num_components;
nuclear@0 132 } else if (cinfo->inputctl->has_multiple_scans) {
nuclear@0 133 /* For a nonprogressive multiscan file, estimate 1 scan per component. */
nuclear@0 134 nscans = cinfo->num_components;
nuclear@0 135 } else {
nuclear@0 136 nscans = 1;
nuclear@0 137 }
nuclear@0 138 cinfo->progress->pass_counter = 0L;
nuclear@0 139 cinfo->progress->pass_limit = (long) cinfo->total_iMCU_rows * nscans;
nuclear@0 140 cinfo->progress->completed_passes = 0;
nuclear@0 141 cinfo->progress->total_passes = 1;
nuclear@0 142 }
nuclear@0 143 }