Browse Source

j2kdec: cdxy != 1 does not work, print an error

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 12 years ago
parent
commit
2c5a5c5a62
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavcodec/j2kdec.c

+ 3
- 0
libavcodec/j2kdec.c View File

@@ -175,6 +175,9 @@ static int get_siz(Jpeg2000DecoderContext *s)
s->sgnd[i] = !!(x & 0x80);
s->cdx[i] = bytestream2_get_byteu(&s->g);
s->cdy[i] = bytestream2_get_byteu(&s->g);
if (s->cdx[i] != 1 || s->cdy[i] != 1) {
av_log(s->avctx, AV_LOG_ERROR, "unsupported/ CDxy values\n");
}
}

s->numXtiles = ff_jpeg2000_ceildiv(s->width - s->tile_offset_x, s->tile_width);


Loading…
Cancel
Save