Commit 958a0b0c authored by fbarchard@google.com's avatar fbarchard@google.com

lint cleanup

BUG=none
TEST=lint
Review URL: https://webrtc-codereview.appspot.com/931013

git-svn-id: http://libyuv.googlecode.com/svn/trunk@496 16f28f9a-4ce2-e073-06de-1de4eb20be90
parent 8ef9e0dc
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 495
Version: 496
License: BSD
License File: LICENSE
......
......@@ -13,13 +13,11 @@
#include <stddef.h> // for NULL, size_t
#if !(defined(_MSC_VER) && (_MSC_VER < 1600))
#if defined(__ANDROID__)
#if defined(__ANDROID__) || (defined(_MSC_VER) && (_MSC_VER < 1600))
#include <sys/types.h> // for uintptr_t on x86
#else
#include <stdint.h> // for uintptr_t
#endif
#endif
#ifndef INT_TYPES_DEFINED
#define INT_TYPES_DEFINED
......
......@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 495
#define LIBYUV_VERSION 496
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
......@@ -873,4 +873,3 @@ int ARGBToARGB4444(const uint8* src_argb, int src_stride_argb,
} // extern "C"
} // namespace libyuv
#endif
......@@ -136,11 +136,9 @@ void ScaleARGBRowDownEvenInt_NEON(const uint8* src_argb, ptrdiff_t src_stride,
: "memory", "cc", "r12", "q0", "q1", "q2", "q3"
);
}
#endif // __ARM_NEON__
#ifdef __cplusplus
} // extern "C"
} // namespace libyuv
#endif
......@@ -552,11 +552,9 @@ void ScaleFilterRows_NEON(uint8* dst_ptr,
: "q0", "q1", "d4", "d5", "q13", "q14", "memory", "cc"
);
}
#endif // __ARM_NEON__
#ifdef __cplusplus
} // extern "C"
} // namespace libyuv
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment