mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
Merge branch 'bugfix/miniz_header_doc_v4.4' into 'release/v4.4'
esp-rom: fixed error in miniz header documention for tdefl_init (v4.4) See merge request espressif/esp-idf!19910
This commit is contained in:
@ -760,7 +760,7 @@ typedef struct
|
|||||||
|
|
||||||
// Initializes the compressor.
|
// Initializes the compressor.
|
||||||
// There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory.
|
// There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory.
|
||||||
// pBut_buf_func: If NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression.
|
// pBut_buf_func: If **not** NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression.
|
||||||
// If pBut_buf_func is NULL the user should always call the tdefl_compress() API.
|
// If pBut_buf_func is NULL the user should always call the tdefl_compress() API.
|
||||||
// flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.)
|
// flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.)
|
||||||
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);
|
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);
|
||||||
|
@ -729,7 +729,7 @@ typedef struct {
|
|||||||
|
|
||||||
// Initializes the compressor.
|
// Initializes the compressor.
|
||||||
// There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory.
|
// There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory.
|
||||||
// pBut_buf_func: If NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression.
|
// pBut_buf_func: If **not** NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression.
|
||||||
// If pBut_buf_func is NULL the user should always call the tdefl_compress() API.
|
// If pBut_buf_func is NULL the user should always call the tdefl_compress() API.
|
||||||
// flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.)
|
// flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.)
|
||||||
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);
|
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);
|
||||||
|
@ -729,7 +729,7 @@ typedef struct {
|
|||||||
|
|
||||||
// Initializes the compressor.
|
// Initializes the compressor.
|
||||||
// There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory.
|
// There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory.
|
||||||
// pBut_buf_func: If NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression.
|
// pBut_buf_func: If **not** NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression.
|
||||||
// If pBut_buf_func is NULL the user should always call the tdefl_compress() API.
|
// If pBut_buf_func is NULL the user should always call the tdefl_compress() API.
|
||||||
// flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.)
|
// flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.)
|
||||||
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);
|
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);
|
||||||
|
@ -745,7 +745,7 @@ typedef struct
|
|||||||
|
|
||||||
// Initializes the compressor.
|
// Initializes the compressor.
|
||||||
// There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory.
|
// There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory.
|
||||||
// pBut_buf_func: If NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression.
|
// pBut_buf_func: If **not** NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression.
|
||||||
// If pBut_buf_func is NULL the user should always call the tdefl_compress() API.
|
// If pBut_buf_func is NULL the user should always call the tdefl_compress() API.
|
||||||
// flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.)
|
// flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.)
|
||||||
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);
|
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);
|
||||||
|
@ -728,7 +728,7 @@ typedef struct {
|
|||||||
|
|
||||||
// Initializes the compressor.
|
// Initializes the compressor.
|
||||||
// There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory.
|
// There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory.
|
||||||
// pBut_buf_func: If NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression.
|
// pBut_buf_func: If **not** NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression.
|
||||||
// If pBut_buf_func is NULL the user should always call the tdefl_compress() API.
|
// If pBut_buf_func is NULL the user should always call the tdefl_compress() API.
|
||||||
// flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.)
|
// flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.)
|
||||||
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);
|
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);
|
||||||
|
Reference in New Issue
Block a user