Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

302 lines
9.7 KiB

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