Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-16 | Updates for iOS build, Automake setup | josh.macdonald | |
2010-11-07 | Whitespace cleanups, comments | josh.macdonald | |
2010-02-15 | Misc whitespace changes. | josh.macdonald | |
2010-02-07 | Implement srcwin_maxsz in xd3_source_match_setup(), which prevents | josh.macdonald | |
the encoder from seeking backwards further than this parameter. This was supposed to be implemented long ago, but was especially problematic in the recent release, which implements source-from-FIFO. | |||
2009-11-08 | Rewrote main_set_source() to delay deciding lru_size (effectively | josh.macdonald | |
option_srcwinsz) until after decompression state is known. Working but definitely needs more testing. | |||
2009-11-05 | Cleanups in xd3_decode_output_halfinst() and xd3_decode_emit(). | josh.macdonald | |
2009-11-03 | Implement (and manually test) main_getblk_func() using FIFO instead of | josh.macdonald | |
LRU for non-seekable sources (always, was not previously for the decoder, which caused problems). | |||
2009-11-03 | Fixes for issue 94. | josh.macdonald | |
2009-10-28 | 64-bit xoff_t definitions. | josh.macdonald | |
2009-10-25 | Adds xd3_set_source_and_size. | josh.macdonald | |
2009-10-25 | Eliminates xd3_source->size, which is an _API Change_. Adds a new ↵ | josh.macdonald | |
requirement, that source->blocksize be a power-of-2. DOES NOT PASS ALL TESTS. | |||
2009-10-24 | Move and re-invigorate the regtest, fix 1 harmless compiler warning | josh.macdonald | |
2009-03-08 | Testing for issue 79. TODO around xdelta3.c:3926 successful. | josh.macdonald | |
2009-02-12 | Fixes issue 79, adds more testing. | josh.macdonald | |
2008-09-17 | Compile with | josh.macdonald | |
-Wconversion -Wsign-compare -Wextra -Wno-unused-parameter in C and C++. | |||
2008-09-13 | Implement adler32 and appheader for merge command. | josh.macdonald | |
2008-09-07 | Change "q" to "ll" for portability. Issue 41. | josh.macdonald | |
2008-09-07 | Fixes two merge bugs: | josh.macdonald | |
1. The whole_state struct now keeps an array of window sizes so that during reconstruction it can use the same window size as the target delta. The code was previously using dec_tgtlen, which was the window size of the last target delta window. 2. xd3_merge_copy_source(), which applys a source-copy instruction during merge was not properly translating target-copy instructions in the target. The solution here is SLOW and INEFFICIENT, but it at least allows the tests to pass. A big TODO here is to improve the algorithm: it has a potentially O(N) recursion for each target-copy that it sees, and the naive approach also can produce duplicate adds. | |||
2008-09-05 | Solves the issue reported in Issue 36. More merge tests now pass. | josh.macdonald | |
2008-08-16 | Fixes a error in the test. Merge test passes...??? | josh.macdonald | |
2008-07-03 | Test for encode/decode w/ single first-byte difference. Uncovered a couple of | josh.macdonald | |
incorrect assertions in xdelta3 proper. More tests coming... | |||
2008-04-22 | Install a proper fix for the looping problem in issue 70. Needs better testing | josh.macdonald | |
but good for now. | |||
2008-04-20 | It's plausible that this merge code actually works; untested. | josh.macdonald | |
2008-04-09 | Add mechanism for processing merge arguments in order, memory | josh.macdonald | |
management for xd3_whole_target structures being passed between arguments-processing and main merge_output function. | |||
2008-03-31 | Implement more of "xdelta3 merge" command. Compile fixes. | josh.macdonald | |
Work on xdelta3-regtest.py. | |||
2008-02-11 | Can't explain how the usize_t->uint32_t changes here solve the problem | josh.macdonald | |
described by issue 61, but it's likely the same as issue 66 and I'm going to apply them blindly with TODOs to try and understand it later. | |||
2007-12-28 | Fix for DJGPP (1/4)? | josh.macdonald | |
2007-12-27 | Adding more support for "merge" command. | josh.macdonald | |
2007-12-17 | Call main_input() recursively for main_merge_arguments. | josh.macdonald | |
2007-12-17 | Patches for Makefile.mingw and xdelta3.h comments, work on "merge" | josh.macdonald | |
command. Fix for new return value in stream_overflow. | |||
2007-12-15 | Patches for mingw. | josh.macdonald | |
2007-12-14 | Replace uint with usize_t, more portable. | josh.macdonald | |
2007-12-14 | Implement UNALIGNED_OK for xd3_small_cksum_update, hoping to fix | josh.macdonald | |
test failure on Xscale/ARM platform. | |||
2007-12-07 | Patches from A. Mennucc for Debian. Fixing makfile for Cygwin | josh.macdonald | |
conditional compilation, which is irregular. | |||
2007-12-02 | Fix recode, recode test. | josh.macdonald | |
2007-11-26 | The rabin-karp checksum looks better in testing but doesn't really | josh.macdonald | |
seem to improve things in practice. Removed HASH_PRIME. | |||
2007-11-07 | A few optimizations: -1 (fastest) is faster than before. -fno-builtin | josh.macdonald | |
makes a difference. New implementation of xd3_forward_match() is written and tested, but not enabled, needs a little more benchmarking. | |||
2007-10-29 | Restore old secondary djw defaults. | josh.macdonald | |
2007-10-29 | Add a new COMPLEVEL_1, previous -1 becomes -2. | josh.macdonald | |
2007-10-29 | Add a new fastest, fastest->faster (-2) | josh.macdonald | |
2007-10-29 | Use maskby/shiftby when source->size <= source->blksize, which helps | josh.macdonald | |
xd3_process_memory() uses. | |||
2007-10-28 | New xd3_blksize_div() function used everywhere to avoid __umoddi3 | josh.macdonald | |
2007-10-28 | Eliminate calls to __umoddi3 (compiler generated for 64-bit % 32-bit). | josh.macdonald | |
More 80col reformatting. | |||
2007-10-28 | ENC_FLUSH -> ENC_INSTR | josh.macdonald | |
2007-10-28 | Reformat for 80 cols. Allow -S djwN where N is 0-9. Default | josh.macdonald | |
(for -S djw) is 3. -S djw9 enables multi-group huffman for all three sections. -S djw3 enables single-group huffman for all three sections. 1-2 are single data-only, 3-4 are single data+inst, 5-6 are single data+inst+addr, 7, 8, 9 enable multi-group huffman for the three sections in order. | |||
2007-10-28 | Reformat >80col lines. 32-bit build/test fixes. | josh.macdonald | |
2007-10-27 | Cleanups on cygwin. | josh.macdonald | |
2007-10-27 | Fixes for linux build. | josh.macdonald | |
2007-10-21 | Comments and build with speed_test.cc | josh.macdonald | |
2007-10-10 | Removes NODECOMPRESSIZE. | josh.macdonald | |