blob: c7c1c09808e5e9f2a44ced2e0bbe3de4b6cf5e7f [file] [log] [blame]
initial.commit3d533e02008-07-27 00:38:33 +00001/* inffast.h -- header to use inffast.c
hbono@chromium.orgd2dc2092011-12-12 08:48:38 +00002 * Copyright (C) 1995-2003, 2010 Mark Adler
initial.commit3d533e02008-07-27 00:38:33 +00003 * For conditions of distribution and use, see copyright notice in zlib.h
4 */
5
6/* WARNING: this file should *not* be used by applications. It is
7 part of the implementation of the compression library and is
8 subject to change. Applications should only use zlib.h.
9 */
10
Chris Blumeb9c15662018-02-13 19:57:43 +000011/* INFLATE_FAST_MIN_INPUT: the minimum number of input bytes needed so that
12 we can safely call inflate_fast() with only one up-front bounds check. One
13 length/distance code pair (15 bits for the length code, 5 bits for length
14 extra, 15 bits for the distance code, 13 bits for distance extra) requires
15 reading up to 48 input bits (6 bytes).
16*/
17#define INFLATE_FAST_MIN_INPUT 6
Chris Blume88885112017-09-19 23:07:57 +000018
Chris Blumeb9c15662018-02-13 19:57:43 +000019/* INFLATE_FAST_MIN_OUTPUT: the minimum number of output bytes needed so that
20 we can safely call inflate_fast() with only one up-front bounds check. One
21 length/distance code pair can output up to 258 bytes, which is the maximum
22 length that can be coded.
Chris Blume88885112017-09-19 23:07:57 +000023 */
Chris Blumeb9c15662018-02-13 19:57:43 +000024#define INFLATE_FAST_MIN_OUTPUT 258
Chris Blume88885112017-09-19 23:07:57 +000025
hbono@chromium.orgd2dc2092011-12-12 08:48:38 +000026void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));