| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 MOCK_METHOD2(SetReceiverFrameLengthRange, | 66 MOCK_METHOD2(SetReceiverFrameLengthRange, |
| 67 void(int min_frame_length_ms, int max_frame_length_ms)); | 67 void(int min_frame_length_ms, int max_frame_length_ms)); |
| 68 MOCK_METHOD2(GetAudioFrameWithInfo, | 68 MOCK_METHOD2(GetAudioFrameWithInfo, |
| 69 AudioMixer::Source::AudioFrameInfo(int sample_rate_hz, | 69 AudioMixer::Source::AudioFrameInfo(int sample_rate_hz, |
| 70 AudioFrame* audio_frame)); | 70 AudioFrame* audio_frame)); |
| 71 MOCK_CONST_METHOD0(NeededFrequency, int()); | 71 MOCK_CONST_METHOD0(NeededFrequency, int()); |
| 72 MOCK_METHOD1(SetTransportOverhead, void(int transport_overhead_per_packet)); | 72 MOCK_METHOD1(SetTransportOverhead, void(int transport_overhead_per_packet)); |
| 73 MOCK_METHOD1(AssociateSendChannel, | 73 MOCK_METHOD1(AssociateSendChannel, |
| 74 void(const ChannelProxy& send_channel_proxy)); | 74 void(const ChannelProxy& send_channel_proxy)); |
| 75 MOCK_METHOD0(DisassociateSendChannel, void()); | 75 MOCK_METHOD0(DisassociateSendChannel, void()); |
| 76 MOCK_CONST_METHOD2(GetRtpRtcp, void(RtpRtcp** rtp_rtcp, |
| 77 RtpReceiver** rtp_receiver)); |
| 78 MOCK_CONST_METHOD2(GetDelayEstimate, void(int* jitter_buffer_delay_ms, |
| 79 int* playout_buffer_delay_ms)); |
| 80 MOCK_CONST_METHOD0(GetPlayoutTimestamp, uint32_t()); |
| 81 MOCK_METHOD1(SetMinimumPlayoutDelay, void(int delay_ms)); |
| 76 }; | 82 }; |
| 77 } // namespace test | 83 } // namespace test |
| 78 } // namespace webrtc | 84 } // namespace webrtc |
| 79 | 85 |
| 80 #endif // WEBRTC_TEST_MOCK_VOE_CHANNEL_PROXY_H_ | 86 #endif // WEBRTC_TEST_MOCK_VOE_CHANNEL_PROXY_H_ |
| OLD | NEW |