| OLD | NEW |
| 1 /* uncompr.c -- decompress a memory buffer | 1 /* uncompr.c -- decompress a memory buffer |
| 2 * Copyright (C) 1995-2003 Jean-loup Gailly. | 2 * Copyright (C) 1995-2003, 2010 Jean-loup Gailly. |
| 3 * For conditions of distribution and use, see copyright notice in zlib.h | 3 * For conditions of distribution and use, see copyright notice in zlib.h |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 /* @(#) $Id: uncompr.c,v 3.6 2005/08/04 19:14:14 tor%cs.brown.edu Exp $ */ | 6 /* @(#) $Id$ */ |
| 7 | 7 |
| 8 #define ZLIB_INTERNAL | 8 #define ZLIB_INTERNAL |
| 9 #include "zlib.h" | 9 #include "zlib.h" |
| 10 | 10 |
| 11 /* =========================================================================== | 11 /* =========================================================================== |
| 12 Decompresses the source buffer into the destination buffer. sourceLen is | 12 Decompresses the source buffer into the destination buffer. sourceLen is |
| 13 the byte length of the source buffer. Upon entry, destLen is the total | 13 the byte length of the source buffer. Upon entry, destLen is the total |
| 14 size of the destination buffer, which must be large enough to hold the | 14 size of the destination buffer, which must be large enough to hold the |
| 15 entire uncompressed data. (The size of the uncompressed data must have | 15 entire uncompressed data. (The size of the uncompressed data must have |
| 16 been saved previously by the compressor and transmitted to the decompressor | 16 been saved previously by the compressor and transmitted to the decompressor |
| 17 by some mechanism outside the scope of this compression library.) | 17 by some mechanism outside the scope of this compression library.) |
| 18 Upon exit, destLen is the actual size of the compressed buffer. | 18 Upon exit, destLen is the actual size of the compressed buffer. |
| 19 This function can be used to decompress a whole file at once if the | |
| 20 input file is mmap'ed. | |
| 21 | 19 |
| 22 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not | 20 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not |
| 23 enough memory, Z_BUF_ERROR if there was not enough room in the output | 21 enough memory, Z_BUF_ERROR if there was not enough room in the output |
| 24 buffer, or Z_DATA_ERROR if the input data was corrupted. | 22 buffer, or Z_DATA_ERROR if the input data was corrupted. |
| 25 */ | 23 */ |
| 26 int ZEXPORT uncompress (dest, destLen, source, sourceLen) | 24 int ZEXPORT uncompress (dest, destLen, source, sourceLen) |
| 27 Bytef *dest; | 25 Bytef *dest; |
| 28 uLongf *destLen; | 26 uLongf *destLen; |
| 29 const Bytef *source; | 27 const Bytef *source; |
| 30 uLong sourceLen; | 28 uLong sourceLen; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 52 inflateEnd(&stream); | 50 inflateEnd(&stream); |
| 53 if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0)) | 51 if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0)) |
| 54 return Z_DATA_ERROR; | 52 return Z_DATA_ERROR; |
| 55 return err; | 53 return err; |
| 56 } | 54 } |
| 57 *destLen = stream.total_out; | 55 *destLen = stream.total_out; |
| 58 | 56 |
| 59 err = inflateEnd(&stream); | 57 err = inflateEnd(&stream); |
| 60 return err; | 58 return err; |
| 61 } | 59 } |
| OLD | NEW |