JUTILS.c
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:6k
源码类别:

网络截获/分析

开发平台:

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.  * jutils.c
  22.  *
  23.  * Copyright (C) 1991-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 tables and miscellaneous utility routines needed
  28.  * for both compression and decompression.
  29.  * Note we prefix all global names with "j" to minimize conflicts with
  30.  * a surrounding application.
  31.  */
  32. #define JPEG_INTERNALS
  33. #include "jinclude.h"
  34. #include "jpeglib.h"
  35. /*
  36.  * jpeg_zigzag_order[i] is the zigzag-order position of the i'th element
  37.  * of a DCT block read in natural order (left to right, top to bottom).
  38.  */
  39. #if 0 /* This table is not actually needed in v6a */
  40. const int jpeg_zigzag_order[DCTSIZE2] = {
  41.    0,  1,  5,  6, 14, 15, 27, 28,
  42.    2,  4,  7, 13, 16, 26, 29, 42,
  43.    3,  8, 12, 17, 25, 30, 41, 43,
  44.    9, 11, 18, 24, 31, 40, 44, 53,
  45.   10, 19, 23, 32, 39, 45, 52, 54,
  46.   20, 22, 33, 38, 46, 51, 55, 60,
  47.   21, 34, 37, 47, 50, 56, 59, 61,
  48.   35, 36, 48, 49, 57, 58, 62, 63
  49. };
  50. #endif
  51. /*
  52.  * jpeg_natural_order[i] is the natural-order position of the i'th element
  53.  * of zigzag order.
  54.  *
  55.  * When reading corrupted data, the Huffman decoders could attempt
  56.  * to reference an entry beyond the end of this array (if the decoded
  57.  * zero run length reaches past the end of the block).  To prevent
  58.  * wild stores without adding an inner-loop test, we put some extra
  59.  * "63"s after the real entries.  This will cause the extra coefficient
  60.  * to be stored in location 63 of the block, not somewhere random.
  61.  * The worst case would be a run-length of 15, which means we need 16
  62.  * fake entries.
  63.  */
  64. const int jpeg_natural_order[DCTSIZE2+16] = {
  65.   0,  1,  8, 16,  9,  2,  3, 10,
  66.  17, 24, 32, 25, 18, 11,  4,  5,
  67.  12, 19, 26, 33, 40, 48, 41, 34,
  68.  27, 20, 13,  6,  7, 14, 21, 28,
  69.  35, 42, 49, 56, 57, 50, 43, 36,
  70.  29, 22, 15, 23, 30, 37, 44, 51,
  71.  58, 59, 52, 45, 38, 31, 39, 46,
  72.  53, 60, 61, 54, 47, 55, 62, 63,
  73.  63, 63, 63, 63, 63, 63, 63, 63, /* extra entries for safety in decoder */
  74.  63, 63, 63, 63, 63, 63, 63, 63
  75. };
  76. /*
  77.  * Arithmetic utilities
  78.  */
  79. GLOBAL(long)
  80. jdiv_round_up (long a, long b)
  81. /* Compute a/b rounded up to next integer, ie, ceil(a/b) */
  82. /* Assumes a >= 0, b > 0 */
  83. {
  84.   return (a + b - 1L) / b;
  85. }
  86. GLOBAL(long)
  87. jround_up (long a, long b)
  88. /* Compute a rounded up to next multiple of b, ie, ceil(a/b)*b */
  89. /* Assumes a >= 0, b > 0 */
  90. {
  91.   a += b - 1L;
  92.   return a - (a % b);
  93. }
  94. /* On normal machines we can apply MEMCOPY() and MEMZERO() to sample arrays
  95.  * and coefficient-block arrays.  This won't work on 80x86 because the arrays
  96.  * are FAR and we're assuming a small-pointer memory model.  However, some
  97.  * DOS compilers provide far-pointer versions of memcpy() and memset() even
  98.  * in the small-model libraries.  These will be used if USE_FMEM is defined.
  99.  * Otherwise, the routines below do it the hard way.  (The performance cost
  100.  * is not all that great, because these routines aren't very heavily used.)
  101.  */
  102. #ifndef NEED_FAR_POINTERS /* normal case, same as regular macros */
  103. #define FMEMCOPY(dest,src,size) MEMCOPY(dest,src,size)
  104. #define FMEMZERO(target,size) MEMZERO(target,size)
  105. #else /* 80x86 case, define if we can */
  106. #ifdef USE_FMEM
  107. #define FMEMCOPY(dest,src,size) _fmemcpy((void FAR *)(dest), (const void FAR *)(src), (size_t)(size))
  108. #define FMEMZERO(target,size) _fmemset((void FAR *)(target), 0, (size_t)(size))
  109. #endif
  110. #endif
  111. GLOBAL(void)
  112. jcopy_sample_rows (JSAMPARRAY input_array, int source_row,
  113.    JSAMPARRAY output_array, int dest_row,
  114.    int num_rows, JDIMENSION num_cols)
  115. /* Copy some rows of samples from one place to another.
  116.  * num_rows rows are copied from input_array[source_row++]
  117.  * to output_array[dest_row++]; these areas may overlap for duplication.
  118.  * The source and destination arrays must be at least as wide as num_cols.
  119.  */
  120. {
  121.   register JSAMPROW inptr, outptr;
  122. #ifdef FMEMCOPY
  123.   register size_t count = (size_t) (num_cols * SIZEOF(JSAMPLE));
  124. #else
  125.   register JDIMENSION count;
  126. #endif
  127.   register int row;
  128.   input_array += source_row;
  129.   output_array += dest_row;
  130.   for (row = num_rows; row > 0; row--) {
  131.     inptr = *input_array++;
  132.     outptr = *output_array++;
  133. #ifdef FMEMCOPY
  134.     FMEMCOPY(outptr, inptr, count);
  135. #else
  136.     for (count = num_cols; count > 0; count--)
  137.       *outptr++ = *inptr++; /* needn't bother with GETJSAMPLE() here */
  138. #endif
  139.   }
  140. }
  141. GLOBAL(void)
  142. jcopy_block_row (JBLOCKROW input_row, JBLOCKROW output_row,
  143.  JDIMENSION num_blocks)
  144. /* Copy a row of coefficient blocks from one place to another. */
  145. {
  146. #ifdef FMEMCOPY
  147.   FMEMCOPY(output_row, input_row, num_blocks * (DCTSIZE2 * SIZEOF(JCOEF)));
  148. #else
  149.   register JCOEFPTR inptr, outptr;
  150.   register long count;
  151.   inptr = (JCOEFPTR) input_row;
  152.   outptr = (JCOEFPTR) output_row;
  153.   for (count = (long) num_blocks * DCTSIZE2; count > 0; count--) {
  154.     *outptr++ = *inptr++;
  155.   }
  156. #endif
  157. }
  158. GLOBAL(void)
  159. jzero_far (void FAR * target, size_t bytestozero)
  160. /* Zero out a chunk of FAR memory. */
  161. /* This might be sample-array data, block-array data, or alloc_large data. */
  162. {
  163. #ifdef FMEMZERO
  164.   FMEMZERO(target, bytestozero);
  165. #else
  166.   register char FAR * ptr = (char FAR *) target;
  167.   register size_t count;
  168.   for (count = bytestozero; count > 0; count--) {
  169.     *ptr++ = 0;
  170.   }
  171. #endif
  172. }