| Index: source/libvpx/vp9/common/vp9_tile_common.c
|
| diff --git a/source/libvpx/vp9/common/vp9_tile_common.c b/source/libvpx/vp9/common/vp9_tile_common.c
|
| index 7a20e0a9e7337b6042acff4fde7c414e929b6fa3..f2764126d7cb1b252181b90053460280d485b9d8 100644
|
| --- a/source/libvpx/vp9/common/vp9_tile_common.c
|
| +++ b/source/libvpx/vp9/common/vp9_tile_common.c
|
| @@ -18,7 +18,7 @@
|
| static int get_tile_offset(int idx, int mis, int log2) {
|
| const int sb_cols = mi_cols_aligned_to_sb(mis) >> MI_BLOCK_SIZE_LOG2;
|
| const int offset = ((idx * sb_cols) >> log2) << MI_BLOCK_SIZE_LOG2;
|
| - return MIN(offset, mis);
|
| + return VPXMIN(offset, mis);
|
| }
|
|
|
| void vp9_tile_set_row(TileInfo *tile, const VP9_COMMON *cm, int row) {
|
|
|