Module: libav Branch: master Commit: 4cbd5ed11b0161a6a192174934b241e0cc0599a9
Author: Michael Niedermayer <[email protected]> Committer: Luca Barbato <[email protected]> Date: Mon Jul 1 10:01:17 2013 +0200 jpeg2000: Fix compute precedence error in lut_gain index Signed-off-by: Luca Barbato <[email protected]> --- libavcodec/jpeg2000.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/jpeg2000.c b/libavcodec/jpeg2000.c index cd6f58d..b123699 100644 --- a/libavcodec/jpeg2000.c +++ b/libavcodec/jpeg2000.c @@ -285,7 +285,7 @@ int ff_jpeg2000_init_component(Jpeg2000Component *comp, case JPEG2000_QSTY_NONE: /* TODO: to verify. No quantization in this case */ numbps = cbps + - lut_gain[codsty->transform][bandno + reslevelno > 0]; + lut_gain[codsty->transform][bandno + (reslevelno > 0)]; band->stepsize = (float)SHL(2048 + qntsty->mant[gbandno], 2 + numbps - qntsty->expn[gbandno]); break; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
