Index: webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_estimator_c.c |
diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_estimator_c.c b/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_estimator_c.c |
index 0d881e804428c6f5db7e99970b8efd2a596e2a34..8322e3c6fd23ba2cd01b08f012733c5262838858 100644 |
--- a/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_estimator_c.c |
+++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_estimator_c.c |
@@ -64,7 +64,7 @@ void WebRtcIsacfix_PCorr2Q32(const int16_t* in, int32_t* logcorQ8) { |
// Can't shift a Neon register to right with a non-constant shift value. |
int32x4_t int_32x4_scale = vdupq_n_s32(-scaling); |
// Assert a codition used in loop unrolling at compile-time. |
- COMPILE_ASSERT(PITCH_CORR_LEN2 %4 == 0); |
+ RTC_COMPILE_ASSERT(PITCH_CORR_LEN2 %4 == 0); |
for (n = 0; n < PITCH_CORR_LEN2; n += 4) { |
int16x4_t int_16x4_x = vld1_s16(&x[n]); |