shithub: libvpx

Download patch

ref: 58ac00e9ab324f4bca9baa6587907fcd7dc68f6c
parent: 5e7242dfda069046dced13cac8170bfe0fdb5f05
author: Johann <johannkoenig@google.com>
date: Tue Jun 24 08:27:08 EDT 2014

Use the VP9 version of extend_borders

Change-Id: Ie16f12b4763a45465e130fb39cbb727c08529ac8

--- a/vp9/encoder/vp9_encoder.c
+++ b/vp9/encoder/vp9_encoder.c
@@ -1364,9 +1364,7 @@
     vp9_resize_plane(srcs[i], src_heights[i], src_widths[i], src_strides[i],
                      dsts[i], dst_heights[i], dst_widths[i], dst_strides[i]);
 
-  // TODO(hkuang): Call C version explicitly
-  // as neon version only expand border size 32.
-  vp8_yv12_extend_frame_borders_c(dst);
+  vp9_extend_frame_borders(dst);
 }
 
 static void scale_and_extend_frame(const YV12_BUFFER_CONFIG *src,
@@ -1406,9 +1404,7 @@
     }
   }
 
-  // TODO(hkuang): Call C version explicitly
-  // as neon version only expand border size 32.
-  vp8_yv12_extend_frame_borders_c(dst);
+  vp9_extend_frame_borders(dst);
 }
 
 #define WRITE_RECON_BUFFER 0
--