| Index: source/libvpx/third_party/libyuv/source/rotate_neon64.cc
|
| diff --git a/source/libvpx/third_party/libyuv/source/rotate_neon64.cc b/source/libvpx/third_party/libyuv/source/rotate_neon64.cc
|
| index 92358af7ff6b7b7161f38363b29fe56599077b0f..f52c082b3fea9d3dcefe9d79800a990c8044526d 100644
|
| --- a/source/libvpx/third_party/libyuv/source/rotate_neon64.cc
|
| +++ b/source/libvpx/third_party/libyuv/source/rotate_neon64.cc
|
| @@ -9,6 +9,7 @@
|
| */
|
|
|
| #include "libyuv/row.h"
|
| +#include "libyuv/rotate_row.h"
|
|
|
| #include "libyuv/basic_types.h"
|
|
|
| @@ -21,11 +22,10 @@ extern "C" {
|
| #if !defined(LIBYUV_DISABLE_NEON) && defined(__aarch64__)
|
|
|
| static uvec8 kVTbl4x4Transpose =
|
| - { 0, 4, 8, 12, 1, 5, 9, 13, 2, 6, 10, 14, 3, 7, 11, 15 };
|
| + { 0, 4, 8, 12, 1, 5, 9, 13, 2, 6, 10, 14, 3, 7, 11, 15 };
|
|
|
| void TransposeWx8_NEON(const uint8* src, int src_stride,
|
| - uint8* dst, int dst_stride,
|
| - int width) {
|
| + uint8* dst, int dst_stride, int width) {
|
| const uint8* src_temp = NULL;
|
| int64 width64 = (int64) width; // Work around clang 3.4 warning.
|
| asm volatile (
|
|
|