mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 16:56:55 +08:00
Change name of variable for mac because static cant be used so variables need to be unique.
BUG=none TEST=none Review URL: https://webrtc-codereview.appspot.com/672006 git-svn-id: http://libyuv.googlecode.com/svn/trunk@293 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
parent
27d42c7ff6
commit
4d2cfd329a
@ -1,6 +1,6 @@
|
|||||||
Name: libyuv
|
Name: libyuv
|
||||||
URL: http://code.google.com/p/libyuv/
|
URL: http://code.google.com/p/libyuv/
|
||||||
Version: 292
|
Version: 293
|
||||||
License: BSD
|
License: BSD
|
||||||
License File: LICENSE
|
License File: LICENSE
|
||||||
|
|
||||||
|
|||||||
@ -11,7 +11,7 @@
|
|||||||
#ifndef INCLUDE_LIBYUV_VERSION_H_
|
#ifndef INCLUDE_LIBYUV_VERSION_H_
|
||||||
#define INCLUDE_LIBYUV_VERSION_H_
|
#define INCLUDE_LIBYUV_VERSION_H_
|
||||||
|
|
||||||
#define LIBYUV_VERSION 292
|
#define LIBYUV_VERSION 293
|
||||||
|
|
||||||
#endif // INCLUDE_LIBYUV_VERSION_H_
|
#endif // INCLUDE_LIBYUV_VERSION_H_
|
||||||
|
|
||||||
|
|||||||
@ -1968,7 +1968,7 @@ void MirrorRowUV_SSSE3(const uint8* src, uint8* dst_u, uint8* dst_v,
|
|||||||
"+r"(dst_u), // %1
|
"+r"(dst_u), // %1
|
||||||
"+r"(dst_v), // %2
|
"+r"(dst_v), // %2
|
||||||
"+r"(temp_width) // %3
|
"+r"(temp_width) // %3
|
||||||
: "m"(kShuffleMirrorUV) // %4
|
: "m"(kShuffleMirrorUV) // %4
|
||||||
: "memory", "cc"
|
: "memory", "cc"
|
||||||
#if defined(__SSE2__)
|
#if defined(__SSE2__)
|
||||||
, "xmm0", "xmm1"
|
, "xmm0", "xmm1"
|
||||||
@ -1979,7 +1979,7 @@ void MirrorRowUV_SSSE3(const uint8* src, uint8* dst_u, uint8* dst_v,
|
|||||||
|
|
||||||
#ifdef HAS_ARGBMIRRORROW_SSSE3
|
#ifdef HAS_ARGBMIRRORROW_SSSE3
|
||||||
// Shuffle table for reversing the bytes.
|
// Shuffle table for reversing the bytes.
|
||||||
CONST uvec8 kShuffleMirror = {
|
CONST uvec8 kARGBShuffleMirror = {
|
||||||
12u, 13u, 14u, 15u, 8u, 9u, 10u, 11u, 4u, 5u, 6u, 7u, 0u, 1u, 2u, 3u
|
12u, 13u, 14u, 15u, 8u, 9u, 10u, 11u, 4u, 5u, 6u, 7u, 0u, 1u, 2u, 3u
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -1999,7 +1999,7 @@ void ARGBMirrorRow_SSSE3(const uint8* src, uint8* dst, int width) {
|
|||||||
: "+r"(src), // %0
|
: "+r"(src), // %0
|
||||||
"+r"(dst), // %1
|
"+r"(dst), // %1
|
||||||
"+r"(temp_width) // %2
|
"+r"(temp_width) // %2
|
||||||
: "m"(kShuffleMirror) // %3
|
: "m"(kARGBShuffleMirror) // %3
|
||||||
: "memory", "cc"
|
: "memory", "cc"
|
||||||
#if defined(__SSE2__)
|
#if defined(__SSE2__)
|
||||||
, "xmm0", "xmm5"
|
, "xmm0", "xmm5"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user