Deleted Added
full compact
filter_common.c (207842) filter_common.c (213700)
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
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#if defined(HAVE_ENCODER_SUBBLOCK) || defined(HAVE_DECODER_SUBBLOCK)
56 {
57 .id = LZMA_FILTER_SUBBLOCK,
58 .options_size = sizeof(lzma_options_subblock),
59 .non_last_ok = true,
60 .last_ok = true,
61 .changes_size = true,
62 },
63#endif
64#ifdef HAVE_DECODER_X86
65 {
66 .id = LZMA_FILTER_X86,
67 .options_size = sizeof(lzma_options_bcj),
68 .non_last_ok = true,
69 .last_ok = false,
70 .changes_size = false,
71 },

--- 275 unchanged lines hidden ---
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 ---