changeset 5323:4ba6d8132f36 libavcodec

AC-3 decoder, soc revision 109, Sep 22 22:42:54 2006 UTC by banan Cosmetics.
author jbr
date Sat, 14 Jul 2007 16:05:13 +0000
parents b55b8c792066
children 33e13333dc4d
files ac3dec.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ac3dec.c	Sat Jul 14 16:04:40 2007 +0000
+++ b/ac3dec.c	Sat Jul 14 16:05:13 2007 +0000
@@ -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 @@
     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);
         }