From 786872db657f1ba66db48ec61ba19fc5a96ec55b Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Fri, 20 Feb 2015 19:02:26 +0100 Subject: [PATCH] reverted zstd_static.h changes --- lib/zstd_static.h | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/lib/zstd_static.h b/lib/zstd_static.h index b63fbba06..68d8ceec7 100644 --- a/lib/zstd_static.h +++ b/lib/zstd_static.h @@ -57,16 +57,9 @@ typedef void* ZSTD_dctx_t; ZSTD_dctx_t ZSTD_createDCtx(void); size_t ZSTD_freeDCtx(ZSTD_dctx_t dctx); -size_t ZSTD_nextSrcSizeToDecompress(ZSTD_dctx_t dctx); +size_t ZSTD_getNextcBlockSize(ZSTD_dctx_t dctx); size_t ZSTD_decompressContinue(ZSTD_dctx_t dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize); -/* - Use above functions alternatively. - ZSTD_nextSrcSizeToDecompress() tells how much bytes to provide as input to ZSTD_decompressContinue(). - This value is expected to be provided, precisely, as 'srcSize'. - Otherwise, compression will fail (result is an error code, which can be tested using ZSTD_isError() ) - ZSTD_decompressContinue() result is the number of bytes regenerated within 'dst'. - It can be zero, which is not an error; it just means ZSTD_decompressContinue() has decoded some header. -*/ + /************************************** * Error management