lavfi/drawutils: ensure we don't support formats with non-pixel-sized offsets
This commit is contained in:
@@ -114,6 +114,8 @@ int ff_draw_init(FFDrawContext *draw, enum AVPixelFormat format, unsigned flags)
|
|||||||
depthb = db;
|
depthb = db;
|
||||||
if (db * (c->offset + 1) > 16)
|
if (db * (c->offset + 1) > 16)
|
||||||
return AVERROR(ENOSYS);
|
return AVERROR(ENOSYS);
|
||||||
|
if (c->offset % db)
|
||||||
|
return AVERROR(ENOSYS);
|
||||||
/* strange interleaving */
|
/* strange interleaving */
|
||||||
if (pixelstep[c->plane] != 0 &&
|
if (pixelstep[c->plane] != 0 &&
|
||||||
pixelstep[c->plane] != c->step)
|
pixelstep[c->plane] != c->step)
|
||||||
|
Reference in New Issue
Block a user