RTC_[D]CHECK_op: Remove "u" suffix on integer constants
There's no longer any need to make the two arguments have the same signedness, so we can drop the "u" suffix on literal integer arguments. NOPRESUBMIT=true BUG=webrtc:6645 Review-Url: https://codereview.webrtc.org/2535593002 Cr-Commit-Position: refs/heads/master@{#15280}
This commit is contained in:
@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user