[FFmpeg-cvslog] r9891 - trunk/libavcodec/ac3dec.c

jbr subversion
Sat Aug 4 13:39:47 CEST 2007


Author: jbr
Date: Sat Aug  4 13:39:47 2007
New Revision: 9891

Log:
use array instead of bitmask

Modified:
   trunk/libavcodec/ac3dec.c

Modified: trunk/libavcodec/ac3dec.c
==============================================================================
--- trunk/libavcodec/ac3dec.c	(original)
+++ trunk/libavcodec/ac3dec.c	Sat Aug  4 13:39:47 2007
@@ -100,7 +100,7 @@ typedef struct {
     int chincpl[AC3_MAX_CHANNELS];
     int phsflginu;
     int cplcoe;
-    uint32_t cplbndstrc;
+    int cplbndstrc[18];
     int rematstr;
     int nrematbnd;
     int rematflg[AC3_MAX_CHANNELS];
@@ -413,7 +413,7 @@ static void uncouple_channels(AC3DecodeC
                 }
                 i++;
             }
-        } while((ctx->cplbndstrc >> subbnd) & 1);
+        } while(ctx->cplbndstrc[subbnd]);
     }
 }
 
@@ -730,7 +730,6 @@ static int ac3_parse_audio_block(AC3Deco
 
     if (get_bits1(gb)) { /* coupling strategy */
         ctx->cplinu = get_bits1(gb);
-        ctx->cplbndstrc = 0;
         if (ctx->cplinu) { /* coupling in use */
             int cplbegf, cplendf;
 
@@ -753,7 +752,7 @@ static int ac3_parse_audio_block(AC3Deco
             ctx->cplendmant = cplendf * 12 + 73;
             for (i = 0; i < ctx->ncplsubnd - 1; i++) /* coupling band structure */
                 if (get_bits1(gb)) {
-                    ctx->cplbndstrc |= 1 << i;
+                    ctx->cplbndstrc[i] = 1;
                     ctx->ncplbnd--;
                 }
         } else {




More information about the ffmpeg-cvslog mailing list