summaryrefslogtreecommitdiff
path: root/libavcodec/g723_1.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-29 21:24:57 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-29 21:44:03 +0200
commitc02c52f7b2870869b58fab37414a8f7ac55da25e (patch)
tree54b8c7b03e31f778ab0e0a5a21a375974242b27e /libavcodec/g723_1.c
parentfac3ac3970295c65bd6b30debe973241d5e93f11 (diff)
g723.1_ use skip_bits1()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/g723_1.c')
-rw-r--r--libavcodec/g723_1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g723_1.c b/libavcodec/g723_1.c
index ebe202dd24..de7fe3b80b 100644
--- a/libavcodec/g723_1.c
+++ b/libavcodec/g723_1.c
@@ -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);