| Index: webrtc/modules/audio_coding/codecs/isac/fix/interface/audio_encoder_isacfix.h
|
| diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/interface/audio_encoder_isacfix.h b/webrtc/modules/audio_coding/codecs/isac/fix/interface/audio_encoder_isacfix.h
|
| index 9d51161c311b032a41320c679cb0cd4b0ecb177c..6c619153b1698e2cf95dcca7fbd902fe7fa798a2 100644
|
| --- a/webrtc/modules/audio_coding/codecs/isac/fix/interface/audio_encoder_isacfix.h
|
| +++ b/webrtc/modules/audio_coding/codecs/isac/fix/interface/audio_encoder_isacfix.h
|
| @@ -40,14 +40,14 @@ struct IsacFix {
|
| }
|
| static inline int DecodeInternal(instance_type* inst,
|
| const uint8_t* encoded,
|
| - int16_t len,
|
| + size_t len,
|
| int16_t* decoded,
|
| int16_t* speech_type) {
|
| return WebRtcIsacfix_Decode(inst, encoded, len, decoded, speech_type);
|
| }
|
| - static inline int16_t DecodePlc(instance_type* inst,
|
| - int16_t* decoded,
|
| - int16_t num_lost_frames) {
|
| + static inline size_t DecodePlc(instance_type* inst,
|
| + int16_t* decoded,
|
| + size_t num_lost_frames) {
|
| return WebRtcIsacfix_DecodePlc(inst, decoded, num_lost_frames);
|
| }
|
| static inline int16_t DecoderInit(instance_type* inst) {
|
| @@ -104,7 +104,7 @@ struct IsacFix {
|
| }
|
| static inline int16_t UpdateBwEstimate(instance_type* inst,
|
| const uint8_t* encoded,
|
| - int32_t packet_size,
|
| + size_t packet_size,
|
| uint16_t rtp_seq_number,
|
| uint32_t send_ts,
|
| uint32_t arr_ts) {
|
|
|