OSDN Git Service

silence gcc warning: ‘n_bands’ may be used uninitialized
authorJustin Ruggles <justin.ruggles@gmail.com>
Thu, 4 Dec 2008 02:56:25 +0000 (02:56 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Thu, 4 Dec 2008 02:56:25 +0000 (02:56 +0000)
Originally committed as revision 15999 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ac3dec.c

index ce473ed..83edfe5 100644 (file)
@@ -730,7 +730,7 @@ static void decode_band_structure(GetBitContext *gbc, int blk, int eac3,
                                   uint8_t *band_struct, int *num_subbands,
                                   int *num_bands, uint8_t *band_sizes)
 {
-    int subbnd, bnd, n_subbands, n_bands;
+    int subbnd, bnd, n_subbands, n_bands=0;
     uint8_t bnd_sz[22];
 
     n_subbands = end_subband - start_subband;