| Index: webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.h
|
| diff --git a/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.h b/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.h
|
| index 46c68bf808cc111e77d737e26b067c778dc3953a..b66407b978f78a8de8ce8640d21ed7fb579de30e 100644
|
| --- a/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.h
|
| +++ b/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.h
|
| @@ -59,9 +59,9 @@ class NonlinearBeamformer
|
| // Process one frequency-domain block of audio. This is where the fun
|
| // happens. Implements LappedTransform::Callback.
|
| void ProcessAudioBlock(const complex<float>* const* input,
|
| - int num_input_channels,
|
| + size_t num_input_channels,
|
| size_t num_freq_bins,
|
| - int num_output_channels,
|
| + size_t num_output_channels,
|
| complex<float>* const* output) override;
|
|
|
| private:
|
| @@ -116,7 +116,7 @@ class NonlinearBeamformer
|
| float window_[kFftSize];
|
|
|
| // Parameters exposed to the user.
|
| - const int num_input_channels_;
|
| + const size_t num_input_channels_;
|
| int sample_rate_hz_;
|
|
|
| const std::vector<Point> array_geometry_;
|
|
|