JUTILS.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:4k
源码类别:

图片显示

开发平台:

Visual C++

  1. /*
  2.  * jutils.c
  3.  *
  4.  * Copyright (C) 1991-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 miscellaneous utility routines needed for both
  9.  * compression and decompression.
  10.  * Note we prefix all global names with "j" to minimize conflicts with
  11.  * a surrounding application.
  12.  */
  13. #define JPEG_INTERNALS
  14. #include "jinclude.h"
  15. #include "jpeglib.h"
  16. /*
  17.  * Arithmetic utilities
  18.  */
  19. GLOBAL long
  20. jdiv_round_up (long a, long b)
  21. /* Compute a/b rounded up to next integer, ie, ceil(a/b) */
  22. /* Assumes a >= 0, b > 0 */
  23. {
  24.   return (a + b - 1L) / b;
  25. }
  26. GLOBAL long
  27. jround_up (long a, long b)
  28. /* Compute a rounded up to next multiple of b, ie, ceil(a/b)*b */
  29. /* Assumes a >= 0, b > 0 */
  30. {
  31.   a += b - 1L;
  32.   return a - (a % b);
  33. }
  34. /* On normal machines we can apply MEMCOPY() and MEMZERO() to sample arrays
  35.  * and coefficient-block arrays.  This won't work on 80x86 because the arrays
  36.  * are FAR and we're assuming a small-pointer memory model.  However, some
  37.  * DOS compilers provide far-pointer versions of memcpy() and memset() even
  38.  * in the small-model libraries.  These will be used if USE_FMEM is defined.
  39.  * Otherwise, the routines below do it the hard way.  (The performance cost
  40.  * is not all that great, because these routines aren't very heavily used.)
  41.  */
  42. #ifndef NEED_FAR_POINTERS /* normal case, same as regular macros */
  43. #define FMEMCOPY(dest,src,size) MEMCOPY(dest,src,size)
  44. #define FMEMZERO(target,size) MEMZERO(target,size)
  45. #else /* 80x86 case, define if we can */
  46. #ifdef USE_FMEM
  47. #define FMEMCOPY(dest,src,size) _fmemcpy((void FAR *)(dest), (const void FAR *)(src), (size_t)(size))
  48. #define FMEMZERO(target,size) _fmemset((void FAR *)(target), 0, (size_t)(size))
  49. #endif
  50. #endif
  51. GLOBAL void
  52. jcopy_sample_rows (JSAMPARRAY input_array, int source_row,
  53.    JSAMPARRAY output_array, int dest_row,
  54.    int num_rows, JDIMENSION num_cols)
  55. /* Copy some rows of samples from one place to another.
  56.  * num_rows rows are copied from input_array[source_row++]
  57.  * to output_array[dest_row++]; these areas may overlap for duplication.
  58.  * The source and destination arrays must be at least as wide as num_cols.
  59.  */
  60. {
  61.   register JSAMPROW inptr, outptr;
  62. #ifdef FMEMCOPY
  63.   register size_t count = (size_t) (num_cols * SIZEOF(JSAMPLE));
  64. #else
  65.   register JDIMENSION count;
  66. #endif
  67.   register int row;
  68.   input_array += source_row;
  69.   output_array += dest_row;
  70.   for (row = num_rows; row > 0; row--) {
  71.     inptr = *input_array++;
  72.     outptr = *output_array++;
  73. #ifdef FMEMCOPY
  74.     FMEMCOPY(outptr, inptr, count);
  75. #else
  76.     for (count = num_cols; count > 0; count--)
  77.       *outptr++ = *inptr++; /* needn't bother with GETJSAMPLE() here */
  78. #endif
  79.   }
  80. }
  81. GLOBAL void
  82. jcopy_block_row (JBLOCKROW input_row, JBLOCKROW output_row,
  83.  JDIMENSION num_blocks)
  84. /* Copy a row of coefficient blocks from one place to another. */
  85. {
  86. #ifdef FMEMCOPY
  87.   FMEMCOPY(output_row, input_row, num_blocks * (DCTSIZE2 * SIZEOF(JCOEF)));
  88. #else
  89.   register JCOEFPTR inptr, outptr;
  90.   register long count;
  91.   inptr = (JCOEFPTR) input_row;
  92.   outptr = (JCOEFPTR) output_row;
  93.   for (count = (long) num_blocks * DCTSIZE2; count > 0; count--) {
  94.     *outptr++ = *inptr++;
  95.   }
  96. #endif
  97. }
  98. GLOBAL void
  99. jzero_far (void FAR * target, size_t bytestozero)
  100. /* Zero out a chunk of FAR memory. */
  101. /* This might be sample-array data, block-array data, or alloc_medium data. */
  102. {
  103. #ifdef FMEMZERO
  104.   FMEMZERO(target, bytestozero);
  105. #else
  106.   register char FAR * ptr = (char FAR *) target;
  107.   register size_t count;
  108.   for (count = bytestozero; count > 0; count--) {
  109.     *ptr++ = 0;
  110.   }
  111. #endif
  112. }