shithub: libvpx

Download patch

ref: 78417211e255eec44eeaa36a65dbf59e7b044a05
parent: eb0c52bacaed9b35484bbd55865916e12a4fd6d7
parent: 31c7a9b1746fde987fb6bc2b887a23796a619978
author: hkuang <hkuang@google.com>
date: Fri Apr 11 12:46:14 EDT 2014

Merge "Fix the VP9 encoding unit test failure on ARM."

--- a/vp9/encoder/vp9_onyx_if.c
+++ b/vp9/encoder/vp9_onyx_if.c
@@ -1788,7 +1788,9 @@
                        dsts[i], out_h_uv, out_w_uv, dst_strides[i]);
     }
   }
-  vp8_yv12_extend_frame_borders(dst_fb);
+  // TODO(hkuang): Call C version explicitly
+  // as neon version only expand border size 32.
+  vp8_yv12_extend_frame_borders_c(dst_fb);
 }
 
 static void scale_and_extend_frame(YV12_BUFFER_CONFIG *src_fb,
@@ -1829,7 +1831,9 @@
     }
   }
 
-  vp8_yv12_extend_frame_borders(dst_fb);
+  // TODO(hkuang): Call C version explicitly
+  // as neon version only expand border size 32.
+  vp8_yv12_extend_frame_borders_c(dst_fb);
 }
 
 static int find_fp_qindex() {