Browse Source

g723.1: use get_bits1()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 14 years ago
parent
commit
fac3ac3970
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavcodec/g723_1.c

+ 4
- 4
libavcodec/g723_1.c View File

@@ -144,10 +144,10 @@ static int unpack_bitstream(G723_1_Context *p, const uint8_t *buf,
}
}

p->subframe[0].grid_index = get_bits(&gb, 1);
p->subframe[1].grid_index = get_bits(&gb, 1);
p->subframe[2].grid_index = get_bits(&gb, 1);
p->subframe[3].grid_index = get_bits(&gb, 1);
p->subframe[0].grid_index = get_bits1(&gb);
p->subframe[1].grid_index = get_bits1(&gb);
p->subframe[2].grid_index = get_bits1(&gb);
p->subframe[3].grid_index = get_bits1(&gb);

if (p->cur_rate == Rate6k3) {
skip_bits(&gb, 1); /* skip reserved bit */


Loading…
Cancel
Save