summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRay Essick <essick@google.com>2019-03-29 15:32:39 -0700
committerRay Essick <essick@google.com>2019-05-03 21:29:09 +0000
commit22776ab2e71269213c6206f19e4b5d04a3384164 (patch)
tree3f75dbf1ca3dc3455647615cde513037d4d06e0e
parentec6586dd308c18c15b581e3579894b4204c834bc (diff)
downloadplatform_external_libaom-22776ab2e71269213c6206f19e4b5d04a3384164.tar.gz
platform_external_libaom-22776ab2e71269213c6206f19e4b5d04a3384164.tar.bz2
platform_external_libaom-22776ab2e71269213c6206f19e4b5d04a3384164.zip
The pull from upstream libaom overwrites our 1 change, so this brings it back. Removes preprocessor directives __clang__analyzer__ Bug: 124137416 Test: compilation Change-Id: I61b2fae2da28decbda92669677e7c767b66693f9
-rw-r--r--libaom/av1/common/resize.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libaom/av1/common/resize.c b/libaom/av1/common/resize.c
index 8b24ed0..d668eae 100644
--- a/libaom/av1/common/resize.c
+++ b/libaom/av1/common/resize.c
@@ -431,7 +431,6 @@ static int32_t get_upscale_convolve_x0(int in_length, int out_length,
return (int32_t)((uint32_t)x0 & RS_SCALE_SUBPEL_MASK);
}
-#ifndef __clang_analyzer__
static void down2_symeven(const uint8_t *const input, int length,
uint8_t *output) {
// Actual filter len = 2 * filter_len_half.
@@ -486,7 +485,6 @@ static void down2_symeven(const uint8_t *const input, int length,
}
}
}
-#endif
static void down2_symodd(const uint8_t *const input, int length,
uint8_t *output) {
@@ -852,7 +850,6 @@ static void highbd_interpolate(const uint16_t *const input, int in_length,
&interp_filters[0][0], SUBPEL_TAPS);
}
-#ifndef __clang_analyzer__
static void highbd_down2_symeven(const uint16_t *const input, int length,
uint16_t *output, int bd) {
// Actual filter len = 2 * filter_len_half.
@@ -960,7 +957,6 @@ static void highbd_down2_symodd(const uint16_t *const input, int length,
}
}
}
-#endif
static void highbd_resize_multistep(const uint16_t *const input, int length,
uint16_t *output, int olength,