| Index: webrtc/modules/audio_coding/neteq/dsp_helper.h
|
| diff --git a/webrtc/modules/audio_coding/neteq/dsp_helper.h b/webrtc/modules/audio_coding/neteq/dsp_helper.h
|
| index af4f4d6c88cb571b73cdafc1f6ced3777eae66d8..f9032562f1b439903533c75af0f84af7a1f697d4 100644
|
| --- a/webrtc/modules/audio_coding/neteq/dsp_helper.h
|
| +++ b/webrtc/modules/audio_coding/neteq/dsp_helper.h
|
| @@ -110,11 +110,11 @@ class DspHelper {
|
| // sample and increases the gain by |increment| (Q20) for each sample. The
|
| // result is written to |output|. |length| samples are processed.
|
| static void UnmuteSignal(const int16_t* input, size_t length, int16_t* factor,
|
| - int16_t increment, int16_t* output);
|
| + int increment, int16_t* output);
|
|
|
| // Starts at unity gain and gradually fades out |signal|. For each sample,
|
| // the gain is reduced by |mute_slope| (Q14). |length| samples are processed.
|
| - static void MuteSignal(int16_t* signal, int16_t mute_slope, size_t length);
|
| + static void MuteSignal(int16_t* signal, int mute_slope, size_t length);
|
|
|
| // Downsamples |input| from |sample_rate_hz| to 4 kHz sample rate. The input
|
| // has |input_length| samples, and the method will write |output_length|
|
|
|