spdp_sys 0.1.0

SPDP codec bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stddef.h>

typedef unsigned char byte_t;
size_t spdp_compress_batch(
  const byte_t level,
  const size_t length,
  byte_t* const buf1,
  byte_t* const buf2
);
size_t spdp_decompress_batch(
  const byte_t level,
  const size_t length,
  byte_t* const buf2,
  byte_t* const buf1
);