Rizin
unix-like reverse engineering framework and cli tools
simple_encoder.c
Go to the documentation of this file.
1 //
5 //
6 // Author: Lasse Collin
7 //
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
10 //
12 
13 #include "simple_encoder.h"
14 
15 
16 extern lzma_ret
18 {
19  const lzma_options_bcj *const opt = options;
20  *size = (opt == NULL || opt->start_offset == 0) ? 0 : 4;
21  return LZMA_OK;
22 }
23 
24 
25 extern lzma_ret
27 {
28  const lzma_options_bcj *const opt = options;
29 
30  // The default start offset is zero, so we don't need to store any
31  // options unless the start offset is non-zero.
32  if (opt == NULL || opt->start_offset == 0)
33  return LZMA_OK;
34 
35  write32le(out, opt->start_offset);
36 
37  return LZMA_OK;
38 }
const lzma_allocator const uint8_t size_t uint8_t * out
Definition: block.h:528
#define NULL
Definition: cris-opc.c:27
voidpf void uLong size
Definition: ioapi.h:138
static const char struct stat static buf struct stat static buf static vhangup int options
Definition: sflib.h:145
unsigned int uint32_t
Definition: sftypes.h:29
unsigned char uint8_t
Definition: sftypes.h:31
lzma_ret lzma_simple_props_encode(const void *options, uint8_t *out)
lzma_ret lzma_simple_props_size(uint32_t *size, const void *options)
Options for BCJ filters.
Definition: bcj.h:73
uint32_t start_offset
Start offset for conversions.
Definition: bcj.h:88
#define write32le(buf, num)
lzma_ret
Return values used by several functions in liblzma.
Definition: base.h:57
@ LZMA_OK
Operation completed successfully.
Definition: base.h:58