diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2007-07-14 16:05:13 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2007-07-14 16:05:13 +0000 |
commit | de17eee70f0ec36e9eaffa73e8f4b8ac08ad33ef (patch) | |
tree | 15cdea97bfaa67081a66d7296f48e797b2588034 | |
parent | 1ea76064b4bc5619ee0f0314eb9c691945f057d2 (diff) | |
download | ffmpeg-de17eee70f0ec36e9eaffa73e8f4b8ac08ad33ef.tar.gz |
AC-3 decoder, soc revision 109, Sep 22 22:42:54 2006 UTC by banan
Cosmetics.
Originally committed as revision 9671 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ac3dec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index b0b8bbb052..057c6019b3 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -7,8 +7,8 @@ * help and excelleng guidance throughout the project. * Thanks a lot Benjamin. * - * For exponent decoding the code is reused from liba52 by Michel Lespinasse - * and Aaron Holtzman. + * For exponent decoding the code is inspired by the code in liba52 by + * Michel Lespinasse and Aaron Holtzman. * http://liba52.sourceforge.net * * Thanks Makoto Matsumoto and Takuji Nishimura for the Mersenne Twister. @@ -1846,7 +1846,7 @@ static int ac3_parse_audio_block(AC3DecodeContext * ctx) if (get_bits1(gb)) { /* snroffset */ bit_alloc_flags = 127; ctx->csnroffst = get_bits(gb, 6); - if (ctx->cplinu) { /* couling fine snr offset and fast gain code */ + if (ctx->cplinu) { /* coupling fine snr offset and fast gain code */ ctx->cplfsnroffst = get_bits(gb, 4); ctx->cplfgaincod = get_bits(gb, 3); } |