shithub: libvpx

Download patch

ref: 41251ae55823bb778dc461539fa995ccb19f5961
parent: 0eef1acbefe1eb935f6c757cfb62b24941a58b60
author: Scott LaVarnway <slavarnway@google.com>
date: Fri Aug 9 10:09:49 EDT 2013

Bug fix: call set_offsets before rd_auto_partition_range

The set_offsets call is necessary inorder to set the
mode_info_context ptr correctly.

Change-Id: I644910cc5bacc50ee9cd78458843274ad8ee636d

--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -1941,6 +1941,7 @@
             || cpi->is_src_frame_alt_ref) {
           // If required set upper and lower partition size limits
           if (cpi->sf.auto_min_max_partition_size) {
+            set_offsets(cpi, mi_row, mi_col, BLOCK_64X64);
             rd_auto_partition_range(cpi,
                                     &cpi->sf.min_partition_size,
                                     &cpi->sf.max_partition_size);
@@ -1956,6 +1957,7 @@
     } else {
       // If required set upper and lower partition size limits
       if (cpi->sf.auto_min_max_partition_size) {
+        set_offsets(cpi, mi_row, mi_col, BLOCK_64X64);
         rd_auto_partition_range(cpi, &cpi->sf.min_partition_size,
                                 &cpi->sf.max_partition_size);
       }