Deleted Added
full compact
lz_decoder.c (213700) lz_decoder.c (223935)
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file lz_decoder.c
4/// \brief LZ out window
5///
6// Authors: Igor Pavlov
7// Lasse Collin
8//

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

121 return ret;
122 }
123 }
124}
125
126
127static lzma_ret
128lz_decode(lzma_coder *coder,
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file lz_decoder.c
4/// \brief LZ out window
5///
6// Authors: Igor Pavlov
7// Lasse Collin
8//

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

121 return ret;
122 }
123 }
124}
125
126
127static lzma_ret
128lz_decode(lzma_coder *coder,
129 lzma_allocator *allocator lzma_attribute((unused)),
129 lzma_allocator *allocator lzma_attribute((__unused__)),
130 const uint8_t *restrict in, size_t *restrict in_pos,
131 size_t in_size, uint8_t *restrict out,
132 size_t *restrict out_pos, size_t out_size,
133 lzma_action action)
134{
135 if (coder->next.code == NULL)
136 return decode_buffer(coder, in, in_pos, in_size,
137 out, out_pos, out_size);

--- 163 unchanged lines hidden ---
130 const uint8_t *restrict in, size_t *restrict in_pos,
131 size_t in_size, uint8_t *restrict out,
132 size_t *restrict out_pos, size_t out_size,
133 lzma_action action)
134{
135 if (coder->next.code == NULL)
136 return decode_buffer(coder, in, in_pos, in_size,
137 out, out_pos, out_size);

--- 163 unchanged lines hidden ---