shithub: libvpx

Download patch

ref: 1a5bb3cc76304bf46a2ca8d1c1ec9ec95e060759
parent: 16b876fb630f6b8c66ff8a1fb08574536f8567bc
author: Jingning Han <jingning@google.com>
date: Wed Jun 12 08:05:06 EDT 2013

Fix the comments in boundary block partition check

Change-Id: Ic6b2881d8d495269edbc514b33376ca963798b45

--- a/vp9/common/vp9_onyxc_int.h
+++ b/vp9/common/vp9_onyxc_int.h
@@ -321,10 +321,10 @@
   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;