Fix the comments in boundary block partition check

Change-Id: Ic6b2881d8d495269edbc514b33376ca963798b45
This commit is contained in:
Jingning Han 2013-06-12 12:05:06 -07:00
Родитель 16b876fb63
Коммит 1a5bb3cc76
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -321,10 +321,10 @@ static int check_bsize_coverage(VP9_COMMON *cm, MACROBLOCKD *xd,
assert(bsize > BLOCK_SIZE_SB8X8);
// return the node index in the prob tree for binary coding
// skip horizontal/none partition types
// only allow horizontal/split partition types
if ((mi_col + ms < cm->mi_cols) && (mi_row + ms >= cm->mi_rows))
return 1;
// skip vertical/none partition types
// only allow vertical/split partition types
if ((mi_row + ms < cm->mi_rows) && (mi_col + ms >= cm->mi_cols))
return 2;