TTKMusicPlayer  3.7.0.0
TTKMusicPlayer imitates Kugou UI, the music player uses of qmmp core library based on Qt for windows and linux
compress.c
Go to the documentation of this file.
1 /* compress.c -- compress a memory buffer
2  * Copyright (C) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler
3  * For conditions of distribution and use, see copyright notice in zlib.h
4  */
5 
6 /* @(#) $Id$ */
7 
8 #define ZLIB_INTERNAL
9 #include "zlib.h"
10 
11 /* ===========================================================================
12  Compresses the source buffer into the destination buffer. The level
13  parameter has the same meaning as in deflateInit. sourceLen is the byte
14  length of the source buffer. Upon entry, destLen is the total size of the
15  destination buffer, which must be at least 0.1% larger than sourceLen plus
16  12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
17 
18  compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
19  memory, Z_BUF_ERROR if there was not enough room in the output buffer,
20  Z_STREAM_ERROR if the level parameter is invalid.
21 */
22 int ZEXPORT compress2(Bytef *dest, uLongf *destLen, const Bytef *source,
23  uLong sourceLen, int level) {
25  int err;
26  const uInt max = (uInt)-1;
27  uLong left;
28 
29  left = *destLen;
30  *destLen = 0;
31 
32  stream.zalloc = (alloc_func)0;
33  stream.zfree = (free_func)0;
34  stream.opaque = (voidpf)0;
35 
36  err = deflateInit(&stream, level);
37  if (err != Z_OK) return err;
38 
39  stream.next_out = dest;
40  stream.avail_out = 0;
41  stream.next_in = (z_const Bytef *)source;
42  stream.avail_in = 0;
43 
44  do {
45  if (stream.avail_out == 0) {
46  stream.avail_out = left > (uLong)max ? max : (uInt)left;
47  left -= stream.avail_out;
48  }
49  if (stream.avail_in == 0) {
50  stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
51  sourceLen -= stream.avail_in;
52  }
53  err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH);
54  } while (err == Z_OK);
55 
56  *destLen = stream.total_out;
57  deflateEnd(&stream);
58  return err == Z_STREAM_END ? Z_OK : err;
59 }
60 
61 /* ===========================================================================
62  */
63 int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source,
64  uLong sourceLen) {
65  return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
66 }
67 
68 /* ===========================================================================
69  If the default memLevel or windowBits for deflateInit() is changed, then
70  this function needs to be updated.
71  */
73  return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
74  (sourceLen >> 25) + 13;
75 }
uLong ZEXPORT compressBound(uLong sourceLen)
Definition: compress.c:72
#define Z_NO_FLUSH
Definition: zlib.h:168
uInt avail_in
Definition: zlib.h:88
voidpf(* alloc_func)(voidpf opaque, uInt items, uInt size)
Definition: zlib.h:81
int ZEXPORT deflateEnd(z_streamp strm)
Definition: deflate.c:1258
#define z_const
Definition: zconf.h:240
Byte FAR Bytef
Definition: zconf.h:402
voidpf opaque
Definition: zlib.h:100
free_func zfree
Definition: zlib.h:99
constexpr const _Tp & max(const _Tp &a, const _Tp &b)
Definition: ttkcompat.h:33
#define Z_FINISH
Definition: zlib.h:172
unsigned long uLong
Definition: zconf.h:396
#define Z_STREAM_END
Definition: zlib.h:178
int ZEXPORT compress2(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int level)
Definition: compress.c:22
alloc_func zalloc
Definition: zlib.h:98
Bytef * next_out
Definition: zlib.h:91
int ZEXPORT deflate(z_streamp strm, int flush)
Definition: deflate.c:946
voidpf stream
Definition: ioapi.h:136
uLong total_out
Definition: zlib.h:93
uLong FAR uLongf
Definition: zconf.h:407
Byte FAR * voidpf
Definition: zconf.h:415
int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen)
Definition: compress.c:63
#define deflateInit(strm, level)
Definition: zlib.h:1813
uInt avail_out
Definition: zlib.h:92
z_const Bytef * next_in
Definition: zlib.h:87
#define Z_OK
Definition: zlib.h:177
void(* free_func)(voidpf opaque, voidpf address)
Definition: zlib.h:82
#define ZEXPORT
Definition: zconf.h:382
#define Z_DEFAULT_COMPRESSION
Definition: zlib.h:193
unsigned int uInt
Definition: zconf.h:395