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

图形图象

开发平台:

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.  * jdatasrc.c
  22.  *
  23.  * Copyright (C) 1994-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 decompression data source routines for the case of
  28.  * reading JPEG data from a file (or any stdio stream).  While these routines
  29.  * are sufficient for most applications, some will want to use a different
  30.  * source manager.
  31.  * IMPORTANT: we assume that fread() will correctly transcribe an array of
  32.  * JOCTETs from 8-bit-wide elements on external storage.  If char is wider
  33.  * than 8 bits on your machine, you may need to do some tweaking.
  34.  */
  35. /* this is not a core library module, so it doesn't define JPEG_INTERNALS */
  36. #include "jinclude.h"
  37. #include "jpeglib.h"
  38. #include "jerror.h"
  39. /* Expanded data source object for stdio input */
  40. typedef struct {
  41.   struct jpeg_source_mgr pub; /* public fields */
  42.   FILE * infile; /* source stream */
  43.   JOCTET * buffer; /* start of buffer */
  44.   boolean start_of_file; /* have we gotten any data yet? */
  45. } my_source_mgr;
  46. typedef my_source_mgr * my_src_ptr;
  47. #define INPUT_BUF_SIZE  4096 /* choose an efficiently fread'able size */
  48. /*
  49.  * Initialize source --- called by jpeg_read_header
  50.  * before any data is actually read.
  51.  */
  52. METHODDEF(void)
  53. init_source (j_decompress_ptr cinfo)
  54. {
  55.   my_src_ptr src = (my_src_ptr) cinfo->src;
  56.   /* We reset the empty-input-file flag for each image,
  57.    * but we don't clear the input buffer.
  58.    * This is correct behavior for reading a series of images from one source.
  59.    */
  60.   src->start_of_file = TRUE;
  61. }
  62. /*
  63.  * Fill the input buffer --- called whenever buffer is emptied.
  64.  *
  65.  * In typical applications, this should read fresh data into the buffer
  66.  * (ignoring the current state of next_input_byte & bytes_in_buffer),
  67.  * reset the pointer & count to the start of the buffer, and return TRUE
  68.  * indicating that the buffer has been reloaded.  It is not necessary to
  69.  * fill the buffer entirely, only to obtain at least one more byte.
  70.  *
  71.  * There is no such thing as an EOF return.  If the end of the file has been
  72.  * reached, the routine has a choice of ERREXIT() or inserting fake data into
  73.  * the buffer.  In most cases, generating a warning message and inserting a
  74.  * fake EOI marker is the best course of action --- this will allow the
  75.  * decompressor to output however much of the image is there.  However,
  76.  * the resulting error message is misleading if the real problem is an empty
  77.  * input file, so we handle that case specially.
  78.  *
  79.  * In applications that need to be able to suspend compression due to input
  80.  * not being available yet, a FALSE return indicates that no more data can be
  81.  * obtained right now, but more may be forthcoming later.  In this situation,
  82.  * the decompressor will return to its caller (with an indication of the
  83.  * number of scanlines it has read, if any).  The application should resume
  84.  * decompression after it has loaded more data into the input buffer.  Note
  85.  * that there are substantial restrictions on the use of suspension --- see
  86.  * the documentation.
  87.  *
  88.  * When suspending, the decompressor will back up to a convenient restart point
  89.  * (typically the start of the current MCU). next_input_byte & bytes_in_buffer
  90.  * indicate where the restart point will be if the current call returns FALSE.
  91.  * Data beyond this point must be rescanned after resumption, so move it to
  92.  * the front of the buffer rather than discarding it.
  93.  */
  94. METHODDEF(boolean)
  95. fill_input_buffer (j_decompress_ptr cinfo)
  96. {
  97.   my_src_ptr src = (my_src_ptr) cinfo->src;
  98.   size_t nbytes;
  99.   nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE);
  100.   if (nbytes <= 0) {
  101.     if (src->start_of_file) /* Treat empty input file as fatal error */
  102.       ERREXIT(cinfo, JERR_INPUT_EMPTY);
  103.     WARNMS(cinfo, JWRN_JPEG_EOF);
  104.     /* Insert a fake EOI marker */
  105.     src->buffer[0] = (JOCTET) 0xFF;
  106.     src->buffer[1] = (JOCTET) JPEG_EOI;
  107.     nbytes = 2;
  108.   }
  109.   src->pub.next_input_byte = src->buffer;
  110.   src->pub.bytes_in_buffer = nbytes;
  111.   src->start_of_file = FALSE;
  112.   return TRUE;
  113. }
  114. /*
  115.  * Skip data --- used to skip over a potentially large amount of
  116.  * uninteresting data (such as an APPn marker).
  117.  *
  118.  * Writers of suspendable-input applications must note that skip_input_data
  119.  * is not granted the right to give a suspension return.  If the skip extends
  120.  * beyond the data currently in the buffer, the buffer can be marked empty so
  121.  * that the next read will cause a fill_input_buffer call that can suspend.
  122.  * Arranging for additional bytes to be discarded before reloading the input
  123.  * buffer is the application writer's problem.
  124.  */
  125. METHODDEF(void)
  126. skip_input_data (j_decompress_ptr cinfo, long num_bytes)
  127. {
  128.   my_src_ptr src = (my_src_ptr) cinfo->src;
  129.   /* Just a dumb implementation for now.  Could use fseek() except
  130.    * it doesn't work on pipes.  Not clear that being smart is worth
  131.    * any trouble anyway --- large skips are infrequent.
  132.    */
  133.   if (num_bytes > 0) {
  134.     while (num_bytes > (long) src->pub.bytes_in_buffer) {
  135.       num_bytes -= (long) src->pub.bytes_in_buffer;
  136.       (void) fill_input_buffer(cinfo);
  137.       /* note we assume that fill_input_buffer will never return FALSE,
  138.        * so suspension need not be handled.
  139.        */
  140.     }
  141.     src->pub.next_input_byte += (size_t) num_bytes;
  142.     src->pub.bytes_in_buffer -= (size_t) num_bytes;
  143.   }
  144. }
  145. /*
  146.  * An additional method that can be provided by data source modules is the
  147.  * resync_to_restart method for error recovery in the presence of RST markers.
  148.  * For the moment, this source module just uses the default resync method
  149.  * provided by the JPEG library.  That method assumes that no backtracking
  150.  * is possible.
  151.  */
  152. /*
  153.  * Terminate source --- called by jpeg_finish_decompress
  154.  * after all data has been read.  Often a no-op.
  155.  *
  156.  * NB: *not* called by jpeg_abort or jpeg_destroy; surrounding
  157.  * application must deal with any cleanup that should happen even
  158.  * for error exit.
  159.  */
  160. METHODDEF(void)
  161. term_source (j_decompress_ptr cinfo)
  162. {
  163.   /* no work necessary here */
  164. }
  165. /*
  166.  * Prepare for input from a stdio stream.
  167.  * The caller must have already opened the stream, and is responsible
  168.  * for closing it after finishing decompression.
  169.  */
  170. GLOBAL(void)
  171. jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile)
  172. {
  173.   my_src_ptr src;
  174.   /* The source object and input buffer are made permanent so that a series
  175.    * of JPEG images can be read from the same file by calling jpeg_stdio_src
  176.    * only before the first one.  (If we discarded the buffer at the end of
  177.    * one image, we'd likely lose the start of the next one.)
  178.    * This makes it unsafe to use this manager and a different source
  179.    * manager serially with the same JPEG object.  Caveat programmer.
  180.    */
  181.   if (cinfo->src == NULL) { /* first time for this JPEG object? */
  182.     cinfo->src = (struct jpeg_source_mgr *)
  183.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
  184.   SIZEOF(my_source_mgr));
  185.     src = (my_src_ptr) cinfo->src;
  186.     src->buffer = (JOCTET *)
  187.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
  188.   INPUT_BUF_SIZE * SIZEOF(JOCTET));
  189.   }
  190.   src = (my_src_ptr) cinfo->src;
  191.   src->pub.init_source = init_source;
  192.   src->pub.fill_input_buffer = fill_input_buffer;
  193.   src->pub.skip_input_data = skip_input_data;
  194.   src->pub.resync_to_restart = jpeg_resync_to_restart; /* use default method */
  195.   src->pub.term_source = term_source;
  196.   src->infile = infile;
  197.   src->pub.bytes_in_buffer = 0; /* forces fill_input_buffer on first read */
  198.   src->pub.next_input_byte = NULL; /* until buffer loaded */
  199. }