Update contrib.
1 /* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
5 /* compress.cpp -- compress a memory buffer
6 * Copyright (C) 1995-2003 Jean-loup Gailly.
7 * For conditions of distribution and use, see copyright notice in zlib.h
15 /* ===========================================================================
16 Compresses the source buffer into the destination buffer. The level
17 parameter has the same meaning as in deflateInit. sourceLen is the byte
18 length of the source buffer. Upon entry, destLen is the total size of the
19 destination buffer, which must be at least 0.1% larger than sourceLen plus
20 12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
22 compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
23 memory, Z_BUF_ERROR if there was not enough room in the output buffer,
24 Z_STREAM_ERROR if the level parameter is invalid.
28 EXPORT_C int compress2_r (Bytef * dest, uLongf * destLen,const Bytef * source,uLong sourceLen,int level)
30 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
36 #endif //__SYMBIAN32__
41 stream.next_in = (Bytef*)source;
42 stream.avail_in = (uInt)sourceLen;
44 /* Check for source > 64K on 16-bit machine: */
45 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
47 stream.next_out = dest;
48 stream.avail_out = (uInt)*destLen;
49 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
51 stream.zalloc = (alloc_func)0;
52 stream.zfree = (free_func)0;
53 stream.opaque = (voidpf)0;
55 err = deflateInit_r(&stream, level);
56 if (err != Z_OK) return err;
58 err = deflate_r(&stream, Z_FINISH);
59 if (err != Z_STREAM_END) {
60 deflateEnd_r(&stream);
61 return err == Z_OK ? Z_BUF_ERROR : err;
63 *destLen = stream.total_out;
65 err = deflateEnd_r(&stream);
69 /* ===========================================================================
73 EXPORT_C int compress_r (Bytef * dest, uLongf * destLen, const Bytef * source, uLong sourceLen)
75 int ZEXPORT compress (dest, destLen, source, sourceLen)
80 #endif //__SYMBIAN32__
82 return compress2_r(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
86 /* ===========================================================================
87 If the default memLevel or windowBits for deflateInit() is changed, then
88 this function needs to be updated.
93 EXPORT_C uLong compressBound_r (uLong sourceLen)
95 uLong ZEXPORT compressBound (sourceLen)
97 #endif //__SYMBIAN32__
99 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + 11;