VirtualBox

source: vbox/trunk/src/libs/liblzma-5.8.1/delta/delta_common.c

Last change on this file was 108913, checked in by vboxsync, 4 weeks ago

libs/liblzma: Liblzma ose fix. jiraref:VBP-1635

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1// SPDX-License-Identifier: 0BSD
2
3///////////////////////////////////////////////////////////////////////////////
4//
5/// \file delta_common.c
6/// \brief Common stuff for Delta encoder and decoder
7//
8// Author: Lasse Collin
9//
10///////////////////////////////////////////////////////////////////////////////
11
12#include "delta_common.h"
13#include "delta_private.h"
14
15
16static void
17delta_coder_end(void *coder_ptr, const lzma_allocator *allocator)
18{
19 lzma_delta_coder *coder = coder_ptr;
20 lzma_next_end(&coder->next, allocator);
21 lzma_free(coder, allocator);
22 return;
23}
24
25
26extern lzma_ret
27lzma_delta_coder_init(lzma_next_coder *next, const lzma_allocator *allocator,
28 const lzma_filter_info *filters)
29{
30 // Allocate memory for the decoder if needed.
31 lzma_delta_coder *coder = next->coder;
32 if (coder == NULL) {
33 coder = lzma_alloc(sizeof(lzma_delta_coder), allocator);
34 if (coder == NULL)
35 return LZMA_MEM_ERROR;
36
37 next->coder = coder;
38
39 // End function is the same for encoder and decoder.
40 next->end = &delta_coder_end;
41 coder->next = LZMA_NEXT_CODER_INIT;
42 }
43
44 // Validate the options.
45 if (lzma_delta_coder_memusage(filters[0].options) == UINT64_MAX)
46 return LZMA_OPTIONS_ERROR;
47
48 // Set the delta distance.
49 const lzma_options_delta *opt = filters[0].options;
50 coder->distance = opt->dist;
51
52 // Initialize the rest of the variables.
53 coder->pos = 0;
54 memzero(coder->history, LZMA_DELTA_DIST_MAX);
55
56 // Initialize the next decoder in the chain, if any.
57 return lzma_next_filter_init(&coder->next, allocator, filters + 1);
58}
59
60
61extern uint64_t
62lzma_delta_coder_memusage(const void *options)
63{
64 const lzma_options_delta *opt = options;
65
66 if (opt == NULL || opt->type != LZMA_DELTA_TYPE_BYTE
67 || opt->dist < LZMA_DELTA_DIST_MIN
68 || opt->dist > LZMA_DELTA_DIST_MAX)
69 return UINT64_MAX;
70
71 return sizeof(lzma_delta_coder);
72}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette