| Index: webrtc/modules/audio_coding/neteq/mock/mock_decoder_database.h
|
| diff --git a/webrtc/modules/audio_coding/neteq/mock/mock_decoder_database.h b/webrtc/modules/audio_coding/neteq/mock/mock_decoder_database.h
|
| index 60ae0f6501e35e9390c63f3303587096c323a9aa..3865db2cee754db2b941a6ed2dea92d26cfbfb89 100644
|
| --- a/webrtc/modules/audio_coding/neteq/mock/mock_decoder_database.h
|
| +++ b/webrtc/modules/audio_coding/neteq/mock/mock_decoder_database.h
|
| @@ -33,10 +33,11 @@ class MockDecoderDatabase : public DecoderDatabase {
|
| MOCK_METHOD3(RegisterPayload,
|
| int(uint8_t rtp_payload_type, NetEqDecoder codec_type,
|
| const std::string& name));
|
| - MOCK_METHOD5(InsertExternal,
|
| - int(uint8_t rtp_payload_type, NetEqDecoder codec_type,
|
| - const std::string& codec_name, int fs_hz,
|
| - AudioDecoder* decoder));
|
| + MOCK_METHOD4(InsertExternal,
|
| + int(uint8_t rtp_payload_type,
|
| + NetEqDecoder codec_type,
|
| + const std::string& codec_name,
|
| + AudioDecoder* decoder));
|
| MOCK_METHOD1(Remove,
|
| int(uint8_t rtp_payload_type));
|
| MOCK_CONST_METHOD1(GetDecoderInfo,
|
|
|