Commit c02c52f7 authored by Michael Niedermayer's avatar Michael Niedermayer

g723.1_ use skip_bits1()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fac3ac39
......@@ -150,7 +150,7 @@ static int unpack_bitstream(G723_1_Context *p, const uint8_t *buf,
p->subframe[3].grid_index = get_bits1(&gb);
if (p->cur_rate == Rate6k3) {
skip_bits(&gb, 1); /* skip reserved bit */
skip_bits1(&gb); /* skip reserved bit */
/* Compute pulse_pos index using the 13-bit combined position index */
temp = get_bits(&gb, 13);
......
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