#include "lz_decompress.hpp"
template < int HISTORY_SIZE, int LOW_OFFSET = 8 > void lzDecompress ( hls::stream <ap_uint <32>>& inStream, hls::stream <ap_uint <8>>& outStream, uint32_t original_size )
This module writes the literals to the output stream as it is and when match length and offset are read, the literals will be read from the local dictionary based on offset until match length.
Parameters:
LOW_OFFSET | low offset |
HISTORY_SIZE | history size |
inStream | input stream |
outStream | output stream |
original_size | original size |