Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(692)

Unified Diff: source/libvpx/third_party/libyuv/source/rotate_neon64.cc

Issue 1302353004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 (
« no previous file with comments | « source/libvpx/third_party/libyuv/source/rotate_neon.cc ('k') | source/libvpx/third_party/libyuv/source/rotate_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698