
This change corrects a potential race condition when updating a FrameEncryptor for the audio send channel. If a FrameEncryptor is set on an active audio stream it is possible for the current FrameEncryptor attached to the audio channel to be deallocated due to the FrameEncryptors reference count reaching zero before the new FrameEncryptor is set on the channel. To address this issue the ChannelSend is now holds a scoped_reftptr<FrameEncryptor> to only allow deallocation when it is actually set on the encoder queue. ChannelSend is unique in this respect as the Audio Receiver a long with the Video Sender and Video Receiver streams all recreate themselves when they have a configuration change. ChannelSend instead reconfigures itself using the existing channel object. Added Seth as TBR as this only introduces mocks. TBR=shampson@webrtc.org Bug: webrtc:9907 Change-Id: Ibf391dc9cecdbed1874e0252ff5c2cb92a5c64f4 Reviewed-on: https://webrtc-review.googlesource.com/c/107664 Commit-Queue: Benjamin Wright <benwright@webrtc.org> Reviewed-by: Fredrik Solenberg <solenberg@webrtc.org> Reviewed-by: Qingsi Wang <qingsi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25374}
117 lines
5.3 KiB
C++
117 lines
5.3 KiB
C++
/*
|
|
* Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef AUDIO_MOCK_VOE_CHANNEL_PROXY_H_
|
|
#define AUDIO_MOCK_VOE_CHANNEL_PROXY_H_
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "api/test/mock_frame_encryptor.h"
|
|
#include "audio/channel_receive_proxy.h"
|
|
#include "audio/channel_send_proxy.h"
|
|
#include "modules/rtp_rtcp/source/rtp_packet_received.h"
|
|
#include "test/gmock.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
class MockChannelReceiveProxy : public voe::ChannelReceiveProxy {
|
|
public:
|
|
MOCK_METHOD1(SetLocalSSRC, void(uint32_t ssrc));
|
|
MOCK_METHOD2(SetNACKStatus, void(bool enable, int max_packets));
|
|
MOCK_METHOD1(RegisterReceiverCongestionControlObjects,
|
|
void(PacketRouter* packet_router));
|
|
MOCK_METHOD0(ResetReceiverCongestionControlObjects, void());
|
|
MOCK_CONST_METHOD0(GetRTCPStatistics, CallReceiveStatistics());
|
|
MOCK_CONST_METHOD0(GetNetworkStatistics, NetworkStatistics());
|
|
MOCK_CONST_METHOD0(GetDecodingCallStatistics, AudioDecodingCallStats());
|
|
MOCK_CONST_METHOD0(GetSpeechOutputLevelFullRange, int());
|
|
MOCK_CONST_METHOD0(GetTotalOutputEnergy, double());
|
|
MOCK_CONST_METHOD0(GetTotalOutputDuration, double());
|
|
MOCK_CONST_METHOD0(GetDelayEstimate, uint32_t());
|
|
MOCK_METHOD1(SetSink, void(AudioSinkInterface* sink));
|
|
MOCK_METHOD1(OnRtpPacket, void(const RtpPacketReceived& packet));
|
|
MOCK_METHOD2(ReceivedRTCPPacket, bool(const uint8_t* packet, size_t length));
|
|
MOCK_METHOD1(SetChannelOutputVolumeScaling, void(float scaling));
|
|
MOCK_METHOD2(GetAudioFrameWithInfo,
|
|
AudioMixer::Source::AudioFrameInfo(int sample_rate_hz,
|
|
AudioFrame* audio_frame));
|
|
MOCK_CONST_METHOD0(PreferredSampleRate, int());
|
|
MOCK_METHOD1(AssociateSendChannel,
|
|
void(const voe::ChannelSendProxy& send_channel_proxy));
|
|
MOCK_METHOD0(DisassociateSendChannel, void());
|
|
MOCK_CONST_METHOD0(GetPlayoutTimestamp, uint32_t());
|
|
MOCK_METHOD1(SetMinimumPlayoutDelay, void(int delay_ms));
|
|
MOCK_CONST_METHOD1(GetRecCodec, bool(CodecInst* codec_inst));
|
|
MOCK_METHOD1(SetReceiveCodecs,
|
|
void(const std::map<int, SdpAudioFormat>& codecs));
|
|
MOCK_CONST_METHOD0(GetSources, std::vector<RtpSource>());
|
|
MOCK_METHOD0(StartPlayout, void());
|
|
MOCK_METHOD0(StopPlayout, void());
|
|
};
|
|
|
|
class MockChannelSendProxy : public voe::ChannelSendProxy {
|
|
public:
|
|
// GMock doesn't like move-only types, like std::unique_ptr.
|
|
virtual bool SetEncoder(int payload_type,
|
|
std::unique_ptr<AudioEncoder> encoder) {
|
|
return SetEncoderForMock(payload_type, &encoder);
|
|
}
|
|
MOCK_METHOD2(SetEncoderForMock,
|
|
bool(int payload_type, std::unique_ptr<AudioEncoder>* encoder));
|
|
MOCK_METHOD1(
|
|
ModifyEncoder,
|
|
void(rtc::FunctionView<void(std::unique_ptr<AudioEncoder>*)> modifier));
|
|
MOCK_METHOD1(SetRTCPStatus, void(bool enable));
|
|
MOCK_METHOD1(SetLocalSSRC, void(uint32_t ssrc));
|
|
MOCK_METHOD1(SetRTCP_CNAME, void(const std::string& c_name));
|
|
MOCK_METHOD2(SetNACKStatus, void(bool enable, int max_packets));
|
|
MOCK_METHOD2(SetSendAudioLevelIndicationStatus, void(bool enable, int id));
|
|
MOCK_METHOD1(EnableSendTransportSequenceNumber, void(int id));
|
|
MOCK_METHOD2(RegisterSenderCongestionControlObjects,
|
|
void(RtpTransportControllerSendInterface* transport,
|
|
RtcpBandwidthObserver* bandwidth_observer));
|
|
MOCK_METHOD0(ResetSenderCongestionControlObjects, void());
|
|
MOCK_CONST_METHOD0(GetRTCPStatistics, CallSendStatistics());
|
|
MOCK_CONST_METHOD0(GetRemoteRTCPReportBlocks, std::vector<ReportBlock>());
|
|
MOCK_CONST_METHOD0(GetANAStatistics, ANAStats());
|
|
MOCK_METHOD2(SetSendTelephoneEventPayloadType,
|
|
bool(int payload_type, int payload_frequency));
|
|
MOCK_METHOD2(SendTelephoneEventOutband, bool(int event, int duration_ms));
|
|
MOCK_METHOD2(SetBitrate, void(int bitrate_bps, int64_t probing_interval_ms));
|
|
MOCK_METHOD1(SetInputMute, void(bool muted));
|
|
MOCK_METHOD1(RegisterTransport, void(Transport* transport));
|
|
MOCK_METHOD2(ReceivedRTCPPacket, bool(const uint8_t* packet, size_t length));
|
|
// GMock doesn't like move-only types, like std::unique_ptr.
|
|
virtual void ProcessAndEncodeAudio(std::unique_ptr<AudioFrame> audio_frame) {
|
|
ProcessAndEncodeAudioForMock(&audio_frame);
|
|
}
|
|
MOCK_METHOD1(ProcessAndEncodeAudioForMock,
|
|
void(std::unique_ptr<AudioFrame>* audio_frame));
|
|
MOCK_METHOD1(SetTransportOverhead, void(int transport_overhead_per_packet));
|
|
MOCK_CONST_METHOD0(GetRtpRtcp, RtpRtcp*());
|
|
MOCK_CONST_METHOD0(GetBitrate, int());
|
|
MOCK_METHOD1(OnTwccBasedUplinkPacketLossRate, void(float packet_loss_rate));
|
|
MOCK_METHOD1(OnRecoverableUplinkPacketLossRate,
|
|
void(float recoverable_packet_loss_rate));
|
|
MOCK_METHOD0(StartSend, void());
|
|
MOCK_METHOD0(StopSend, void());
|
|
MOCK_METHOD1(
|
|
SetFrameEncryptor,
|
|
void(rtc::scoped_refptr<FrameEncryptorInterface> frame_encryptor));
|
|
};
|
|
} // namespace test
|
|
} // namespace webrtc
|
|
|
|
#endif // AUDIO_MOCK_VOE_CHANNEL_PROXY_H_
|