| Index: webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| diff --git a/webrtc/modules/audio_processing/echo_cancellation_impl.cc b/webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| index 0b8fc141ee50985f8bf17c540ccdb55c9da17cf5..f6a0bcde7acc801c7014e5f73bce9be8e8f61d5b 100644
|
| --- a/webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| +++ b/webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| @@ -151,7 +151,7 @@ int EchoCancellationImpl::ProcessCaptureAudio(AudioBuffer* audio,
|
| }
|
|
|
| RTC_DCHECK(stream_properties_);
|
| - RTC_DCHECK_GE(160u, audio->num_frames_per_band());
|
| + RTC_DCHECK_GE(160, audio->num_frames_per_band());
|
| RTC_DCHECK_EQ(audio->num_channels(), stream_properties_->num_proc_channels);
|
|
|
| int err = AudioProcessing::kNoError;
|
| @@ -450,7 +450,7 @@ void EchoCancellationImpl::PackRenderAudioBuffer(
|
| size_t num_output_channels,
|
| size_t num_channels,
|
| std::vector<float>* packed_buffer) {
|
| - RTC_DCHECK_GE(160u, audio->num_frames_per_band());
|
| + RTC_DCHECK_GE(160, audio->num_frames_per_band());
|
| RTC_DCHECK_EQ(num_channels, audio->num_channels());
|
|
|
| packed_buffer->clear();
|
|
|