Skip to content
Snippets Groups Projects
Commit a66b9dce authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

vlc_bits: fix bo_set_32be

parent 63bc9a04
No related branches found
No related tags found
No related merge requests found
......@@ -255,8 +255,8 @@ static inline void bo_add_16le(bo_t *p_bo, uint16_t i)
static inline void bo_set_16be(bo_t *p_bo, int i_offset, uint16_t i)
{
bo_set_8(p_bo, i_offset + 1, ((i >> 8) &0xff));
bo_set_8(p_bo, i_offset, i &0xff);
bo_set_8(p_bo, i_offset, ((i >> 8) &0xff));
bo_set_8(p_bo, i_offset + 1, i &0xff);
}
static inline void bo_set_16le(bo_t *p_bo, int i_offset, uint16_t i)
......@@ -286,8 +286,8 @@ static inline void bo_add_32le(bo_t *p_bo, uint32_t i)
static inline void bo_set_32be(bo_t *p_bo, int i_offset, uint32_t i)
{
bo_set_16be(p_bo, i_offset + 2, ((i >> 16) &0xffff));
bo_set_16be(p_bo, i_offset, i &0xffff);
bo_set_16be(p_bo, i_offset, ((i >> 16) &0xffff));
bo_set_16be(p_bo, i_offset + 2, i &0xffff);
}
static inline void bo_set_32le(bo_t *p_bo, int i_offset, uint32_t i)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment