Fix assertion conditions for tile coding
Allow up to 1024 row/col tiles instead of 4 for row tile and 64 for column tile. Change-Id: I1702254e241401821f3aaab1645f6df6dbc48b8d
This commit is contained in:
parent
a14e3616b3
commit
7099fd12bd
@ -2009,8 +2009,8 @@ static const uint8_t *decode_tiles(VP9Decoder *pbi,
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if CONFIG_ROW_TILE
|
#if CONFIG_ROW_TILE
|
||||||
assert(tile_rows <= (1 << 6));
|
assert(tile_rows <= (1 << 10));
|
||||||
assert(tile_cols <= (1 << 6));
|
assert(tile_cols <= (1 << 10));
|
||||||
#else
|
#else
|
||||||
assert(tile_rows <= 4);
|
assert(tile_rows <= 4);
|
||||||
assert(tile_cols <= (1 << 6));
|
assert(tile_cols <= (1 << 6));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user