mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/jpeg2000htdec: warn about non zero roi shift
Suggested-by: Tomas Härdin <git@haerdin.se> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
19ad05e9e0
commit
7b7eea8e63
@ -1199,6 +1199,9 @@ ff_jpeg2000_decode_htj2k(const Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *c
|
|||||||
av_assert0(width * height <= 4096);
|
av_assert0(width * height <= 4096);
|
||||||
av_assert0(width * height > 0);
|
av_assert0(width * height > 0);
|
||||||
|
|
||||||
|
if (roi_shift)
|
||||||
|
avpriv_report_missing_feature(s->avctx, "ROI shift");
|
||||||
|
|
||||||
memset(t1->data, 0, t1->stride * height * sizeof(*t1->data));
|
memset(t1->data, 0, t1->stride * height * sizeof(*t1->data));
|
||||||
memset(t1->flags, 0, t1->stride * (height + 2) * sizeof(*t1->flags));
|
memset(t1->flags, 0, t1->stride * (height + 2) * sizeof(*t1->flags));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user