Commit 7b91295f authored by Francois Cartegnie's avatar Francois Cartegnie

vlc_bits: add bo_set_64_be

parent a66b9dce
......@@ -304,6 +304,12 @@ static inline void bo_swap_32be (bo_t *p_bo, int i_pos, uint32_t i)
p_bo->b->p_buffer[i_pos + 3] = (i )&0xff;
}
static inline void bo_set_64be(bo_t *p_bo, int i_offset, uint64_t i)
{
bo_set_32be(p_bo, i_offset, ((i >> 32) &0xffffffff));
bo_set_32be(p_bo, i_offset + 4, i &0xffffffff);
}
static inline void bo_add_64be(bo_t *p_bo, uint64_t i)
{
bo_add_32be(p_bo, ((i >> 32) &0xffffffff));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment