summaryrefslogtreecommitdiff
path: root/apps/codecs/librm/bytestream.h
blob: c2a968a4bd26cd9c8c3dbace36570871bacfcaf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef RM_BYTESTREAM_H
#define RM_BYTESTREAM_H

#include <inttypes.h>

static inline void advance_buffer(uint8_t **buf, int val)
{
    *buf += val;
}

static inline uint8_t rm_get_uint8(uint8_t *buf)
{
    return (uint8_t)buf[0];
}

static inline uint16_t rm_get_uint16be(uint8_t *buf)
{
    return (uint16_t)((buf[0] << 8)|buf[1]);
}

static inline uint32_t rm_get_uint32be(uint8_t *buf)
{
    return (uint32_t)((buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3]);
}

static inline uint16_t rm_get_uint16le(uint8_t *buf)
{
    return (uint16_t)((buf[1] << 8)|buf[0]);
}

static inline uint32_t rm_get_uint32le(uint8_t *buf)
{
    return (uint32_t)((buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0]);
}

#endif /* RM_BYTESTREAM_H */