mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-18 23:09:52 +02:00
dsp: s/USE_INTRINSICS/WEBP_USE_INTRINSICS/
for consistency with other defines shared across modules Change-Id: I30cdb9f892e9ea48265883f560500ffb1d6799ee
This commit is contained in:
@ -141,7 +141,7 @@ static void ConvertBGRAToRGB(const uint32_t* src,
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#ifdef USE_INTRINSICS
|
||||
#ifdef WEBP_USE_INTRINSICS
|
||||
|
||||
static WEBP_INLINE uint32_t Average2(const uint32_t* const a,
|
||||
const uint32_t* const b) {
|
||||
@ -295,7 +295,7 @@ static void AddGreenToBlueAndRed(uint32_t* argb_data, int num_pixels) {
|
||||
|
||||
#endif // !__aarch64__
|
||||
|
||||
#endif // USE_INTRINSICS
|
||||
#endif // WEBP_USE_INTRINSICS
|
||||
|
||||
#endif // WEBP_USE_NEON
|
||||
|
||||
@ -309,7 +309,7 @@ WEBP_TSAN_IGNORE_FUNCTION void VP8LDspInitNEON(void) {
|
||||
VP8LConvertBGRAToBGR = ConvertBGRAToBGR;
|
||||
VP8LConvertBGRAToRGB = ConvertBGRAToRGB;
|
||||
|
||||
#ifdef USE_INTRINSICS
|
||||
#ifdef WEBP_USE_INTRINSICS
|
||||
VP8LPredictors[5] = Predictor5;
|
||||
VP8LPredictors[6] = Predictor6;
|
||||
VP8LPredictors[7] = Predictor7;
|
||||
|
Reference in New Issue
Block a user