Deleted Added
sdiff udiff text old ( 207842 ) new ( 213700 )
full compact
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file filter_common.c
4/// \brief Filter-specific stuff common for both encoder and decoder
5//
6// Author: Lasse Collin
7//
8// This file has been put into the public domain.

--- 38 unchanged lines hidden (view full) ---

47 {
48 .id = LZMA_FILTER_LZMA2,
49 .options_size = sizeof(lzma_options_lzma),
50 .non_last_ok = false,
51 .last_ok = true,
52 .changes_size = true,
53 },
54#endif
55#ifdef HAVE_DECODER_X86
56 {
57 .id = LZMA_FILTER_X86,
58 .options_size = sizeof(lzma_options_bcj),
59 .non_last_ok = true,
60 .last_ok = false,
61 .changes_size = false,
62 },

--- 275 unchanged lines hidden ---