FFmpeg
|
Go to the source code of this file.
Macros | |
#define | LZF_LITERAL_MAX (1 << 5) |
#define | LZF_LONG_BACKREF 7 + 2 |
Functions | |
static int | lzf_realloc (uint8_t **buf, size_t *size, int addition, unsigned *allocated_size) |
int | ff_lzf_uncompress (GetByteContext *gb, uint8_t **buf, size_t *size, unsigned *allocated_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.
|
inlinestatic |
Definition at line 41 of file lzf.c.
Referenced by ff_lzf_uncompress().
int ff_lzf_uncompress | ( | GetByteContext * | gb, |
uint8_t ** | buf, | ||
size_t * | size, | ||
unsigned * | allocated_size | ||
) |
Definition at line 55 of file lzf.c.
Referenced by decode_frame(), and dxv_decompress_lzf().