Index: source/libvpx/vpx_scale/arm/neon/yv12extend_arm.c |
=================================================================== |
--- source/libvpx/vpx_scale/arm/neon/yv12extend_arm.c (revision 219822) |
+++ source/libvpx/vpx_scale/arm/neon/yv12extend_arm.c (working copy) |
@@ -10,12 +10,12 @@ |
#include "./vpx_scale_rtcd.h" |
-extern void vp8_yv12_copy_frame_func_neon(struct yv12_buffer_config *src_ybc, |
- struct yv12_buffer_config *dst_ybc); |
+extern void vp8_yv12_copy_frame_func_neon( |
+ const struct yv12_buffer_config *src_ybc, |
+ struct yv12_buffer_config *dst_ybc); |
-void vp8_yv12_copy_frame_neon(struct yv12_buffer_config *src_ybc, |
+void vp8_yv12_copy_frame_neon(const struct yv12_buffer_config *src_ybc, |
struct yv12_buffer_config *dst_ybc) { |
vp8_yv12_copy_frame_func_neon(src_ybc, dst_ybc); |
- |
vp8_yv12_extend_frame_borders_neon(dst_ybc); |
} |