Select Git revision
Dominik Loidolt authored
Split lib folder into common, decompress, icu_compress rdcu_compress Move cmp_tool files into programs directory
decmp.h 1011 B
/**
* @file decmp.h
* @author Dominik Loidolt (dominik.loidolt@univie.ac.at)
* @date 2020
*
* @copyright GPLv2
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* @brief software decompression library
*/
#ifndef DECMP_H
#define DECMP_H
#include <cmp_entity.h>
#include <cmp_support.h>
int decompress_cmp_entiy(struct cmp_entity *ent, void *model_of_data,
void *up_model_buf, void *decompressed_data);
int decompress_rdcu_data(uint32_t *compressed_data, const struct cmp_info *info,
uint16_t *model_of_data, uint16_t *up_model_buf,
uint16_t *decompressed_data);
#endif /* DECMP_H */