| Index: webrtc/modules/audio_processing/audio_processing_impl.h
|
| diff --git a/webrtc/modules/audio_processing/audio_processing_impl.h b/webrtc/modules/audio_processing/audio_processing_impl.h
|
| index 3506ac4dc0c5b071f7e7b0e6de0ff8c3d3807ff8..22f591f577ff0d066d5387676b3ba89f7c28bf9e 100644
|
| --- a/webrtc/modules/audio_processing/audio_processing_impl.h
|
| +++ b/webrtc/modules/audio_processing/audio_processing_impl.h
|
| @@ -101,9 +101,9 @@ class AudioProcessingImpl : public AudioProcessing {
|
| // Hence there is no need for locks in these.
|
| int proc_sample_rate_hz() const override;
|
| int proc_split_sample_rate_hz() const override;
|
| - int num_input_channels() const override;
|
| - int num_output_channels() const override;
|
| - int num_reverse_channels() const override;
|
| + size_t num_input_channels() const override;
|
| + size_t num_output_channels() const override;
|
| + size_t num_reverse_channels() const override;
|
| int stream_delay_ms() const override;
|
| bool was_stream_delay_set() const override
|
| EXCLUSIVE_LOCKS_REQUIRED(crit_capture_);
|
|
|