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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 int32_t(const bool TCP, const bool IPV6, | 67 int32_t(const bool TCP, const bool IPV6, |
68 const uint8_t authenticationOverhead)); | 68 const uint8_t authenticationOverhead)); |
69 MOCK_CONST_METHOD0(MaxPayloadLength, | 69 MOCK_CONST_METHOD0(MaxPayloadLength, |
70 uint16_t()); | 70 uint16_t()); |
71 MOCK_CONST_METHOD0(MaxDataPayloadLength, | 71 MOCK_CONST_METHOD0(MaxDataPayloadLength, |
72 uint16_t()); | 72 uint16_t()); |
73 MOCK_METHOD1(RegisterSendPayload, | 73 MOCK_METHOD1(RegisterSendPayload, |
74 int32_t(const CodecInst& voiceCodec)); | 74 int32_t(const CodecInst& voiceCodec)); |
75 MOCK_METHOD1(RegisterSendPayload, | 75 MOCK_METHOD1(RegisterSendPayload, |
76 int32_t(const VideoCodec& videoCodec)); | 76 int32_t(const VideoCodec& videoCodec)); |
| 77 MOCK_METHOD2(RegisterVideoSendPayload, |
| 78 void(int payload_type, const char* payload_name)); |
77 MOCK_METHOD1(DeRegisterSendPayload, | 79 MOCK_METHOD1(DeRegisterSendPayload, |
78 int32_t(const int8_t payloadType)); | 80 int32_t(const int8_t payloadType)); |
79 MOCK_METHOD2(RegisterSendRtpHeaderExtension, | 81 MOCK_METHOD2(RegisterSendRtpHeaderExtension, |
80 int32_t(const RTPExtensionType type, const uint8_t id)); | 82 int32_t(const RTPExtensionType type, const uint8_t id)); |
81 MOCK_METHOD1(DeregisterSendRtpHeaderExtension, | 83 MOCK_METHOD1(DeregisterSendRtpHeaderExtension, |
82 int32_t(const RTPExtensionType type)); | 84 int32_t(const RTPExtensionType type)); |
83 MOCK_CONST_METHOD0(StartTimestamp, | 85 MOCK_CONST_METHOD0(StartTimestamp, |
84 uint32_t()); | 86 uint32_t()); |
85 MOCK_METHOD1(SetStartTimestamp, void(const uint32_t timestamp)); | 87 MOCK_METHOD1(SetStartTimestamp, void(const uint32_t timestamp)); |
86 MOCK_CONST_METHOD0(SequenceNumber, | 88 MOCK_CONST_METHOD0(SequenceNumber, |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 void(StreamDataCountersCallback*)); | 260 void(StreamDataCountersCallback*)); |
259 MOCK_CONST_METHOD0(GetSendChannelRtpStatisticsCallback, | 261 MOCK_CONST_METHOD0(GetSendChannelRtpStatisticsCallback, |
260 StreamDataCountersCallback*(void)); | 262 StreamDataCountersCallback*(void)); |
261 // Members. | 263 // Members. |
262 unsigned int remote_ssrc_; | 264 unsigned int remote_ssrc_; |
263 }; | 265 }; |
264 | 266 |
265 } // namespace webrtc | 267 } // namespace webrtc |
266 | 268 |
267 #endif // WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RTP_RTCP_H_ | 269 #endif // WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RTP_RTCP_H_ |
OLD | NEW |