annotate src/zlib-1.2.7/compress.c @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 8a15ff55d9af
children
rev   line source
cannam@89 1 /* compress.c -- compress a memory buffer
cannam@89 2 * Copyright (C) 1995-2005 Jean-loup Gailly.
cannam@89 3 * For conditions of distribution and use, see copyright notice in zlib.h
cannam@89 4 */
cannam@89 5
cannam@89 6 /* @(#) $Id$ */
cannam@89 7
cannam@89 8 #define ZLIB_INTERNAL
cannam@89 9 #include "zlib.h"
cannam@89 10
cannam@89 11 /* ===========================================================================
cannam@89 12 Compresses the source buffer into the destination buffer. The level
cannam@89 13 parameter has the same meaning as in deflateInit. sourceLen is the byte
cannam@89 14 length of the source buffer. Upon entry, destLen is the total size of the
cannam@89 15 destination buffer, which must be at least 0.1% larger than sourceLen plus
cannam@89 16 12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
cannam@89 17
cannam@89 18 compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
cannam@89 19 memory, Z_BUF_ERROR if there was not enough room in the output buffer,
cannam@89 20 Z_STREAM_ERROR if the level parameter is invalid.
cannam@89 21 */
cannam@89 22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
cannam@89 23 Bytef *dest;
cannam@89 24 uLongf *destLen;
cannam@89 25 const Bytef *source;
cannam@89 26 uLong sourceLen;
cannam@89 27 int level;
cannam@89 28 {
cannam@89 29 z_stream stream;
cannam@89 30 int err;
cannam@89 31
cannam@89 32 stream.next_in = (Bytef*)source;
cannam@89 33 stream.avail_in = (uInt)sourceLen;
cannam@89 34 #ifdef MAXSEG_64K
cannam@89 35 /* Check for source > 64K on 16-bit machine: */
cannam@89 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
cannam@89 37 #endif
cannam@89 38 stream.next_out = dest;
cannam@89 39 stream.avail_out = (uInt)*destLen;
cannam@89 40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
cannam@89 41
cannam@89 42 stream.zalloc = (alloc_func)0;
cannam@89 43 stream.zfree = (free_func)0;
cannam@89 44 stream.opaque = (voidpf)0;
cannam@89 45
cannam@89 46 err = deflateInit(&stream, level);
cannam@89 47 if (err != Z_OK) return err;
cannam@89 48
cannam@89 49 err = deflate(&stream, Z_FINISH);
cannam@89 50 if (err != Z_STREAM_END) {
cannam@89 51 deflateEnd(&stream);
cannam@89 52 return err == Z_OK ? Z_BUF_ERROR : err;
cannam@89 53 }
cannam@89 54 *destLen = stream.total_out;
cannam@89 55
cannam@89 56 err = deflateEnd(&stream);
cannam@89 57 return err;
cannam@89 58 }
cannam@89 59
cannam@89 60 /* ===========================================================================
cannam@89 61 */
cannam@89 62 int ZEXPORT compress (dest, destLen, source, sourceLen)
cannam@89 63 Bytef *dest;
cannam@89 64 uLongf *destLen;
cannam@89 65 const Bytef *source;
cannam@89 66 uLong sourceLen;
cannam@89 67 {
cannam@89 68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
cannam@89 69 }
cannam@89 70
cannam@89 71 /* ===========================================================================
cannam@89 72 If the default memLevel or windowBits for deflateInit() is changed, then
cannam@89 73 this function needs to be updated.
cannam@89 74 */
cannam@89 75 uLong ZEXPORT compressBound (sourceLen)
cannam@89 76 uLong sourceLen;
cannam@89 77 {
cannam@89 78 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
cannam@89 79 (sourceLen >> 25) + 13;
cannam@89 80 }