mirror of
https://github.com/aaru-dps/Aaru.Compression.Native.git
synced 2026-09-22 06:36:36 +00:00
- Introduced a new header file `vm.h` for the RAR 3.0 virtual machine, defining its architecture, instruction set, and API. - Implemented the core functionality for executing RAR decompression filters. - Added test cases for RAR formats 1.5, 2.0, 3.0, and 5.0, verifying decompression and CRC checks. - Included necessary binary test data files for RAR formats in the test directory. - Updated CMake configuration to include new test files and data.
47 lines
1.6 KiB
C
47 lines
1.6 KiB
C
/*
|
|
* VariantH.h
|
|
*
|
|
* Copyright (c) 2017-present, MacPaw Inc. All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
* published by the Free Software Foundation; either version 2.1 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __PPMD_VARIANT_H_H__
|
|
#define __PPMD_VARIANT_H_H__
|
|
|
|
#include "Context.h"
|
|
#include "SubAllocatorVariantH.h"
|
|
|
|
typedef struct PPMdModelVariantH
|
|
{
|
|
PPMdCoreModel core;
|
|
|
|
PPMdSubAllocatorVariantH *alloc;
|
|
|
|
PPMdContext *MinContext, *MaxContext;
|
|
int MaxOrder, HiBitsFlag;
|
|
bool SevenZip;
|
|
SEE2Context SEE2Cont[25][16], DummySEE2Cont;
|
|
uint8_t NS2BSIndx[256], HB2Flag[256], NS2Indx[256];
|
|
uint16_t BinSumm[128][64];
|
|
} PPMdModelVariantH;
|
|
|
|
void StartPPMdModelVariantH(PPMdModelVariantH *self, PPMdReadFunction *readfunc, void *inputcontext,
|
|
PPMdSubAllocatorVariantH *alloc, int maxorder, bool sevenzip);
|
|
void RestartPPMdVariantHRangeCoder(PPMdModelVariantH *self, PPMdReadFunction *readfunc, void *inputcontext,
|
|
bool sevenzip);
|
|
int NextPPMdVariantHByte(PPMdModelVariantH *self);
|
|
|
|
#endif
|