]>
git.ipfire.org Git - thirdparty/zstd.git/log
Jos Collin [Thu, 11 May 2017 07:47:20 +0000 (13:17 +0530)]
lib/compress: warning: this statement may fall through
The following warning appears during build.
../lib/compress/huf_compress.c: In function ‘HUF_compress1X_usingCTable’:
../lib/compress/huf_compress.c:444:8: warning: this statement may fall through [-Wimplicit-fallthrough=]
if (sizeof((stream)->bitContainer)*8 < HUF_TABLELOG_MAX*4+7) HUF_FLUSHBITS(stream)
^
../lib/compress/huf_compress.c:465:18: note: in expansion of macro ‘HUF_FLUSHBITS_2’
HUF_FLUSHBITS_2(&bitC);
^~~~~~~~~~~~~~~
../lib/compress/huf_compress.c:466:9: note: here
case 2 : HUF_encodeSymbol(&bitC, ip[n+ 1], CTable);
../lib/compress/zstd_compress.c: In function ‘ZSTD_compressStream_generic’:
../lib/compress/zstd_compress.c:3366:34: warning: this statement may fall through [-Wimplicit-fallthrough=]
zcs->streamStage = zcss_flush; /* pass-through to flush stage */
~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
../lib/compress/zstd_compress.c:3369:9: note: here
case zcss_flush:
Signed-off-by: Jos Collin <jcollin@redhat.com>
Yann Collet [Thu, 11 May 2017 01:46:48 +0000 (18:46 -0700)]
Merge pull request #692 from terrelln/btopt
Rename ZSTD_btopt2 to ZSTD_btultra
Nick Terrell [Thu, 11 May 2017 00:48:42 +0000 (17:48 -0700)]
Update whitespace
Nick Terrell [Wed, 10 May 2017 23:51:18 +0000 (16:51 -0700)]
Update zstd.1.md to use btultra
Nick Terrell [Wed, 10 May 2017 23:49:58 +0000 (16:49 -0700)]
Merge remote-tracking branch 'upstream/dev' into btopt
* upstream/dev: (305 commits)
added test for ZSTD_estimateCStreamSize()
changed variable name, for clarity
fixed ZSTD_estimateCStreamSize()
shortened ZSTD_createCStream_Advanced()
fixed symbols test
added ZSTD_estimateDStreamSize()
changed name frameParams into frameHeader
regroup memory usage function declarations
separated ZSTD_estimateCStreamSize() from ZSTD_estimateCCtxSize()
bumped version number
added ZSTD_estimateCDictSize() and ZSTD_estimateDDictSize()
Updated ZSTD_freeCCtx()
updated ZSTD_estimateCCtxSize()
Updated ZSTD_sizeof_CCtx()
merged CCtx and CStream as a single same object
cli : -d and -t do not stop after a failed decompression
added dev branch CircleCI badge
added dev branch Appveyor badge
keep dev branch status only
creates a binary archive without the `programs` directory
...
Yann Collet [Wed, 10 May 2017 21:53:54 +0000 (14:53 -0700)]
Merge pull request #689 from facebook/cctxMerge
Cctx merge
Yann Collet [Wed, 10 May 2017 18:30:19 +0000 (11:30 -0700)]
added test for ZSTD_estimateCStreamSize()
Yann Collet [Wed, 10 May 2017 18:14:08 +0000 (11:14 -0700)]
changed variable name, for clarity
fhiPtr -> zfhPtr
https://github.com/facebook/zstd/pull/689#discussion_r115638676
Yann Collet [Wed, 10 May 2017 18:08:00 +0000 (11:08 -0700)]
fixed ZSTD_estimateCStreamSize()
https://github.com/facebook/zstd/pull/689#discussion_r115637721
Yann Collet [Wed, 10 May 2017 18:06:06 +0000 (11:06 -0700)]
shortened ZSTD_createCStream_Advanced()
https://github.com/facebook/zstd/pull/689#discussion_r115637613
Yann Collet [Tue, 9 May 2017 23:53:09 +0000 (16:53 -0700)]
fixed symbols test
Yann Collet [Tue, 9 May 2017 23:18:17 +0000 (16:18 -0700)]
added ZSTD_estimateDStreamSize()
Yann Collet [Tue, 9 May 2017 22:46:07 +0000 (15:46 -0700)]
changed name frameParams into frameHeader
ZSTD_frameParams => ZSTD_frameHeader
ZSTD_getFrameParams() -> ZSTD_getFrameHeader()
The new naming is more distinctive from ZSTD_frameParameters,
which is used during compression.
ZSTD_frameHeader is clearer in its intention to described frame header content.
It also implies we are decoding a ZSTD frame, hence we are at decoding stage.
Yann Collet [Tue, 9 May 2017 22:11:30 +0000 (15:11 -0700)]
regroup memory usage function declarations
in a single paragraph in zstd.h, for clarity
Yann Collet [Tue, 9 May 2017 01:24:16 +0000 (18:24 -0700)]
separated ZSTD_estimateCStreamSize() from ZSTD_estimateCCtxSize()
for clarity
Yann Collet [Tue, 9 May 2017 00:52:46 +0000 (17:52 -0700)]
bumped version number
Yann Collet [Tue, 9 May 2017 00:51:49 +0000 (17:51 -0700)]
added ZSTD_estimateCDictSize() and ZSTD_estimateDDictSize()
it complements ZSTD_estimateCCtxSize()
for the special case of ZSTD_initCStream_usingDict()
Yann Collet [Tue, 9 May 2017 00:15:00 +0000 (17:15 -0700)]
Updated ZSTD_freeCCtx()
which can also contain streaming buffers now.
Redirected ZSTD_freeCStream() towards it.
Yann Collet [Tue, 9 May 2017 00:07:59 +0000 (17:07 -0700)]
updated ZSTD_estimateCCtxSize()
added a parameter streaming,
to estimate memory allocation size
when the CCtx is used for streaming (CStream).
Note : this function is not able to estimate
memory cost of a potential internal CDict
which can only happen when starting with ZSTD_initCStream_usingDict()
Yann Collet [Mon, 8 May 2017 23:17:30 +0000 (16:17 -0700)]
Updated ZSTD_sizeof_CCtx()
can now contain buffers if object used as CStream.
ZSTD_sizeof_CStream() is now just a thin wrapper of ZSTD_sizeof_CCtx().
Yann Collet [Mon, 8 May 2017 23:08:01 +0000 (16:08 -0700)]
merged CCtx and CStream as a single same object
To be changed : ZSTD_sizeof_CCtx(), ZSTD_estimateCCtxSize()
Yann Collet [Mon, 8 May 2017 20:41:56 +0000 (13:41 -0700)]
Merge pull request #654 from iburinoc/splittable
[RFC] Splittable Format and API
Yann Collet [Mon, 8 May 2017 18:38:01 +0000 (11:38 -0700)]
Merge pull request #687 from facebook/permissiveTest
cli : -d and -t do not stop after a failed decompression
Yann Collet [Sat, 6 May 2017 02:15:24 +0000 (19:15 -0700)]
cli : -d and -t do not stop after a failed decompression
The problematic srcfile will be named on console/log,
but decompression/test will continue onto next file in the list.
Yann Collet [Fri, 5 May 2017 22:55:03 +0000 (15:55 -0700)]
added dev branch CircleCI badge
Yann Collet [Fri, 5 May 2017 22:48:42 +0000 (15:48 -0700)]
added dev branch Appveyor badge
Yann Collet [Fri, 5 May 2017 22:41:23 +0000 (15:41 -0700)]
keep dev branch status only
master branch status is removed, due to misattribution during cron jobs
Yann Collet [Fri, 5 May 2017 00:40:40 +0000 (17:40 -0700)]
creates a binary archive without the `programs` directory
also improves compression ratio to -mx9
Yann Collet [Fri, 5 May 2017 00:30:37 +0000 (17:30 -0700)]
Appveyor build artefact creates zipped cli binary
Yann Collet [Fri, 5 May 2017 00:26:58 +0000 (17:26 -0700)]
removed zstdmt generation from Appveyor artefact build
Yann Collet [Fri, 5 May 2017 00:24:29 +0000 (17:24 -0700)]
removed -g from DEBUGFLAGS
It inflates binary sizes, which is negative for the Windows build.
It also makes it impossible to check if 2 different source codes
get nonetheless compiled to the same binary,
since checksum will be different, due to integrated source code.
Yann Collet [Wed, 3 May 2017 21:33:39 +0000 (14:33 -0700)]
Merge branch 'dev' of github.com:facebook/zstd into dev
Yann Collet [Wed, 3 May 2017 21:32:33 +0000 (14:32 -0700)]
updated dict graphs to 2D mode
Yann Collet [Wed, 3 May 2017 18:42:31 +0000 (11:42 -0700)]
Merge pull request #685 from terrelln/squashfs-bench
[kernel] Update README with SquashFS patch
Nick Terrell [Wed, 3 May 2017 18:07:39 +0000 (11:07 -0700)]
[kernel] Update README with SquashFS patch
Take patch from PR #682 by @iburinoc and update benchmarks.
Yann Collet [Wed, 3 May 2017 00:18:24 +0000 (17:18 -0700)]
updated programs/README.md, to introduce compilation variables
make it possible to enable/disable features individually
Yann Collet [Tue, 2 May 2017 23:55:57 +0000 (16:55 -0700)]
reorganized Makefile for multiple targets
Yann Collet [Tue, 2 May 2017 23:38:37 +0000 (16:38 -0700)]
added xzstd4 target
support for all formats, xz/lzma/lz4 included
Yann Collet [Tue, 2 May 2017 22:40:42 +0000 (15:40 -0700)]
fixed xzstd
--format=xz was missing a break, making the execution continue into lz4 error message
Yann Collet [Tue, 2 May 2017 21:39:42 +0000 (14:39 -0700)]
Merge branch 'dev' of github.com:facebook/zstd into dev
Yann Collet [Tue, 2 May 2017 21:39:03 +0000 (14:39 -0700)]
updated DSpeed chart to remove 3D effect (#589)
Yann Collet [Tue, 2 May 2017 21:07:52 +0000 (14:07 -0700)]
Merge pull request #684 from terrelln/btrfs-init
[btrfs] Update patch to use ZSTD_init{C,D}Stream()
Nick Terrell [Tue, 2 May 2017 20:57:40 +0000 (13:57 -0700)]
[btrfs] Fix typo in pr_warn() message
Nick Terrell [Tue, 2 May 2017 20:41:57 +0000 (13:41 -0700)]
[btrfs] Update patch to use ZSTD_init{C,D}Stream()
Yann Collet [Tue, 2 May 2017 19:14:12 +0000 (12:14 -0700)]
updated NEWS for v1.2.0
Yann Collet [Tue, 2 May 2017 19:13:52 +0000 (12:13 -0700)]
Merge branch 'dev' of github.com:facebook/zstd into dev
Yann Collet [Tue, 2 May 2017 19:13:23 +0000 (12:13 -0700)]
Merge pull request #683 from terrelln/odev
[CLI] Make cover the default dictionary builder
Nick Terrell [Tue, 2 May 2017 06:40:20 +0000 (23:40 -0700)]
[CLI] Switch dictionary builder on CLI to cover
Nick Terrell [Tue, 2 May 2017 04:26:33 +0000 (21:26 -0700)]
[cover] Make optimization faster
Nick Terrell [Mon, 1 May 2017 17:25:49 +0000 (10:25 -0700)]
[cover] Optimize case where d <= 8
Nick Terrell [Mon, 1 May 2017 17:14:15 +0000 (10:14 -0700)]
Fix typo in zdict.h
Nick Terrell [Mon, 1 May 2017 17:13:56 +0000 (10:13 -0700)]
Fix LZ4_MSG in xzstd
Yann Collet [Mon, 1 May 2017 18:22:24 +0000 (11:22 -0700)]
minor code refactoring for clarity
Yann Collet [Mon, 1 May 2017 18:12:30 +0000 (11:12 -0700)]
fixed const in prototype, that Visual doesn't accept
Yann Collet [Mon, 1 May 2017 16:56:03 +0000 (09:56 -0700)]
sync bitstream.h from fse library
Yann Collet [Sat, 29 Apr 2017 00:00:46 +0000 (17:00 -0700)]
Merge branch 'dev' of github.com:facebook/zstd into dev
Yann Collet [Fri, 28 Apr 2017 23:56:39 +0000 (16:56 -0700)]
sync bitstream from FSE project
add assert into unsafe *_fast() variants
Yann Collet [Fri, 28 Apr 2017 23:52:36 +0000 (16:52 -0700)]
minor code refactoring
clearer tables
Yann Collet [Fri, 28 Apr 2017 19:46:48 +0000 (12:46 -0700)]
added HUF_PUBLIC_API macro to huf.h
to make it possible to control symbol visibility.
Also : better separation and comments between "public" and "static" sections
Sean Purcell [Fri, 28 Apr 2017 19:17:09 +0000 (12:17 -0700)]
Add raw seek table construction API and parallel compression example
Yann Collet [Fri, 28 Apr 2017 17:27:42 +0000 (10:27 -0700)]
Merge pull request #680 from iburinoc/sqfs-kernel
SquashFS linux kernel patch
Yann Collet [Fri, 28 Apr 2017 17:02:45 +0000 (10:02 -0700)]
Merge pull request #678 from facebook/apiChange
Breaking API Change around CDict
Yann Collet [Fri, 28 Apr 2017 15:54:13 +0000 (08:54 -0700)]
minor release note update
Yann Collet [Fri, 28 Apr 2017 00:44:01 +0000 (17:44 -0700)]
Changed default level 18 (large input)
Previous -18 : 4.7 MB/s, R:3.833
New -18 : 5.1 MB/s. R:3.825
It's a better fit within -17 (6.8 MB/s) and -19 (4.0 MB/s)
The new level 18 also uses significantly less memory.
And, it makes a good transition between level 17 (mml5)
and level 19 (mml3).
Up to now, there was no level with mml4.
(note : minmatch setting can have a large impact on some (specific) datasets)
Yann Collet [Fri, 28 Apr 2017 00:29:52 +0000 (17:29 -0700)]
Merge branch 'dev' of github.com:facebook/zstd into dev
Yann Collet [Fri, 28 Apr 2017 00:28:32 +0000 (17:28 -0700)]
tests : -g is part of DEBUGFLAGS
Sean Purcell [Fri, 28 Apr 2017 00:19:20 +0000 (17:19 -0700)]
Fix missing squashfs_finish_page's
Sean Purcell [Thu, 27 Apr 2017 23:54:05 +0000 (16:54 -0700)]
Fix case where pages run out before end of stream
Yann Collet [Thu, 27 Apr 2017 23:31:03 +0000 (16:31 -0700)]
Merge pull request #679 from terrelln/dev
[kernel] Rename ZSTD_create*() to ZSTD_init*()
Yann Collet [Thu, 27 Apr 2017 23:24:53 +0000 (16:24 -0700)]
shortened Appveyor release tests
fuzzer supports time suffix `s` for "seconds"
Yann Collet [Thu, 27 Apr 2017 22:08:56 +0000 (15:08 -0700)]
Added a secondary test, checking dictID presence after setting noDictIdFLag=1
Sean Purcell [Thu, 27 Apr 2017 22:04:31 +0000 (15:04 -0700)]
SquashFS linux kernel patch
Yann Collet [Thu, 27 Apr 2017 21:48:34 +0000 (14:48 -0700)]
added test for ZSTD_initCStream_usingCDict_advanced()
Yann Collet [Thu, 27 Apr 2017 21:39:39 +0000 (14:39 -0700)]
added test for ZSTD_compress_usingCDict_advanced()
Yann Collet [Thu, 27 Apr 2017 21:29:35 +0000 (14:29 -0700)]
removed C4204
Yann Collet [Thu, 27 Apr 2017 21:19:34 +0000 (14:19 -0700)]
fixed another VS2008 init error
Yann Collet [Thu, 27 Apr 2017 19:57:11 +0000 (12:57 -0700)]
fixed init error on Visual 2008
Yann Collet [Thu, 27 Apr 2017 19:50:20 +0000 (12:50 -0700)]
bumped version number to v1.2.0
Yann Collet [Thu, 27 Apr 2017 19:49:22 +0000 (12:49 -0700)]
updated NEWS
Yann Collet [Thu, 27 Apr 2017 19:05:00 +0000 (12:05 -0700)]
Merge pull request #677 from terrelln/pzstd-tests
[pzstd] Add logging statements to tests
Yann Collet [Thu, 27 Apr 2017 18:43:04 +0000 (11:43 -0700)]
added ZSTD_initCStream_usingCDict_advanced()
Yann Collet [Thu, 27 Apr 2017 18:31:55 +0000 (11:31 -0700)]
created ZSTD_compress_usingCDict_advanced()
Nick Terrell [Thu, 27 Apr 2017 16:55:19 +0000 (09:55 -0700)]
[pzstd] Add logging statements to tests
Yann Collet [Thu, 27 Apr 2017 08:10:36 +0000 (01:10 -0700)]
fixed compilation warning : declaration-after-statement
Yann Collet [Thu, 27 Apr 2017 07:29:04 +0000 (00:29 -0700)]
Changed ZSTD_createCDict_advanced()
It now only uses compressionParameters as argument.
It produces many changes throughout user code,
though hopefully they tend to be simple :
just provide the cParams part from existing ZSTD_parameters.
Some programs might depend on ZSTD_createCDict_advanced() to pass frame parameters.
This change will force them to revisit this strategy and fix it,
since frame parameters are effectively silently ignored in current version.
Yann Collet [Wed, 26 Apr 2017 22:42:10 +0000 (15:42 -0700)]
changed ZSTD_compressBegin_usingCDict()
No longer takes `pledgedSrcSize` as argument
this is in line with similar functions ZSTD_compress_usingCDict()
and ZSTD_initCStream_usingCDict().
Yann Collet [Wed, 26 Apr 2017 21:03:26 +0000 (14:03 -0700)]
Merge pull request #670 from facebook/smallCCtx
Small cctx
Yann Collet [Wed, 26 Apr 2017 20:13:24 +0000 (13:13 -0700)]
Merge pull request #675 from iburinoc/lz4
Fix LZ4 wrapper deprecation warnings
Nick Terrell [Wed, 26 Apr 2017 20:06:38 +0000 (13:06 -0700)]
Rename ZSTD_create*() to ZSTD_init*()
Yann Collet [Wed, 26 Apr 2017 18:39:35 +0000 (11:39 -0700)]
Comply with suggested comments by @terrelln
created FSE_CTABLE_SIZE() and FSE_DTABLE_SIZE()
Sean Purcell [Wed, 26 Apr 2017 17:17:38 +0000 (10:17 -0700)]
Fix LZ4 wrapper deprecation warnings
Yann Collet [Wed, 26 Apr 2017 16:45:36 +0000 (09:45 -0700)]
Merge pull request #674 from niXman/dev
unchecked argv[idx] access
Yann Collet [Wed, 26 Apr 2017 16:32:16 +0000 (09:32 -0700)]
Merge pull request #673 from iburinoc/lz4
Add LZ4 compress/decompress support to CLI
niXman [Wed, 26 Apr 2017 10:04:04 +0000 (13:04 +0300)]
unchecked argv[idx] access
Sean Purcell [Tue, 25 Apr 2017 18:00:54 +0000 (11:00 -0700)]
Make lz4 compression/decompression compatible with library r123
Sean Purcell [Mon, 24 Apr 2017 23:48:25 +0000 (16:48 -0700)]
Add LZ4 compress/decompress support to CLI
Sean Purcell [Fri, 21 Apr 2017 21:18:39 +0000 (14:18 -0700)]
Merge remote-tracking branch 'origin/dev' into splittable
Sean Purcell [Fri, 21 Apr 2017 19:23:06 +0000 (12:23 -0700)]
Add parallel processing example for seekable API
Yann Collet [Fri, 21 Apr 2017 18:38:13 +0000 (11:38 -0700)]
cli : add support for --threads=# command
updated documentation
add relevant test case
Yann Collet [Fri, 21 Apr 2017 17:59:36 +0000 (10:59 -0700)]
ignore more cmake build artefacts