[FFmpeg-cvslog] g723.1_ use skip_bits1()

Michael Niedermayer git at videolan.org
Thu Sep 29 22:09:47 CEST 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Sep 29 21:24:57 2011 +0200| [c02c52f7b2870869b58fab37414a8f7ac55da25e] | committer: Michael Niedermayer

g723.1_ use skip_bits1()

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c02c52f7b2870869b58fab37414a8f7ac55da25e
---

 libavcodec/g723_1.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/g723_1.c b/libavcodec/g723_1.c
index ebe202d..de7fe3b 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);



More information about the ffmpeg-cvslog mailing list