summaryrefslogtreecommitdiffstats
path: root/programs
Commit message (Collapse)AuthorAgeFilesLines
* update docYann Collet2020-11-151-1/+1
|
* Merge pull request #953 from lz4/vs2005Yann Collet2020-11-151-3/+3
|\ | | | | better MSVC conformance
| * better visual conformanceYann Collet2020-11-151-3/+3
| | | | | | | | | | | | only include <intrin.h> on vs2005+ (#947) remove some useless #pragma fix a few minor Visual warnings
* | fix minor parse warningYann Collet2020-11-141-1/+1
| |
* | all usages of prefs within lz4io are constYann Collet2020-11-143-45/+48
| |
* | LZ4IO_openDstFile() doesn't need pref mutabilityYann Collet2020-11-142-33/+36
| |
* | fixed force --sparse modeYann Collet2020-11-141-1/+1
|/
* dictionary functions don't need prefs mutabilityYann Collet2020-11-141-4/+5
|
* LZ4IO_createDict() doesn't need prefsYann Collet2020-11-141-27/+30
|
* LZ4IO_decompressSrcFile() doesn't need mutable prefsYann Collet2020-11-141-5/+5
|
* selectDecoder() doesn't need mutable prefsYann Collet2020-11-141-4/+4
|
* LZ4IO_passThrough() doesn't need prefsYann Collet2020-11-141-9/+14
|
* LZ4IO_decompressLZ4F() doesn't need mutable prefsYann Collet2020-11-141-4/+14
|
* LZ4IO_decodeLegacyStream() doesn't need mutable prefsYann Collet2020-11-141-9/+9
|
* LZ4IO_fwriteSparse doesn't need writable prefsYann Collet2020-11-141-5/+10
|
* minor refactorYann Collet2020-11-131-32/+28
| | | | mostly on the compression code path
* minor refactor of lz4ioYann Collet2020-11-131-96/+95
| | | | | for readability. Mostly around --list capability
* fix minor static analyzer warningsYann Collet2020-09-303-17/+15
| | | | | detected by scan-build and cppcheck fix #786
* fixup: Portable fileno()Niklas Hambüchen2020-08-251-1/+10
|
* fixup: C90 compliance, clean up stat() types/callsNiklas Hambüchen2020-08-251-27/+31
|
* Use fstat() to determine file size.Niklas Hambüchen2020-08-242-3/+28
| | | | | | | | | | | | This allows us to get the file size even when the input file is passed via stdin. This fixes `--content-size` not working in situations like $ lz4 -v --content-size < /tmp/test > /tmp/test.lz4 Warning : cannot determine input content size With this change, it works. Also helps with #904.
* added target lz4-wlibYann Collet2020-08-112-6/+21
| | | | | | | | variant of lz4 linking to liblz4 dynamic library requires the dynamic library to expose static-only symbols (experimental API) Example for #888
* Implement -m option with legacy format on cliFilipe Calasans2020-02-082-4/+58
|
* Fix lz4cli --list optionFilipe Calasans2020-02-072-5/+6
|
* bring support for Haiku up to date.Jerome Duval2019-11-072-1/+6
|
* Make benchmark compatible with dictionary compressionReto Koradi2019-11-063-53/+244
| | | | | | | | | | | | | | | Support the -D command line option for running benchmarks. The benchmark code was slightly restructured to factor out the calls that need to be different for each benchmark scenario. Since there are now 4 scenarios (all combinations of fast/HC and with/without dictionary), the logic was getting somewhat convoluted otherwise. This was done by extending the compressionParameters struct that previously contained just a single function pointer. It now contains 4 function pointers for init/reset/compress/cleanup, with the related state. The functions get a pointer to the structure as their first argument (inspired by C++), so that they can access the state values in the struct.
* util.h: Remove deprecated utime for non-WindowsRosen Penev2019-09-102-6/+20
| | | | utime was deprecated in POSIX 2008.
* lz4cli: add option '--best' as an alias of '-12'WHR2019-07-233-0/+11
|
* bumped version number to v1.9.2Yann Collet2019-07-012-9/+9
| | | | to reduce risks that future bug reports in `dev` branch report `v1.9.1` as the failing version.
* fix #734 : --version should output to stdoutYann Collet2019-06-241-2/+3
| | | | instead of stderr
* Handle file not existing case #704gabrielstedman2019-05-261-3/+10
|
* List mode improvements.gstedman2019-05-162-189/+204
| | | | | | | | | Improve formatting Include static assert Use UTIL_fseek to handle potential fseek limitation Be explicit when refusing to read from stdin Properly free dctx after use Include valgrind tests
* Add multiframe report to --list commandgstedman2019-05-152-92/+287
|
* More build imrpvementsJPeterMugaas2019-04-232-21/+59
| | | | | | Moved a few other tests to Makefiles.inc. Other things might need to go there. Made a test for symlink appropriateness. Windows can NOT handle them the same way Unix-like operating systems do (if at all). This is mostly the same as the Visual C projects. embed version info into .dll and .exes that are redistributed.
* Merge pull request #691 from lz4/listYann Collet2019-04-235-18/+175
|\ | | | | --list
| * fix: no leak when LZ4F_dctx creation failsYann Collet2019-04-221-9/+4
| | | | | | | | | | strange, because it previous implementation, it would `exit()`, so it should not matter ...
| * updated code commentsYann Collet2019-04-221-4/+5
| |
| * --list gives block typeYann Collet2019-04-223-9/+24
| |
| * --list can resume after a failed fileYann Collet2019-04-222-44/+61
| |
| * refactored --list functionYann Collet2019-04-223-93/+110
| | | | | | | | | | | | | | better handling of special conditions, better scoping of variables. Also : updated man page
| * fixed C90 complianceYann Collet2019-04-223-61/+74
| | | | | | | | re-structure code, have everything into a single section of lz4io.c
| * FR #598 - Correctly initialize cfinfo & cast malloc res to (char*)gabrielstedman2019-04-221-2/+2
| |
| * FR #598 - Make fileSize unsigned long longgabrielstedman2019-04-221-2/+2
| |
| * FR #598 - Move LZ4F_compFileInfo_t def to lz4frame.h discard output_filegabrielstedman2019-04-223-15/+17
| | | | | | | | assert if in om_list mode
| * Merge https://github.com/lz4/lz4 into devgabrielstedman2019-04-223-35/+41
| |\
| * | FR #598 - Make LZ4IO_getCompressedFileInfo internal and reword funcgabrielstedman2019-04-223-76/+68
| | |
| * | FR #598 Improve initial design, test mallocs, support C90.gabrielstedman2019-04-214-60/+94
| | |
| * | correctly use unisgned int for indexgabrielstedman2019-04-201-2/+2
| | |
| * | Add --list option to display compressed file information.gabrielstedman2019-04-203-3/+82
| | |
* | | Merge pull request #689 from JPeterMugaas/jpm-makefileYann Collet2019-04-221-12/+2
|\ \ \ | |_|/ |/| | Jpm makefile - as described in https://github.com/lz4/lz4/issues/688