| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 MOCK_CONST_METHOD0(PeakFound, | 40 MOCK_CONST_METHOD0(PeakFound, |
| 41 bool()); | 41 bool()); |
| 42 MOCK_METHOD1(UpdateCounters, | 42 MOCK_METHOD1(UpdateCounters, |
| 43 void(int elapsed_time_ms)); | 43 void(int elapsed_time_ms)); |
| 44 MOCK_METHOD0(ResetPacketIatCount, | 44 MOCK_METHOD0(ResetPacketIatCount, |
| 45 void()); | 45 void()); |
| 46 MOCK_CONST_METHOD2(BufferLimits, | 46 MOCK_CONST_METHOD2(BufferLimits, |
| 47 void(int* lower_limit, int* higher_limit)); | 47 void(int* lower_limit, int* higher_limit)); |
| 48 MOCK_CONST_METHOD0(TargetLevel, | 48 MOCK_CONST_METHOD0(TargetLevel, |
| 49 int()); | 49 int()); |
| 50 MOCK_METHOD1(LastDecoderType, | |
| 51 void(NetEqDecoder decoder_type)); | |
| 52 MOCK_METHOD1(set_extra_delay_ms, | 50 MOCK_METHOD1(set_extra_delay_ms, |
| 53 void(int16_t delay)); | 51 void(int16_t delay)); |
| 54 MOCK_CONST_METHOD0(base_target_level, | 52 MOCK_CONST_METHOD0(base_target_level, |
| 55 int()); | 53 int()); |
| 56 MOCK_METHOD1(set_streaming_mode, | 54 MOCK_METHOD1(set_streaming_mode, |
| 57 void(bool value)); | 55 void(bool value)); |
| 58 MOCK_CONST_METHOD0(last_pack_cng_or_dtmf, | 56 MOCK_CONST_METHOD0(last_pack_cng_or_dtmf, |
| 59 int()); | 57 int()); |
| 60 MOCK_METHOD1(set_last_pack_cng_or_dtmf, | 58 MOCK_METHOD1(set_last_pack_cng_or_dtmf, |
| 61 void(int value)); | 59 void(int value)); |
| 62 }; | 60 }; |
| 63 | 61 |
| 64 } // namespace webrtc | 62 } // namespace webrtc |
| 65 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DELAY_MANAGER_H_ | 63 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DELAY_MANAGER_H_ |
| OLD | NEW |