You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
g723.1_ use skip_bits1()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -150,7 +150,7 @@ static int unpack_bitstream(G723_1_Context *p, const uint8_t *buf,
|
|||||||
p->subframe[3].grid_index = get_bits1(&gb);
|
p->subframe[3].grid_index = get_bits1(&gb);
|
||||||
|
|
||||||
if (p->cur_rate == Rate6k3) {
|
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 */
|
/* Compute pulse_pos index using the 13-bit combined position index */
|
||||||
temp = get_bits(&gb, 13);
|
temp = get_bits(&gb, 13);
|
||||||
|
Reference in New Issue
Block a user