| Index: webrtc/common_audio/vad/vad_core.h
|
| diff --git a/webrtc/common_audio/vad/vad_core.h b/webrtc/common_audio/vad/vad_core.h
|
| index 202963d8c681bd78533af7749e0855c72a881b8c..b38c515ea1229fa7fc8bebb3c9a52c3ee85ccc74 100644
|
| --- a/webrtc/common_audio/vad/vad_core.h
|
| +++ b/webrtc/common_audio/vad/vad_core.h
|
| @@ -104,12 +104,12 @@ int WebRtcVad_set_mode_core(VadInstT* self, int mode);
|
| * 1-6 - Active speech
|
| */
|
| int WebRtcVad_CalcVad48khz(VadInstT* inst, const int16_t* speech_frame,
|
| - int frame_length);
|
| + size_t frame_length);
|
| int WebRtcVad_CalcVad32khz(VadInstT* inst, const int16_t* speech_frame,
|
| - int frame_length);
|
| + size_t frame_length);
|
| int WebRtcVad_CalcVad16khz(VadInstT* inst, const int16_t* speech_frame,
|
| - int frame_length);
|
| + size_t frame_length);
|
| int WebRtcVad_CalcVad8khz(VadInstT* inst, const int16_t* speech_frame,
|
| - int frame_length);
|
| + size_t frame_length);
|
|
|
| #endif // WEBRTC_COMMON_AUDIO_VAD_VAD_CORE_H_
|
|
|