Commit db7a8c64 authored by jbr's avatar jbr

silence gcc warning: ‘n_bands’ may be used uninitialized

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15999 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5f146ec3
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment