Chromium Code Reviews| Index: webrtc/modules/audio_processing/agc/legacy/gain_control.h |
| diff --git a/webrtc/modules/audio_processing/agc/legacy/gain_control.h b/webrtc/modules/audio_processing/agc/legacy/gain_control.h |
| index 08c1988f01172660c0369f82bd3519582efb0986..f9ccae4aa7d7abfe08b177ded7792ff97a7491da 100644 |
| --- a/webrtc/modules/audio_processing/agc/legacy/gain_control.h |
| +++ b/webrtc/modules/audio_processing/agc/legacy/gain_control.h |
| @@ -50,6 +50,20 @@ extern "C" |
| #endif |
| /* |
| + * This function analyses the number of samples passed to |
| + * farend and produces any error code that could arise. |
| + * |
| + * Input: |
| + * - agcInst : AGC instance. |
|
hlundin-webrtc
2015/11/05 13:01:09
End both lines with our without . for consistency.
peah-webrtc
2015/11/06 07:10:58
Done.
|
| + * - samples : Number of samples in input vector |
| + * |
| + * Return value: |
| + * : 0 - Normal operation. |
|
hlundin-webrtc
2015/11/05 13:01:09
Again, consistency.
peah-webrtc
2015/11/06 07:10:58
Done.
|
| + * : -1 - Error |
| + */ |
| +int WebRtcAgc_GetAddFarendError(void* state, size_t samples); |
| + |
| +/* |
| * This function processes a 10 ms frame of far-end speech to determine |
| * if there is active speech. The length of the input speech vector must be |
| * given in samples (80 when FS=8000, and 160 when FS=16000, FS=32000 or |