Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: webrtc/test/mock_voe_channel_proxy.h

Issue 2686043006: WebRtcVoiceMediaChannel::AddRecvStream: Don't call SetRecPayloadType (Closed)
Patch Set: rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_payload_registry.cc ('k') | webrtc/test/mock_voice_engine.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 MOCK_METHOD1(SetMinimumPlayoutDelay, void(int delay_ms)); 80 MOCK_METHOD1(SetMinimumPlayoutDelay, void(int delay_ms));
81 MOCK_CONST_METHOD1(GetRecCodec, bool(CodecInst* codec_inst)); 81 MOCK_CONST_METHOD1(GetRecCodec, bool(CodecInst* codec_inst));
82 MOCK_CONST_METHOD1(GetSendCodec, bool(CodecInst* codec_inst)); 82 MOCK_CONST_METHOD1(GetSendCodec, bool(CodecInst* codec_inst));
83 MOCK_METHOD1(SetVADStatus, bool(bool enable)); 83 MOCK_METHOD1(SetVADStatus, bool(bool enable));
84 MOCK_METHOD1(SetCodecFECStatus, bool(bool enable)); 84 MOCK_METHOD1(SetCodecFECStatus, bool(bool enable));
85 MOCK_METHOD1(SetOpusDtx, bool(bool enable)); 85 MOCK_METHOD1(SetOpusDtx, bool(bool enable));
86 MOCK_METHOD1(SetOpusMaxPlaybackRate, bool(int frequency_hz)); 86 MOCK_METHOD1(SetOpusMaxPlaybackRate, bool(int frequency_hz));
87 MOCK_METHOD1(SetSendCodec, bool(const CodecInst& codec_inst)); 87 MOCK_METHOD1(SetSendCodec, bool(const CodecInst& codec_inst));
88 MOCK_METHOD2(SetSendCNPayloadType, 88 MOCK_METHOD2(SetSendCNPayloadType,
89 bool(int type, PayloadFrequencies frequency)); 89 bool(int type, PayloadFrequencies frequency));
90 MOCK_METHOD1(SetReceiveCodecs,
91 void(const std::map<int, SdpAudioFormat>& codecs));
90 MOCK_METHOD1(OnTwccBasedUplinkPacketLossRate, void(float packet_loss_rate)); 92 MOCK_METHOD1(OnTwccBasedUplinkPacketLossRate, void(float packet_loss_rate));
91 MOCK_METHOD1(OnRecoverableUplinkPacketLossRate, 93 MOCK_METHOD1(OnRecoverableUplinkPacketLossRate,
92 void(float recoverable_packet_loss_rate)); 94 void(float recoverable_packet_loss_rate));
93 }; 95 };
94 } // namespace test 96 } // namespace test
95 } // namespace webrtc 97 } // namespace webrtc
96 98
97 #endif // WEBRTC_TEST_MOCK_VOE_CHANNEL_PROXY_H_ 99 #endif // WEBRTC_TEST_MOCK_VOE_CHANNEL_PROXY_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_payload_registry.cc ('k') | webrtc/test/mock_voice_engine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698