Browse Source

libavcodec/jpeg2000: fix precinct coordinate calculation

The calculation of precinct boundaries has been
fixed. The precinct boundaries were calculated
as an offset to the band boundary, but must
instead be calculated as an offset from the
reslevel. This patch fixes #4669 and #4679.

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.3
Gautam Ramakrishnan Michael Niedermayer 5 years ago
parent
commit
995d937827
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/jpeg2000.c

+ 2
- 2
libavcodec/jpeg2000.c View File

@@ -276,11 +276,11 @@ static int init_prec(Jpeg2000Band *band,
/* TODO: Verify with previous count of codeblocks per band */

/* Compute P_x0 */
prec->coord[0][0] = ((band->coord[0][0] >> log2_band_prec_width) + precno % reslevel->num_precincts_x) *
prec->coord[0][0] = ((reslevel->coord[0][0] >> reslevel->log2_prec_width) + precno % reslevel->num_precincts_x) *
(1 << log2_band_prec_width);

/* Compute P_y0 */
prec->coord[1][0] = ((band->coord[1][0] >> log2_band_prec_height) + precno / reslevel->num_precincts_x) *
prec->coord[1][0] = ((reslevel->coord[1][0] >> reslevel->log2_prec_height) + precno / reslevel->num_precincts_x) *
(1 << log2_band_prec_height);

/* Compute P_x1 */


Loading…
Cancel
Save