FFmpeg
|
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.
int ff_lzf_uncompress | ( | GetByteContext * | gb, |
uint8_t ** | buf, | ||
int64_t * | size | ||
) |
Definition at line 40 of file lzf.c.
Referenced by decode_frame(), and dxv_decompress_lzf().