-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathr16N.h
More file actions
16 lines (14 loc) · 716 Bytes
/
r16N.h
File metadata and controls
16 lines (14 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef RANS_STATIC4x16_H
#define RANS_STATIC4x16_H
unsigned int rans_compress_bound_4x16(unsigned int size, int order, int *tabsz);
unsigned char *rans_compress_to_4x16(unsigned char *in, unsigned int in_size,
unsigned char *out, unsigned int *out_size,
int order);
unsigned char *rans_compress_4x16(unsigned char *in, unsigned int in_size,
unsigned int *out_size, int order);
unsigned char *rans_uncompress_to_4x16(unsigned char *in, unsigned int in_size,
unsigned char *out, unsigned int *out_size,
int order);
unsigned char *rans_uncompress_4x16(unsigned char *in, unsigned int in_size,
unsigned int *out_size, int order);
#endif /* RANS_STATIC4x16_H */