mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 04:17:05 +00:00
avcodec/j2kenc: Initialize variable to silence compiler warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
589a6042ea
commit
b020a25df2
@ -430,7 +430,7 @@ static void init_quantization(Jpeg2000EncoderContext *s)
|
|||||||
int nbands, lev = codsty->nreslevels - reslevelno - 1;
|
int nbands, lev = codsty->nreslevels - reslevelno - 1;
|
||||||
nbands = reslevelno ? 3 : 1;
|
nbands = reslevelno ? 3 : 1;
|
||||||
for (bandno = 0; bandno < nbands; bandno++, gbandno++){
|
for (bandno = 0; bandno < nbands; bandno++, gbandno++){
|
||||||
int expn, mant;
|
int expn, mant = 0;
|
||||||
|
|
||||||
if (codsty->transform == FF_DWT97_INT){
|
if (codsty->transform == FF_DWT97_INT){
|
||||||
int bandpos = bandno + (reslevelno>0),
|
int bandpos = bandno + (reslevelno>0),
|
||||||
|
Loading…
Reference in New Issue
Block a user