shithub: libvpx

Download patch

ref: 37ba4cfc7e9ddc62cc794806306c6f69209e6e44
parent: 7d921524d680b08ce5749fdbca4d8e68a433d64d
parent: 6d465faa3430fa4ada389c5f889832e7c5a84ab2
author: Ronald S. Bultje <rbultje@google.com>
date: Fri Oct 26 07:05:51 EDT 2012

Merge "Extend edges correctly during actual frame encoding also." into experimental

--- a/vp8/encoder/encodeframe.c
+++ b/vp8/encoder/encodeframe.c
@@ -980,6 +980,12 @@
 
     cpi->update_context = 0;
 
+#if CONFIG_SUPERBLOCKS
+    if (!xd->mode_info_context->mbmi.encoded_as_sb)
+#endif
+      vp8_intra_prediction_down_copy(xd, mb_col == cm->mb_cols - 1 &&
+                                     (mb_row & 1) == 0);
+
     if (cm->frame_type == KEY_FRAME) {
 #if CONFIG_SUPERBLOCKS
       if (xd->mode_info_context->mbmi.encoded_as_sb)
--