JDTRANS.c
上传用户:qiutianh
上传日期:2022-08-08
资源大小:939k
文件大小:5k
源码类别:

图形图象

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. //
  3. // Note : this file is included as part of the Smaller Animals Software
  4. // JpegFile package. Though this file has not been modified from it's 
  5. // original IJG 6a form, it is not the responsibility on the Independent
  6. // JPEG Group to answer questions regarding this code.
  7. //
  8. // Any questions you have about this code should be addressed to :
  9. //
  10. // CHRISDL@PAGESZ.NET - the distributor of this package.
  11. //
  12. // Remember, by including this code in the JpegFile package, Smaller 
  13. // Animals Software assumes all responsibilities for answering questions
  14. // about it. If we (SA Software) can't answer your questions ourselves, we 
  15. // will direct you to people who can.
  16. //
  17. // Thanks, CDL.
  18. //
  19. ////////////////////////////////////////////////////////////////////////
  20. /*
  21.  * jdtrans.c
  22.  *
  23.  * Copyright (C) 1995-1996, Thomas G. Lane.
  24.  * This file is part of the Independent JPEG Group's software.
  25.  * For conditions of distribution and use, see the accompanying README file.
  26.  *
  27.  * This file contains library routines for transcoding decompression,
  28.  * that is, reading raw DCT coefficient arrays from an input JPEG file.
  29.  * The routines in jdapimin.c will also be needed by a transcoder.
  30.  */
  31. #define JPEG_INTERNALS
  32. #include "jinclude.h"
  33. #include "jpeglib.h"
  34. /* Forward declarations */
  35. LOCAL(void) transdecode_master_selection JPP((j_decompress_ptr cinfo));
  36. /*
  37.  * Read the coefficient arrays from a JPEG file.
  38.  * jpeg_read_header must be completed before calling this.
  39.  *
  40.  * The entire image is read into a set of virtual coefficient-block arrays,
  41.  * one per component.  The return value is a pointer to the array of
  42.  * virtual-array descriptors.  These can be manipulated directly via the
  43.  * JPEG memory manager, or handed off to jpeg_write_coefficients().
  44.  * To release the memory occupied by the virtual arrays, call
  45.  * jpeg_finish_decompress() when done with the data.
  46.  *
  47.  * Returns NULL if suspended.  This case need be checked only if
  48.  * a suspending data source is used.
  49.  */
  50. GLOBAL(jvirt_barray_ptr *)
  51. jpeg_read_coefficients (j_decompress_ptr cinfo)
  52. {
  53.   if (cinfo->global_state == DSTATE_READY) {
  54.     /* First call: initialize active modules */
  55.     transdecode_master_selection(cinfo);
  56.     cinfo->global_state = DSTATE_RDCOEFS;
  57.   } else if (cinfo->global_state != DSTATE_RDCOEFS)
  58.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  59.   /* Absorb whole file into the coef buffer */
  60.   for (;;) {
  61.     int retcode;
  62.     /* Call progress monitor hook if present */
  63.     if (cinfo->progress != NULL)
  64.       (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
  65.     /* Absorb some more input */
  66.     retcode = (*cinfo->inputctl->consume_input) (cinfo);
  67.     if (retcode == JPEG_SUSPENDED)
  68.       return NULL;
  69.     if (retcode == JPEG_REACHED_EOI)
  70.       break;
  71.     /* Advance progress counter if appropriate */
  72.     if (cinfo->progress != NULL &&
  73. (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) {
  74.       if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) {
  75. /* startup underestimated number of scans; ratchet up one scan */
  76. cinfo->progress->pass_limit += (long) cinfo->total_iMCU_rows;
  77.       }
  78.     }
  79.   }
  80.   /* Set state so that jpeg_finish_decompress does the right thing */
  81.   cinfo->global_state = DSTATE_STOPPING;
  82.   return cinfo->coef->coef_arrays;
  83. }
  84. /*
  85.  * Master selection of decompression modules for transcoding.
  86.  * This substitutes for jdmaster.c's initialization of the full decompressor.
  87.  */
  88. LOCAL(void)
  89. transdecode_master_selection (j_decompress_ptr cinfo)
  90. {
  91.   /* Entropy decoding: either Huffman or arithmetic coding. */
  92.   if (cinfo->arith_code) {
  93.     ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
  94.   } else {
  95.     if (cinfo->progressive_mode) {
  96. #ifdef D_PROGRESSIVE_SUPPORTED
  97.       jinit_phuff_decoder(cinfo);
  98. #else
  99.       ERREXIT(cinfo, JERR_NOT_COMPILED);
  100. #endif
  101.     } else
  102.       jinit_huff_decoder(cinfo);
  103.   }
  104.   /* Always get a full-image coefficient buffer. */
  105.   jinit_d_coef_controller(cinfo, TRUE);
  106.   /* We can now tell the memory manager to allocate virtual arrays. */
  107.   (*cinfo->mem->realize_virt_arrays) ((j_common_ptr) cinfo);
  108.   /* Initialize input side of decompressor to consume first scan. */
  109.   (*cinfo->inputctl->start_input_pass) (cinfo);
  110.   /* Initialize progress monitoring. */
  111.   if (cinfo->progress != NULL) {
  112.     int nscans;
  113.     /* Estimate number of scans to set pass_limit. */
  114.     if (cinfo->progressive_mode) {
  115.       /* Arbitrarily estimate 2 interleaved DC scans + 3 AC scans/component. */
  116.       nscans = 2 + 3 * cinfo->num_components;
  117.     } else if (cinfo->inputctl->has_multiple_scans) {
  118.       /* For a nonprogressive multiscan file, estimate 1 scan per component. */
  119.       nscans = cinfo->num_components;
  120.     } else {
  121.       nscans = 1;
  122.     }
  123.     cinfo->progress->pass_counter = 0L;
  124.     cinfo->progress->pass_limit = (long) cinfo->total_iMCU_rows * nscans;
  125.     cinfo->progress->completed_passes = 0;
  126.     cinfo->progress->total_passes = 1;
  127.   }
  128. }