Index: webrtc/common_audio/real_fourier_ooura.cc |
diff --git a/webrtc/common_audio/real_fourier_ooura.cc b/webrtc/common_audio/real_fourier_ooura.cc |
index 1c4004dea77adaeb1d693c5aac06fdbc4b4b9c31..8cd4c86b5bf848445c64bd5877e3d65e9036dcec 100644 |
--- a/webrtc/common_audio/real_fourier_ooura.cc |
+++ b/webrtc/common_audio/real_fourier_ooura.cc |
@@ -42,7 +42,7 @@ RealFourierOoura::RealFourierOoura(int fft_order) |
// arrays on the first call. |
work_ip_(new size_t[ComputeWorkIpSize(length_)]()), |
work_w_(new float[complex_length_]()) { |
- CHECK_GE(fft_order, 1); |
+ RTC_CHECK_GE(fft_order, 1); |
} |
void RealFourierOoura::Forward(const float* src, complex<float>* dest) const { |