shithub: libvpx

Download patch

ref: f051a7beab914ceb76ef2f4ef10fb94c741b6d77
parent: 1395ded2a73637cd46996bf07b9ce197ee5c6fbb
author: Jingning Han <[email protected]>
date: Tue Dec 9 05:24:37 EST 2014

Take out redundant setting of mode_info from set_block_size

The later encoding process will take the top-left block's
mode_info for pre-determined block size.

Change-Id: I76a90f9ce7f3b2dbc2975b52442114e461c465b5

--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -272,7 +272,6 @@
   if (cpi->common.mi_cols > mi_col && cpi->common.mi_rows > mi_row) {
     set_modeinfo_offsets(&cpi->common, xd, mi_row, mi_col);
     xd->mi[0].src_mi->mbmi.sb_type = bsize;
-    duplicate_mode_info_in_sb(&cpi->common, xd, mi_row, mi_col, bsize);
   }
 }