blob: 8f70565a8fbf3608dc455c8bc271dbfc50687073 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "MockCall.h"
namespace test {
const webrtc::AudioSendStream::Config& MockAudioSendStream::GetConfig() const {
return *mCallWrapper->GetMockCall()->mAudioSendConfig;
}
void MockAudioSendStream::Reconfigure(const Config& config,
webrtc::SetParametersCallback callback) {
mCallWrapper->GetMockCall()->mAudioSendConfig = mozilla::Some(config);
}
void MockAudioReceiveStream::SetDecoderMap(
std::map<int, webrtc::SdpAudioFormat> decoder_map) {
MOZ_ASSERT(mCallWrapper->GetMockCall()->mAudioReceiveConfig.isSome());
mCallWrapper->GetMockCall()->mAudioReceiveConfig->decoder_map =
std::move(decoder_map);
}
void MockAudioReceiveStream::SetRtpExtensions(
std::vector<webrtc::RtpExtension> extensions) {
MOZ_ASSERT(mCallWrapper->GetMockCall()->mAudioReceiveConfig.isSome());
mCallWrapper->GetMockCall()->mAudioReceiveConfig->rtp.extensions =
std::move(extensions);
}
webrtc::RtpHeaderExtensionMap MockAudioReceiveStream::GetRtpExtensionMap()
const {
return webrtc::RtpHeaderExtensionMap();
}
void MockVideoSendStream::ReconfigureVideoEncoder(
webrtc::VideoEncoderConfig config) {
mCallWrapper->GetMockCall()->mVideoSendEncoderConfig =
mozilla::Some(config.Copy());
}
void MockVideoSendStream::ReconfigureVideoEncoder(
webrtc::VideoEncoderConfig config, webrtc::SetParametersCallback callback) {
ReconfigureVideoEncoder(std::move(config));
}
webrtc::RtpHeaderExtensionMap MockVideoReceiveStream::GetRtpExtensionMap()
const {
return webrtc::RtpHeaderExtensionMap();
}
} // namespace test
|