Index: webrtc/modules/audio_processing/level_controller/level_controller.cc |
diff --git a/webrtc/modules/audio_processing/level_controller/level_controller.cc b/webrtc/modules/audio_processing/level_controller/level_controller.cc |
index b8388e6141bab4520cdc5964a8f98fe20cd0bec9..c625e08eaea50edebf054e3884d9a77078853af4 100644 |
--- a/webrtc/modules/audio_processing/level_controller/level_controller.cc |
+++ b/webrtc/modules/audio_processing/level_controller/level_controller.cc |
@@ -208,8 +208,8 @@ void LevelController::Initialize(int sample_rate_hz) { |
} |
void LevelController::Process(AudioBuffer* audio) { |
- RTC_DCHECK_LT(0u, audio->num_channels()); |
- RTC_DCHECK_GE(2u, audio->num_channels()); |
+ RTC_DCHECK_LT(0, audio->num_channels()); |
+ RTC_DCHECK_GE(2, audio->num_channels()); |
RTC_DCHECK_NE(0.f, dc_forgetting_factor_); |
RTC_DCHECK(sample_rate_hz_); |
data_dumper_->DumpWav("lc_input", audio->num_frames(), |