blob: 8d4a0789dbd90146c509d2976dd02564f0277c98 [file] [log] [blame]
Harald Welte2230c132011-01-19 10:10:16 +01001#ifndef _OSMO_BITS_H
2#define _OSMO_BITS_H
3
4#include <stdint.h>
5
6typedef uint8_t sbit_t; /* soft bit (-127...127) */
7typedef uint8_t ubit_t; /* unpacked bit (0 or 1) */
8typedef uint8_t pbit_t; /* packed bis (8 bits in a byte) */
9
Christian Vogelc7f84e92011-01-22 22:48:37 +010010/*
11 NOTE on the endianess of pbit_t:
12 Bits in a pbit_t are ordered MSB first, i.e. 0x80 is the first bit.
13 Bit i in a pbit_t array is array[i/8] & (1<<(7-i%8))
14*/
15
Harald Welte2230c132011-01-19 10:10:16 +010016/* determine how many bytes we would need for 'num_bits' packed bits */
17static inline unsigned int osmo_pbit_bytesize(unsigned int num_bits)
18{
19 unsigned int pbit_bytesize = num_bits / 8;
20
21 if (num_bits % 8)
22 pbit_bytesize++;
23
24 return pbit_bytesize;
25}
26
27/* convert unpacked bits to packed bits, return length in bytes */
28int osmo_ubit2pbit(pbit_t *out, const ubit_t *in, unsigned int num_bits);
29
30/* convert packed bits to unpacked bits, return length in bytes */
31int osmo_pbit2ubit(ubit_t *out, const pbit_t *in, unsigned int num_bits);
32
Sylvain Munautaeb10772011-01-21 12:22:30 +010033/* convert unpacked bits to packed bits (extended options but slower),
34 * return length in bytes (max written ofs of output buffer + 1) */
35int osmo_ubit2pbit_ext(pbit_t *out, unsigned int out_ofs,
36 const ubit_t *in, unsigned int in_ofs,
37 unsigned int num_bits, int lsb_mode);
38
39/* convert packed bits to unpacked bits (extended options but slower),
40 * return length in bytes (max written ofs of output buffer + 1) */
41int osmo_pbit2ubit_ext(ubit_t *out, unsigned int out_ofs,
42 const pbit_t *in, unsigned int in_ofs,
43 unsigned int num_bits, int lsb_mode);
44
Harald Welte2230c132011-01-19 10:10:16 +010045#endif