avcodec/j2kenc: Initialize variable to silence compiler warnings

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/127/head
Himangi Saraogi 10 years ago committed by Michael Niedermayer
parent 589a6042ea
commit b020a25df2
  1. 2
      libavcodec/j2kenc.c

@ -430,7 +430,7 @@ static void init_quantization(Jpeg2000EncoderContext *s)
int nbands, lev = codsty->nreslevels - reslevelno - 1;
nbands = reslevelno ? 3 : 1;
for (bandno = 0; bandno < nbands; bandno++, gbandno++){
int expn, mant;
int expn, mant = 0;
if (codsty->transform == FF_DWT97_INT){
int bandpos = bandno + (reslevelno>0),

Loading…
Cancel
Save