3dphotoshoot

annotate libs/libjpeg/jutils.c @ 15:2d48f65da357

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