FFmpeg
|
lzf decompression More...
Go to the source code of this file.
Macros | |
#define | LZF_LITERAL_MAX (1 << 5) |
#define | LZF_LONG_BACKREF 7 + 2 |
Functions | |
int | ff_lzf_uncompress (GetByteContext *gb, uint8_t **buf, int64_t *size) |
lzf decompression
LZF is a fast compression/decompression algorithm that takes very little code space and working memory, ideal for real-time and block compression.
https://en.wikibooks.org/wiki/Data_Compression/Dictionary_compression#LZF
Definition in file lzf.c.
#define LZF_LITERAL_MAX (1 << 5) |
Definition at line 37 of file lzf.c.
Referenced by ff_lzf_uncompress().
#define LZF_LONG_BACKREF 7 + 2 |
Definition at line 38 of file lzf.c.
Referenced by ff_lzf_uncompress().
int ff_lzf_uncompress | ( | GetByteContext * | gb, |
uint8_t ** | buf, | ||
int64_t * | size | ||
) |
Definition at line 40 of file lzf.c.
Referenced by dxv_decompress_lzf().