22 #ifndef AGS_SHARED_UTIL_COMPRESS_H 23 #define AGS_SHARED_UTIL_COMPRESS_H 25 #include "ags/shared/core/types.h" 26 #include "ags/shared/util/wgt2_allg.h" 39 bool rle_compress(
const uint8_t *data,
size_t data_sz,
int image_bpp, Shared::Stream *out);
40 bool rle_decompress(uint8_t *data,
size_t data_sz,
int image_bpp, Shared::Stream *in);
42 void save_rle_bitmap8(Shared::Stream *out,
const Shared::Bitmap *bmp,
const RGB(*pal)[256] =
nullptr);
44 Shared::Bitmap *load_rle_bitmap8(Shared::Stream *in, RGB(*pal)[256] =
nullptr);
46 void skip_rle_bitmap8(Shared::Stream *in);
49 bool lzw_compress(
const uint8_t *data,
size_t data_sz,
int image_bpp, Shared::Stream *out);
50 bool lzw_decompress(uint8_t *data,
size_t data_sz,
int image_bpp, Shared::Stream *in,
size_t in_sz);
52 void save_lzw(Shared::Stream *out,
const Shared::Bitmap *bmpp,
const RGB(*pal)[256] =
nullptr);
54 Shared::Bitmap *load_lzw(Shared::Stream *in,
int dst_bpp, RGB (*pal)[256] =
nullptr);
57 bool deflate_compress(
const uint8_t *data,
size_t data_sz,
int image_bpp, Shared::Stream *out);
58 bool inflate_decompress(uint8_t *data,
size_t data_sz,
int image_bpp, Shared::Stream *in,
size_t in_sz);
Definition: achievements_tables.h:27