aboutsummaryrefslogtreecommitdiff
path: root/source/rotate.cc
diff options
context:
space:
mode:
authorfbarchard@google.com <fbarchard@google.com>2015-04-12 23:54:26 +0000
committerfbarchard@google.com <fbarchard@google.com>2015-04-12 23:54:26 +0000
commitc7161d1c36fb43f8ed0ddf25842f9894be1940d4 (patch)
tree7c994d4ef1841056602fcdcc78bce564c5205dbe /source/rotate.cc
parent1eb51bcf01d5ace195c07eae2c48db4b3afa33cf (diff)
downloadlibyuv-c7161d1c36fb43f8ed0ddf25842f9894be1940d4.tar.gz
Remove code alignment declspec from Visual C versions for vs2014 compatibility.
BUG=422 TESTED=local vs2013 build still passes. Review URL: https://webrtc-codereview.appspot.com/45959004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1365 16f28f9a-4ce2-e073-06de-1de4eb20be90
Diffstat (limited to 'source/rotate.cc')
-rw-r--r--source/rotate.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/rotate.cc b/source/rotate.cc
index bfab546a..4d8c40cc 100644
--- a/source/rotate.cc
+++ b/source/rotate.cc
@@ -73,7 +73,7 @@ void TransposeUVWx8_MIPS_DSPR2(const uint8* src, int src_stride,
#if !defined(LIBYUV_DISABLE_X86) && \
defined(_M_IX86) && defined(_MSC_VER) && !defined(__clang__)
#define HAS_TRANSPOSE_WX8_SSSE3
-__declspec(naked) __declspec(align(16))
+__declspec(naked)
static void TransposeWx8_SSSE3(const uint8* src, int src_stride,
uint8* dst, int dst_stride, int width) {
__asm {
@@ -165,7 +165,7 @@ static void TransposeWx8_SSSE3(const uint8* src, int src_stride,
}
#define HAS_TRANSPOSE_UVWX8_SSE2
-__declspec(naked) __declspec(align(16))
+__declspec(naked)
static void TransposeUVWx8_SSE2(const uint8* src, int src_stride,
uint8* dst_a, int dst_stride_a,
uint8* dst_b, int dst_stride_b,