3dphotoshoot

annotate libs/libjpeg/jdtrans.c @ 17:aef7f51f6397

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