mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-07 01:06:46 +08:00
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
This commit is contained in:
parent
8ef9e0dc4d
commit
958a0b0c19
@ -1,6 +1,6 @@
|
|||||||
Name: libyuv
|
Name: libyuv
|
||||||
URL: http://code.google.com/p/libyuv/
|
URL: http://code.google.com/p/libyuv/
|
||||||
Version: 495
|
Version: 496
|
||||||
License: BSD
|
License: BSD
|
||||||
License File: LICENSE
|
License File: LICENSE
|
||||||
|
|
||||||
|
|||||||
@ -13,13 +13,11 @@
|
|||||||
|
|
||||||
#include <stddef.h> // for NULL, size_t
|
#include <stddef.h> // for NULL, size_t
|
||||||
|
|
||||||
#if !(defined(_MSC_VER) && (_MSC_VER < 1600))
|
#if defined(__ANDROID__) || (defined(_MSC_VER) && (_MSC_VER < 1600))
|
||||||
#if defined(__ANDROID__)
|
|
||||||
#include <sys/types.h> // for uintptr_t on x86
|
#include <sys/types.h> // for uintptr_t on x86
|
||||||
#else
|
#else
|
||||||
#include <stdint.h> // for uintptr_t
|
#include <stdint.h> // for uintptr_t
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef INT_TYPES_DEFINED
|
#ifndef INT_TYPES_DEFINED
|
||||||
#define INT_TYPES_DEFINED
|
#define INT_TYPES_DEFINED
|
||||||
|
|||||||
@ -11,6 +11,6 @@
|
|||||||
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
||||||
#define INCLUDE_LIBYUV_VERSION_H_
|
#define INCLUDE_LIBYUV_VERSION_H_
|
||||||
|
|
||||||
#define LIBYUV_VERSION 495
|
#define LIBYUV_VERSION 496
|
||||||
|
|
||||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||||
|
|||||||
@ -873,4 +873,3 @@ int ARGBToARGB4444(const uint8* src_argb, int src_stride_argb,
|
|||||||
} // extern "C"
|
} // extern "C"
|
||||||
} // namespace libyuv
|
} // namespace libyuv
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@ -136,11 +136,9 @@ void ScaleARGBRowDownEvenInt_NEON(const uint8* src_argb, ptrdiff_t src_stride,
|
|||||||
: "memory", "cc", "r12", "q0", "q1", "q2", "q3"
|
: "memory", "cc", "r12", "q0", "q1", "q2", "q3"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __ARM_NEON__
|
#endif // __ARM_NEON__
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
} // extern "C"
|
} // extern "C"
|
||||||
} // namespace libyuv
|
} // namespace libyuv
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@ -552,11 +552,9 @@ void ScaleFilterRows_NEON(uint8* dst_ptr,
|
|||||||
: "q0", "q1", "d4", "d5", "q13", "q14", "memory", "cc"
|
: "q0", "q1", "d4", "d5", "q13", "q14", "memory", "cc"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __ARM_NEON__
|
#endif // __ARM_NEON__
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
} // extern "C"
|
} // extern "C"
|
||||||
} // namespace libyuv
|
} // namespace libyuv
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user