1233d2500723e5594f3e7c70896ffeeef32b9c950ywan/*
2233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3233d2500723e5594f3e7c70896ffeeef32b9c950ywan *
4233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  Use of this source code is governed by a BSD-style license
5233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  that can be found in the LICENSE file in the root of the source
6233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  tree. An additional intellectual property rights grant can be found
7233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  in the file PATENTS.  All contributing project authors may
8233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  be found in the AUTHORS file in the root of the source tree.
9233d2500723e5594f3e7c70896ffeeef32b9c950ywan */
10233d2500723e5594f3e7c70896ffeeef32b9c950ywan
11233d2500723e5594f3e7c70896ffeeef32b9c950ywan#include "./vpx_scale_rtcd.h"
12233d2500723e5594f3e7c70896ffeeef32b9c950ywan
13233d2500723e5594f3e7c70896ffeeef32b9c950ywanextern void vp8_yv12_copy_frame_func_neon(
14233d2500723e5594f3e7c70896ffeeef32b9c950ywan    const struct yv12_buffer_config *src_ybc,
15233d2500723e5594f3e7c70896ffeeef32b9c950ywan    struct yv12_buffer_config *dst_ybc);
16233d2500723e5594f3e7c70896ffeeef32b9c950ywan
17233d2500723e5594f3e7c70896ffeeef32b9c950ywanvoid vp8_yv12_copy_frame_neon(const struct yv12_buffer_config *src_ybc,
18233d2500723e5594f3e7c70896ffeeef32b9c950ywan                              struct yv12_buffer_config *dst_ybc) {
19233d2500723e5594f3e7c70896ffeeef32b9c950ywan  vp8_yv12_copy_frame_func_neon(src_ybc, dst_ybc);
20233d2500723e5594f3e7c70896ffeeef32b9c950ywan  vp8_yv12_extend_frame_borders_neon(dst_ybc);
21233d2500723e5594f3e7c70896ffeeef32b9c950ywan}
22