2011-07-07 08:21:25 +00:00
|
|
|
/*
|
2012-03-01 18:34:25 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-05-05 18:22:21 +00:00
|
|
|
#ifndef WEBRTC_VOICE_ENGINE_CHANNEL_H_
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_CHANNEL_H_
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-07-31 16:23:37 +00:00
|
|
|
#include "webrtc/common_audio/resampler/include/push_resampler.h"
|
2013-02-12 21:42:18 +00:00
|
|
|
#include "webrtc/common_types.h"
|
|
|
|
|
#include "webrtc/modules/audio_coding/main/interface/audio_coding_module.h"
|
|
|
|
|
#include "webrtc/modules/audio_conference_mixer/interface/audio_conference_mixer_defines.h"
|
2014-05-05 18:22:21 +00:00
|
|
|
#include "webrtc/modules/audio_processing/rms_level.h"
|
2014-05-28 09:52:06 +00:00
|
|
|
#include "webrtc/modules/bitrate_controller/include/bitrate_controller.h"
|
2013-05-29 12:12:51 +00:00
|
|
|
#include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h"
|
2013-02-12 21:42:18 +00:00
|
|
|
#include "webrtc/modules/rtp_rtcp/interface/rtp_rtcp.h"
|
|
|
|
|
#include "webrtc/modules/utility/interface/file_player.h"
|
|
|
|
|
#include "webrtc/modules/utility/interface/file_recorder.h"
|
|
|
|
|
#include "webrtc/system_wrappers/interface/scoped_ptr.h"
|
|
|
|
|
#include "webrtc/voice_engine/dtmf_inband.h"
|
|
|
|
|
#include "webrtc/voice_engine/dtmf_inband_queue.h"
|
|
|
|
|
#include "webrtc/voice_engine/include/voe_audio_processing.h"
|
|
|
|
|
#include "webrtc/voice_engine/include/voe_network.h"
|
|
|
|
|
#include "webrtc/voice_engine/level_indicator.h"
|
|
|
|
|
#include "webrtc/voice_engine/shared_data.h"
|
|
|
|
|
#include "webrtc/voice_engine/voice_engine_defines.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
#ifdef WEBRTC_DTMF_DETECTION
|
2013-05-21 13:52:32 +00:00
|
|
|
// TelephoneEventDetectionMethods, TelephoneEventObserver
|
|
|
|
|
#include "webrtc/voice_engine/include/voe_dtmf.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
2014-06-05 20:34:08 +00:00
|
|
|
namespace rtc {
|
|
|
|
|
|
|
|
|
|
class TimestampWrapAroundHandler;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-23 23:02:24 +00:00
|
|
|
namespace webrtc {
|
|
|
|
|
|
2013-07-16 19:25:04 +00:00
|
|
|
class AudioDeviceModule;
|
2013-09-12 17:03:00 +00:00
|
|
|
class Config;
|
2013-08-15 23:38:54 +00:00
|
|
|
class CriticalSectionWrapper;
|
2013-07-16 19:25:04 +00:00
|
|
|
class FileWrapper;
|
2013-08-15 23:38:54 +00:00
|
|
|
class ProcessThread;
|
|
|
|
|
class ReceiveStatistics;
|
2014-05-20 22:55:01 +00:00
|
|
|
class RemoteNtpTimeEstimator;
|
2013-07-16 19:25:04 +00:00
|
|
|
class RtpDump;
|
2013-08-15 23:38:54 +00:00
|
|
|
class RTPPayloadRegistry;
|
|
|
|
|
class RtpReceiver;
|
|
|
|
|
class RTPReceiverAudio;
|
|
|
|
|
class RtpRtcp;
|
|
|
|
|
class TelephoneEventHandler;
|
2014-03-24 10:38:25 +00:00
|
|
|
class ViENetwork;
|
2011-07-07 08:21:25 +00:00
|
|
|
class VoEMediaProcess;
|
2013-07-16 19:25:04 +00:00
|
|
|
class VoERTCPObserver;
|
2013-08-15 23:38:54 +00:00
|
|
|
class VoERTPObserver;
|
|
|
|
|
class VoiceEngineObserver;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
struct CallStatistics;
|
2012-08-22 08:53:55 +00:00
|
|
|
struct ReportBlock;
|
|
|
|
|
struct SenderInfo;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-09-23 23:02:24 +00:00
|
|
|
namespace voe {
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
class Statistics;
|
2013-12-19 13:26:02 +00:00
|
|
|
class StatisticsProxy;
|
2011-07-07 08:21:25 +00:00
|
|
|
class TransmitMixer;
|
|
|
|
|
class OutputMixer;
|
|
|
|
|
|
2014-03-18 10:32:33 +00:00
|
|
|
// Helper class to simplify locking scheme for members that are accessed from
|
|
|
|
|
// multiple threads.
|
|
|
|
|
// Example: a member can be set on thread T1 and read by an internal audio
|
|
|
|
|
// thread T2. Accessing the member via this class ensures that we are
|
|
|
|
|
// safe and also avoid TSan v2 warnings.
|
|
|
|
|
class ChannelState {
|
|
|
|
|
public:
|
|
|
|
|
struct State {
|
|
|
|
|
State() : rx_apm_is_enabled(false),
|
|
|
|
|
input_external_media(false),
|
|
|
|
|
output_file_playing(false),
|
|
|
|
|
input_file_playing(false),
|
|
|
|
|
playing(false),
|
|
|
|
|
sending(false),
|
|
|
|
|
receiving(false) {}
|
|
|
|
|
|
|
|
|
|
bool rx_apm_is_enabled;
|
|
|
|
|
bool input_external_media;
|
|
|
|
|
bool output_file_playing;
|
|
|
|
|
bool input_file_playing;
|
|
|
|
|
bool playing;
|
|
|
|
|
bool sending;
|
|
|
|
|
bool receiving;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ChannelState() : lock_(CriticalSectionWrapper::CreateCriticalSection()) {
|
|
|
|
|
}
|
|
|
|
|
virtual ~ChannelState() {}
|
|
|
|
|
|
|
|
|
|
void Reset() {
|
|
|
|
|
CriticalSectionScoped lock(lock_.get());
|
|
|
|
|
state_ = State();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
State Get() const {
|
|
|
|
|
CriticalSectionScoped lock(lock_.get());
|
|
|
|
|
return state_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetRxApmIsEnabled(bool enable) {
|
|
|
|
|
CriticalSectionScoped lock(lock_.get());
|
|
|
|
|
state_.rx_apm_is_enabled = enable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetInputExternalMedia(bool enable) {
|
|
|
|
|
CriticalSectionScoped lock(lock_.get());
|
|
|
|
|
state_.input_external_media = enable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetOutputFilePlaying(bool enable) {
|
|
|
|
|
CriticalSectionScoped lock(lock_.get());
|
|
|
|
|
state_.output_file_playing = enable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetInputFilePlaying(bool enable) {
|
|
|
|
|
CriticalSectionScoped lock(lock_.get());
|
|
|
|
|
state_.input_file_playing = enable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetPlaying(bool enable) {
|
|
|
|
|
CriticalSectionScoped lock(lock_.get());
|
|
|
|
|
state_.playing = enable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetSending(bool enable) {
|
|
|
|
|
CriticalSectionScoped lock(lock_.get());
|
|
|
|
|
state_.sending = enable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetReceiving(bool enable) {
|
|
|
|
|
CriticalSectionScoped lock(lock_.get());
|
|
|
|
|
state_.receiving = enable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
scoped_ptr<CriticalSectionWrapper> lock_;
|
|
|
|
|
State state_;
|
|
|
|
|
};
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
class Channel:
|
|
|
|
|
public RtpData,
|
|
|
|
|
public RtpFeedback,
|
|
|
|
|
public RtcpFeedback,
|
|
|
|
|
public FileCallback, // receiving notification from file player & recorder
|
|
|
|
|
public Transport,
|
|
|
|
|
public RtpAudioFeedback,
|
|
|
|
|
public AudioPacketizationCallback, // receive encoded packets from the ACM
|
|
|
|
|
public ACMVADCallback, // receive voice activity from the ACM
|
|
|
|
|
public MixerParticipant // supplies output mixer with audio frames
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
enum {KNumSocketThreads = 1};
|
|
|
|
|
enum {KNumberOfSocketBuffers = 8};
|
|
|
|
|
virtual ~Channel();
|
2013-04-09 10:09:10 +00:00
|
|
|
static int32_t CreateChannel(Channel*& channel,
|
2013-05-14 08:31:39 +00:00
|
|
|
int32_t channelId,
|
2013-09-12 17:03:00 +00:00
|
|
|
uint32_t instanceId,
|
|
|
|
|
const Config& config);
|
|
|
|
|
Channel(int32_t channelId, uint32_t instanceId, const Config& config);
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t Init();
|
|
|
|
|
int32_t SetEngineInformation(
|
2011-07-07 08:21:25 +00:00
|
|
|
Statistics& engineStatistics,
|
|
|
|
|
OutputMixer& outputMixer,
|
|
|
|
|
TransmitMixer& transmitMixer,
|
|
|
|
|
ProcessThread& moduleProcessThread,
|
|
|
|
|
AudioDeviceModule& audioDeviceModule,
|
|
|
|
|
VoiceEngineObserver* voiceEngineObserver,
|
|
|
|
|
CriticalSectionWrapper* callbackCritSect);
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t UpdateLocalTimeStamp();
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// API methods
|
|
|
|
|
|
|
|
|
|
// VoEBase
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t StartPlayout();
|
|
|
|
|
int32_t StopPlayout();
|
|
|
|
|
int32_t StartSend();
|
|
|
|
|
int32_t StopSend();
|
|
|
|
|
int32_t StartReceiving();
|
|
|
|
|
int32_t StopReceiving();
|
|
|
|
|
|
|
|
|
|
int32_t SetNetEQPlayoutMode(NetEqModes mode);
|
|
|
|
|
int32_t GetNetEQPlayoutMode(NetEqModes& mode);
|
|
|
|
|
int32_t RegisterVoiceEngineObserver(VoiceEngineObserver& observer);
|
|
|
|
|
int32_t DeRegisterVoiceEngineObserver();
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// VoECodec
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t GetSendCodec(CodecInst& codec);
|
|
|
|
|
int32_t GetRecCodec(CodecInst& codec);
|
|
|
|
|
int32_t SetSendCodec(const CodecInst& codec);
|
|
|
|
|
int32_t SetVADStatus(bool enableVAD, ACMVADMode mode, bool disableDTX);
|
|
|
|
|
int32_t GetVADStatus(bool& enabledVAD, ACMVADMode& mode, bool& disabledDTX);
|
|
|
|
|
int32_t SetRecPayloadType(const CodecInst& codec);
|
|
|
|
|
int32_t GetRecPayloadType(CodecInst& codec);
|
|
|
|
|
int32_t SetSendCNPayloadType(int type, PayloadFrequencies frequency);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-12-11 02:15:12 +00:00
|
|
|
// VoE dual-streaming.
|
|
|
|
|
int SetSecondarySendCodec(const CodecInst& codec, int red_payload_type);
|
|
|
|
|
void RemoveSecondarySendCodec();
|
|
|
|
|
int GetSecondarySendCodec(CodecInst* codec);
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
// VoENetwork
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t RegisterExternalTransport(Transport& transport);
|
|
|
|
|
int32_t DeRegisterExternalTransport();
|
2014-03-24 10:38:25 +00:00
|
|
|
int32_t ReceivedRTPPacket(const int8_t* data, int32_t length,
|
|
|
|
|
const PacketTime& packet_time);
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t ReceivedRTCPPacket(const int8_t* data, int32_t length);
|
2013-03-13 23:20:57 +00:00
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
// VoEFile
|
2013-05-14 08:31:39 +00:00
|
|
|
int StartPlayingFileLocally(const char* fileName, bool loop,
|
|
|
|
|
FileFormats format,
|
|
|
|
|
int startPosition,
|
|
|
|
|
float volumeScaling,
|
|
|
|
|
int stopPosition,
|
2011-07-07 08:21:25 +00:00
|
|
|
const CodecInst* codecInst);
|
2013-05-14 08:31:39 +00:00
|
|
|
int StartPlayingFileLocally(InStream* stream, FileFormats format,
|
|
|
|
|
int startPosition,
|
|
|
|
|
float volumeScaling,
|
|
|
|
|
int stopPosition,
|
2011-07-07 08:21:25 +00:00
|
|
|
const CodecInst* codecInst);
|
|
|
|
|
int StopPlayingFileLocally();
|
|
|
|
|
int IsPlayingFileLocally() const;
|
2012-06-04 03:26:39 +00:00
|
|
|
int RegisterFilePlayingToMixer();
|
2013-05-14 08:31:39 +00:00
|
|
|
int StartPlayingFileAsMicrophone(const char* fileName, bool loop,
|
|
|
|
|
FileFormats format,
|
|
|
|
|
int startPosition,
|
|
|
|
|
float volumeScaling,
|
|
|
|
|
int stopPosition,
|
2011-07-07 08:21:25 +00:00
|
|
|
const CodecInst* codecInst);
|
|
|
|
|
int StartPlayingFileAsMicrophone(InStream* stream,
|
2013-05-14 08:31:39 +00:00
|
|
|
FileFormats format,
|
|
|
|
|
int startPosition,
|
|
|
|
|
float volumeScaling,
|
|
|
|
|
int stopPosition,
|
2011-07-07 08:21:25 +00:00
|
|
|
const CodecInst* codecInst);
|
|
|
|
|
int StopPlayingFileAsMicrophone();
|
|
|
|
|
int IsPlayingFileAsMicrophone() const;
|
|
|
|
|
int StartRecordingPlayout(const char* fileName, const CodecInst* codecInst);
|
|
|
|
|
int StartRecordingPlayout(OutStream* stream, const CodecInst* codecInst);
|
|
|
|
|
int StopRecordingPlayout();
|
|
|
|
|
|
|
|
|
|
void SetMixWithMicStatus(bool mix);
|
|
|
|
|
|
|
|
|
|
// VoEExternalMediaProcessing
|
|
|
|
|
int RegisterExternalMediaProcessing(ProcessingTypes type,
|
|
|
|
|
VoEMediaProcess& processObject);
|
|
|
|
|
int DeRegisterExternalMediaProcessing(ProcessingTypes type);
|
2012-12-12 23:00:29 +00:00
|
|
|
int SetExternalMixing(bool enabled);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// VoEVolumeControl
|
2013-04-09 10:09:10 +00:00
|
|
|
int GetSpeechOutputLevel(uint32_t& level) const;
|
|
|
|
|
int GetSpeechOutputLevelFullRange(uint32_t& level) const;
|
2013-05-14 08:31:39 +00:00
|
|
|
int SetMute(bool enable);
|
2011-07-07 08:21:25 +00:00
|
|
|
bool Mute() const;
|
|
|
|
|
int SetOutputVolumePan(float left, float right);
|
|
|
|
|
int GetOutputVolumePan(float& left, float& right) const;
|
|
|
|
|
int SetChannelOutputVolumeScaling(float scaling);
|
|
|
|
|
int GetChannelOutputVolumeScaling(float& scaling) const;
|
|
|
|
|
|
|
|
|
|
// VoENetEqStats
|
|
|
|
|
int GetNetworkStatistics(NetworkStatistics& stats);
|
2013-12-13 19:17:43 +00:00
|
|
|
void GetDecodingCallStatistics(AudioDecodingCallStats* stats) const;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// VoEVideoSync
|
2013-04-11 20:23:35 +00:00
|
|
|
bool GetDelayEstimate(int* jitter_buffer_delay_ms,
|
|
|
|
|
int* playout_buffer_delay_ms) const;
|
2013-05-22 20:39:43 +00:00
|
|
|
int least_required_delay_ms() const { return least_required_delay_ms_; }
|
2013-02-12 21:42:18 +00:00
|
|
|
int SetInitialPlayoutDelay(int delay_ms);
|
2011-07-07 08:21:25 +00:00
|
|
|
int SetMinimumPlayoutDelay(int delayMs);
|
|
|
|
|
int GetPlayoutTimestamp(unsigned int& timestamp);
|
2013-04-11 20:23:35 +00:00
|
|
|
void UpdatePlayoutTimestamp(bool rtcp);
|
2011-07-07 08:21:25 +00:00
|
|
|
int SetInitTimestamp(unsigned int timestamp);
|
|
|
|
|
int SetInitSequenceNumber(short sequenceNumber);
|
|
|
|
|
|
|
|
|
|
// VoEVideoSyncExtended
|
2013-08-15 23:38:54 +00:00
|
|
|
int GetRtpRtcp(RtpRtcp** rtpRtcpModule, RtpReceiver** rtp_receiver) const;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// VoEDtmf
|
|
|
|
|
int SendTelephoneEventOutband(unsigned char eventCode, int lengthMs,
|
|
|
|
|
int attenuationDb, bool playDtmfEvent);
|
|
|
|
|
int SendTelephoneEventInband(unsigned char eventCode, int lengthMs,
|
|
|
|
|
int attenuationDb, bool playDtmfEvent);
|
|
|
|
|
int SetDtmfPlayoutStatus(bool enable);
|
|
|
|
|
bool DtmfPlayoutStatus() const;
|
|
|
|
|
int SetSendTelephoneEventPayloadType(unsigned char type);
|
|
|
|
|
int GetSendTelephoneEventPayloadType(unsigned char& type);
|
|
|
|
|
|
|
|
|
|
// VoEAudioProcessingImpl
|
|
|
|
|
int UpdateRxVadDetection(AudioFrame& audioFrame);
|
|
|
|
|
int RegisterRxVadObserver(VoERxVadCallback &observer);
|
|
|
|
|
int DeRegisterRxVadObserver();
|
|
|
|
|
int VoiceActivityIndicator(int &activity);
|
|
|
|
|
#ifdef WEBRTC_VOICE_ENGINE_AGC
|
2013-05-14 08:31:39 +00:00
|
|
|
int SetRxAgcStatus(bool enable, AgcModes mode);
|
2011-07-07 08:21:25 +00:00
|
|
|
int GetRxAgcStatus(bool& enabled, AgcModes& mode);
|
2013-05-14 08:31:39 +00:00
|
|
|
int SetRxAgcConfig(AgcConfig config);
|
2011-07-07 08:21:25 +00:00
|
|
|
int GetRxAgcConfig(AgcConfig& config);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef WEBRTC_VOICE_ENGINE_NR
|
2013-05-14 08:31:39 +00:00
|
|
|
int SetRxNsStatus(bool enable, NsModes mode);
|
2011-07-07 08:21:25 +00:00
|
|
|
int GetRxNsStatus(bool& enabled, NsModes& mode);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// VoERTP_RTCP
|
|
|
|
|
int RegisterRTCPObserver(VoERTCPObserver& observer);
|
|
|
|
|
int DeRegisterRTCPObserver();
|
|
|
|
|
int SetLocalSSRC(unsigned int ssrc);
|
|
|
|
|
int GetLocalSSRC(unsigned int& ssrc);
|
|
|
|
|
int GetRemoteSSRC(unsigned int& ssrc);
|
2014-03-06 23:49:08 +00:00
|
|
|
int SetSendAudioLevelIndicationStatus(bool enable, unsigned char id);
|
2014-04-24 20:33:08 +00:00
|
|
|
int SetReceiveAudioLevelIndicationStatus(bool enable, unsigned char id);
|
2014-03-06 23:49:08 +00:00
|
|
|
int SetSendAbsoluteSenderTimeStatus(bool enable, unsigned char id);
|
|
|
|
|
int SetReceiveAbsoluteSenderTimeStatus(bool enable, unsigned char id);
|
2011-07-07 08:21:25 +00:00
|
|
|
int SetRTCPStatus(bool enable);
|
|
|
|
|
int GetRTCPStatus(bool& enabled);
|
|
|
|
|
int SetRTCP_CNAME(const char cName[256]);
|
|
|
|
|
int GetRTCP_CNAME(char cName[256]);
|
|
|
|
|
int GetRemoteRTCP_CNAME(char cName[256]);
|
|
|
|
|
int GetRemoteRTCPData(unsigned int& NTPHigh, unsigned int& NTPLow,
|
|
|
|
|
unsigned int& timestamp,
|
|
|
|
|
unsigned int& playoutTimestamp, unsigned int* jitter,
|
|
|
|
|
unsigned short* fractionLost);
|
2013-05-14 08:31:39 +00:00
|
|
|
int SendApplicationDefinedRTCPPacket(unsigned char subType,
|
2011-07-07 08:21:25 +00:00
|
|
|
unsigned int name, const char* data,
|
|
|
|
|
unsigned short dataLengthInBytes);
|
|
|
|
|
int GetRTPStatistics(unsigned int& averageJitterMs,
|
|
|
|
|
unsigned int& maxJitterMs,
|
|
|
|
|
unsigned int& discardedPackets);
|
2012-08-22 08:53:55 +00:00
|
|
|
int GetRemoteRTCPReportBlocks(std::vector<ReportBlock>* report_blocks);
|
2011-07-07 08:21:25 +00:00
|
|
|
int GetRTPStatistics(CallStatistics& stats);
|
2014-05-28 09:52:06 +00:00
|
|
|
int SetREDStatus(bool enable, int redPayloadtype);
|
|
|
|
|
int GetREDStatus(bool& enabled, int& redPayloadtype);
|
|
|
|
|
int SetCodecFECStatus(bool enable);
|
|
|
|
|
bool GetCodecFECStatus();
|
2013-06-05 15:33:20 +00:00
|
|
|
void SetNACKStatus(bool enable, int maxNumberOfPackets);
|
2011-07-07 08:21:25 +00:00
|
|
|
int StartRTPDump(const char fileNameUTF8[1024], RTPDirections direction);
|
|
|
|
|
int StopRTPDump(RTPDirections direction);
|
|
|
|
|
bool RTPDumpIsActive(RTPDirections direction);
|
2014-03-24 10:38:25 +00:00
|
|
|
// Takes ownership of the ViENetwork.
|
|
|
|
|
void SetVideoEngineBWETarget(ViENetwork* vie_network, int video_channel);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// From AudioPacketizationCallback in the ACM
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t SendData(FrameType frameType,
|
|
|
|
|
uint8_t payloadType,
|
|
|
|
|
uint32_t timeStamp,
|
|
|
|
|
const uint8_t* payloadData,
|
|
|
|
|
uint16_t payloadSize,
|
|
|
|
|
const RTPFragmentationHeader* fragmentation);
|
2011-07-07 08:21:25 +00:00
|
|
|
// From ACMVADCallback in the ACM
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t InFrameType(int16_t frameType);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-05-14 08:31:39 +00:00
|
|
|
int32_t OnRxVadDetected(int vadDecision);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// From RtpData in the RTP/RTCP module
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t OnReceivedPayloadData(const uint8_t* payloadData,
|
2013-05-14 08:31:39 +00:00
|
|
|
uint16_t payloadSize,
|
2013-04-09 10:09:10 +00:00
|
|
|
const WebRtcRTPHeader* rtpHeader);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-09-06 13:40:11 +00:00
|
|
|
bool OnRecoveredPacket(const uint8_t* packet, int packet_length);
|
2013-08-15 23:38:54 +00:00
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
// From RtpFeedback in the RTP/RTCP module
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t OnInitializeDecoder(
|
2013-05-14 08:31:39 +00:00
|
|
|
int32_t id,
|
|
|
|
|
int8_t payloadType,
|
2012-03-01 18:34:25 +00:00
|
|
|
const char payloadName[RTP_PAYLOAD_NAME_SIZE],
|
2013-05-14 08:31:39 +00:00
|
|
|
int frequency,
|
|
|
|
|
uint8_t channels,
|
|
|
|
|
uint32_t rate);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-05-14 08:31:39 +00:00
|
|
|
void OnPacketTimeout(int32_t id);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-05-14 08:31:39 +00:00
|
|
|
void OnReceivedPacket(int32_t id, RtpRtcpPacketType packetType);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-05-14 08:31:39 +00:00
|
|
|
void OnPeriodicDeadOrAlive(int32_t id,
|
|
|
|
|
RTPAliveType alive);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-05-14 08:31:39 +00:00
|
|
|
void OnIncomingSSRCChanged(int32_t id,
|
2013-08-21 20:58:21 +00:00
|
|
|
uint32_t ssrc);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-05-14 08:31:39 +00:00
|
|
|
void OnIncomingCSRCChanged(int32_t id,
|
|
|
|
|
uint32_t CSRC, bool added);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-08-21 20:58:21 +00:00
|
|
|
void ResetStatistics(uint32_t ssrc);
|
2013-08-15 23:38:54 +00:00
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
// From RtcpFeedback in the RTP/RTCP module
|
2013-05-14 08:31:39 +00:00
|
|
|
void OnApplicationDataReceived(int32_t id,
|
|
|
|
|
uint8_t subType,
|
|
|
|
|
uint32_t name,
|
|
|
|
|
uint16_t length,
|
2013-04-09 10:09:10 +00:00
|
|
|
const uint8_t* data);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// From RtpAudioFeedback in the RTP/RTCP module
|
2013-05-14 08:31:39 +00:00
|
|
|
void OnReceivedTelephoneEvent(int32_t id,
|
|
|
|
|
uint8_t event,
|
|
|
|
|
bool endOfEvent);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-05-14 08:31:39 +00:00
|
|
|
void OnPlayTelephoneEvent(int32_t id,
|
|
|
|
|
uint8_t event,
|
|
|
|
|
uint16_t lengthMs,
|
|
|
|
|
uint8_t volume);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// From Transport (called by the RTP/RTCP module)
|
|
|
|
|
int SendPacket(int /*channel*/, const void *data, int len);
|
|
|
|
|
int SendRTCPPacket(int /*channel*/, const void *data, int len);
|
|
|
|
|
|
|
|
|
|
// From MixerParticipant
|
2013-05-14 08:31:39 +00:00
|
|
|
int32_t GetAudioFrame(int32_t id, AudioFrame& audioFrame);
|
|
|
|
|
int32_t NeededFrequency(int32_t id);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// From MonitorObserver
|
|
|
|
|
void OnPeriodicProcess();
|
|
|
|
|
|
|
|
|
|
// From FileCallback
|
2013-05-14 08:31:39 +00:00
|
|
|
void PlayNotification(int32_t id,
|
|
|
|
|
uint32_t durationMs);
|
|
|
|
|
void RecordNotification(int32_t id,
|
|
|
|
|
uint32_t durationMs);
|
|
|
|
|
void PlayFileEnded(int32_t id);
|
|
|
|
|
void RecordFileEnded(int32_t id);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-04-09 10:09:10 +00:00
|
|
|
uint32_t InstanceId() const
|
2011-07-07 08:21:25 +00:00
|
|
|
{
|
|
|
|
|
return _instanceId;
|
2011-11-28 16:31:28 +00:00
|
|
|
}
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t ChannelId() const
|
2011-07-07 08:21:25 +00:00
|
|
|
{
|
|
|
|
|
return _channelId;
|
2011-11-28 16:31:28 +00:00
|
|
|
}
|
2011-07-07 08:21:25 +00:00
|
|
|
bool Playing() const
|
|
|
|
|
{
|
2014-03-18 10:32:33 +00:00
|
|
|
return channel_state_.Get().playing;
|
2011-11-28 16:31:28 +00:00
|
|
|
}
|
2011-07-07 08:21:25 +00:00
|
|
|
bool Sending() const
|
|
|
|
|
{
|
2014-03-18 10:32:33 +00:00
|
|
|
return channel_state_.Get().sending;
|
2011-11-28 16:31:28 +00:00
|
|
|
}
|
2011-07-07 08:21:25 +00:00
|
|
|
bool Receiving() const
|
|
|
|
|
{
|
2014-03-18 10:32:33 +00:00
|
|
|
return channel_state_.Get().receiving;
|
2011-11-28 16:31:28 +00:00
|
|
|
}
|
2011-07-07 08:21:25 +00:00
|
|
|
bool ExternalTransport() const
|
|
|
|
|
{
|
2014-03-18 10:32:33 +00:00
|
|
|
CriticalSectionScoped cs(&_callbackCritSect);
|
2011-07-07 08:21:25 +00:00
|
|
|
return _externalTransport;
|
2011-11-28 16:31:28 +00:00
|
|
|
}
|
2012-12-12 23:00:29 +00:00
|
|
|
bool ExternalMixing() const
|
|
|
|
|
{
|
|
|
|
|
return _externalMixing;
|
|
|
|
|
}
|
2011-08-19 22:56:22 +00:00
|
|
|
RtpRtcp* RtpRtcpModulePtr() const
|
2011-07-07 08:21:25 +00:00
|
|
|
{
|
2012-05-11 11:08:54 +00:00
|
|
|
return _rtpRtcpModule.get();
|
2011-11-28 16:31:28 +00:00
|
|
|
}
|
2013-04-09 10:09:10 +00:00
|
|
|
int8_t OutputEnergyLevel() const
|
2011-07-07 08:21:25 +00:00
|
|
|
{
|
|
|
|
|
return _outputAudioLevel.Level();
|
2011-11-28 16:31:28 +00:00
|
|
|
}
|
2013-04-09 10:09:10 +00:00
|
|
|
uint32_t Demultiplex(const AudioFrame& audioFrame);
|
2013-07-31 16:23:37 +00:00
|
|
|
// Demultiplex the data to the channel's |_audioFrame|. The difference
|
|
|
|
|
// between this method and the overloaded method above is that |audio_data|
|
|
|
|
|
// does not go through transmit_mixer and APM.
|
|
|
|
|
void Demultiplex(const int16_t* audio_data,
|
2013-07-31 16:27:42 +00:00
|
|
|
int sample_rate,
|
2013-07-31 16:23:37 +00:00
|
|
|
int number_of_frames,
|
2013-07-31 16:27:42 +00:00
|
|
|
int number_of_channels);
|
2013-04-09 10:09:10 +00:00
|
|
|
uint32_t PrepareEncodeAndSend(int mixingFrequency);
|
|
|
|
|
uint32_t EncodeAndSend();
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2014-05-28 09:52:06 +00:00
|
|
|
// From BitrateObserver (called by the RTP/RTCP module).
|
|
|
|
|
void OnNetworkChanged(const uint32_t bitrate_bps,
|
|
|
|
|
const uint8_t fraction_lost, // 0 - 255.
|
|
|
|
|
const uint32_t rtt);
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
private:
|
2013-09-06 13:40:11 +00:00
|
|
|
bool ReceivePacket(const uint8_t* packet, int packet_length,
|
|
|
|
|
const RTPHeader& header, bool in_order);
|
|
|
|
|
bool HandleEncapsulation(const uint8_t* packet,
|
|
|
|
|
int packet_length,
|
|
|
|
|
const RTPHeader& header);
|
|
|
|
|
bool IsPacketInOrder(const RTPHeader& header) const;
|
2013-11-08 15:18:52 +00:00
|
|
|
bool IsPacketRetransmitted(const RTPHeader& header, bool in_order) const;
|
2013-06-07 01:43:12 +00:00
|
|
|
int ResendPackets(const uint16_t* sequence_numbers, int length);
|
2011-07-07 08:21:25 +00:00
|
|
|
int InsertInbandDtmfTone();
|
2013-05-14 08:31:39 +00:00
|
|
|
int32_t MixOrReplaceAudioWithFile(int mixingFrequency);
|
|
|
|
|
int32_t MixAudioWithFile(AudioFrame& audioFrame, int mixingFrequency);
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t SendPacketRaw(const void *data, int len, bool RTCP);
|
2013-04-11 20:23:35 +00:00
|
|
|
void UpdatePacketDelay(uint32_t timestamp,
|
|
|
|
|
uint16_t sequenceNumber);
|
2011-07-07 08:21:25 +00:00
|
|
|
void RegisterReceiveCodecsToRTPModule();
|
|
|
|
|
|
2012-12-11 02:15:12 +00:00
|
|
|
int SetRedPayloadType(int red_payload_type);
|
2014-03-06 23:49:08 +00:00
|
|
|
int SetSendRtpHeaderExtension(bool enable, RTPExtensionType type,
|
|
|
|
|
unsigned char id);
|
2013-09-23 23:02:24 +00:00
|
|
|
|
2014-06-05 20:34:08 +00:00
|
|
|
int32_t GetPlayoutFrequency();
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
CriticalSectionWrapper& _fileCritSect;
|
|
|
|
|
CriticalSectionWrapper& _callbackCritSect;
|
2013-10-17 18:28:55 +00:00
|
|
|
CriticalSectionWrapper& volume_settings_critsect_;
|
2013-04-09 10:09:10 +00:00
|
|
|
uint32_t _instanceId;
|
|
|
|
|
int32_t _channelId;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2014-03-18 10:32:33 +00:00
|
|
|
ChannelState channel_state_;
|
|
|
|
|
|
2013-05-29 12:12:51 +00:00
|
|
|
scoped_ptr<RtpHeaderParser> rtp_header_parser_;
|
2013-08-15 23:38:54 +00:00
|
|
|
scoped_ptr<RTPPayloadRegistry> rtp_payload_registry_;
|
|
|
|
|
scoped_ptr<ReceiveStatistics> rtp_receive_statistics_;
|
2013-12-19 13:26:02 +00:00
|
|
|
scoped_ptr<StatisticsProxy> statistics_proxy_;
|
2013-08-15 23:38:54 +00:00
|
|
|
scoped_ptr<RtpReceiver> rtp_receiver_;
|
|
|
|
|
TelephoneEventHandler* telephone_event_handler_;
|
2012-05-11 11:08:54 +00:00
|
|
|
scoped_ptr<RtpRtcp> _rtpRtcpModule;
|
2013-09-23 23:02:24 +00:00
|
|
|
scoped_ptr<AudioCodingModule> audio_coding_;
|
2011-07-07 08:21:25 +00:00
|
|
|
RtpDump& _rtpDumpIn;
|
|
|
|
|
RtpDump& _rtpDumpOut;
|
|
|
|
|
AudioLevel _outputAudioLevel;
|
|
|
|
|
bool _externalTransport;
|
|
|
|
|
AudioFrame _audioFrame;
|
Consolidate audio conversion from Channel and TransmitMixer.
Replace the two versions with a single DownConvertToCodecFormat. As
mentioned in comments, this could be further consolidated with
RemixAndResample but we should write a full audio converter class in
that case.
Along the way:
- Fix the bug present in Channel::Demultiplex with mono input and a
stereo codec.
- Remove the 32 kHz max from the OnDataAvailable path. This avoids a
48 -> 32 -> 48 conversion when VoE is passed 48 kHz audio; instead we
get a straight pass-through to ACM. The 32 kHz conversion is still
needed in the RecordedDataIsAvailable path until APM natively supports
48 kHz.
- Merge resampler improvements from ACM1 to ACM2. This allows ACM to
handle 44.1 kHz audio passed to VoE and was originally done here:
https://webrtc-codereview.appspot.com/1590004
- Reuse the RemixAndResample unit tests for DownConvertToCodecFormat.
- Remove unused functions from utility.cc.
BUG=3155,3000,b/12867572
TESTED=voe_cmd_test using both the OnDataAvailable and
RecordedDataIsAvailable paths, with a captured audio format of all
combinations of {44.1,48} kHz and {1,2} channels, running through all
codecs, and finally using both ACM1 and ACM2.
R=henrika@webrtc.org, turaj@webrtc.org, xians@webrtc.org
Review URL: https://webrtc-codereview.appspot.com/11019005
git-svn-id: http://webrtc.googlecode.com/svn/trunk@5843 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-04-03 21:56:01 +00:00
|
|
|
scoped_ptr<int16_t[]> mono_recording_audio_;
|
2014-04-19 00:32:07 +00:00
|
|
|
// Downsamples to the codec rate if necessary.
|
|
|
|
|
PushResampler<int16_t> input_resampler_;
|
2013-04-09 10:09:10 +00:00
|
|
|
uint8_t _audioLevel_dBov;
|
2011-07-07 08:21:25 +00:00
|
|
|
FilePlayer* _inputFilePlayerPtr;
|
|
|
|
|
FilePlayer* _outputFilePlayerPtr;
|
|
|
|
|
FileRecorder* _outputFileRecorderPtr;
|
2011-08-08 08:18:44 +00:00
|
|
|
int _inputFilePlayerId;
|
|
|
|
|
int _outputFilePlayerId;
|
|
|
|
|
int _outputFileRecorderId;
|
2011-07-07 08:21:25 +00:00
|
|
|
bool _outputFileRecording;
|
|
|
|
|
DtmfInbandQueue _inbandDtmfQueue;
|
|
|
|
|
DtmfInband _inbandDtmfGenerator;
|
2011-08-03 12:40:23 +00:00
|
|
|
bool _outputExternalMedia;
|
2011-07-07 08:21:25 +00:00
|
|
|
VoEMediaProcess* _inputExternalMediaCallbackPtr;
|
|
|
|
|
VoEMediaProcess* _outputExternalMediaCallbackPtr;
|
2013-04-09 10:09:10 +00:00
|
|
|
uint32_t _timeStamp;
|
|
|
|
|
uint8_t _sendTelephoneEventPayloadType;
|
2013-12-13 21:05:07 +00:00
|
|
|
|
2014-05-20 22:55:01 +00:00
|
|
|
scoped_ptr<RemoteNtpTimeEstimator> ntp_estimator_;
|
|
|
|
|
|
2013-12-13 21:05:07 +00:00
|
|
|
// Timestamp of the audio pulled from NetEq.
|
|
|
|
|
uint32_t jitter_buffer_playout_timestamp_;
|
2013-04-11 20:23:35 +00:00
|
|
|
uint32_t playout_timestamp_rtp_;
|
|
|
|
|
uint32_t playout_timestamp_rtcp_;
|
|
|
|
|
uint32_t playout_delay_ms_;
|
2013-04-09 10:09:10 +00:00
|
|
|
uint32_t _numberOfDiscardedPackets;
|
Merge r4374 from stable to trunk.
r4374 was mistakenly committed to stable, so this is to re-merge back to trunk.
Store the sequence number in StopSend() and resume it in StartSend().
When restarting the microphone device, we call StopSend() first, then
StartSend() later. Since we reset sequence number in StopSend(), it sometimes
causes libSRTP to complain about packets being replayed. Libjingle work around
it by caching the sequence number in WebRtcVoiceEngine.cc, and call
SetInitSequenceNumber() to resume the sequence number before StartSend().Store the sequence number in StopSend() and resume it in StartSend().
When restarting the microphone device, we call StopSend() first, then
StartSend() later. Since we reset sequence number in StopSend(), it sometimes
causes libSRTP to complain about packets being replayed. Libjingle work around
it by caching the sequence number in WebRtcVoiceEngine.cc, and call
SetInitSequenceNumber() to resume the sequence number before StartSend().
This patch fixes this problem by storing the sequence number in StopSend(), and
resume it in StartSend(). So that we can remove the workaround in libjingle.
BUG=2102
R=tommi@webrtc.org
Review URL: https://webrtc-codereview.appspot.com/1922004
git-svn-id: http://webrtc.googlecode.com/svn/trunk@4451 4adac7df-926f-26a2-2b94-8c16560cd09d
2013-07-31 16:30:19 +00:00
|
|
|
uint16_t send_sequence_number_;
|
2013-09-06 13:40:11 +00:00
|
|
|
uint8_t restored_packet_[kVoiceEngineMaxIpPacketSizeBytes];
|
2013-04-11 20:23:35 +00:00
|
|
|
|
2014-05-19 17:39:11 +00:00
|
|
|
scoped_ptr<CriticalSectionWrapper> ts_stats_lock_;
|
|
|
|
|
|
2014-06-05 20:34:08 +00:00
|
|
|
scoped_ptr<rtc::TimestampWrapAroundHandler> rtp_ts_wraparound_handler_;
|
2014-05-19 17:39:11 +00:00
|
|
|
// The rtp timestamp of the first played out audio frame.
|
2014-06-05 20:34:08 +00:00
|
|
|
int64_t capture_start_rtp_time_stamp_;
|
2014-05-19 17:39:11 +00:00
|
|
|
// The capture ntp time (in local timebase) of the first played out audio
|
|
|
|
|
// frame.
|
|
|
|
|
int64_t capture_start_ntp_time_ms_;
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
// uses
|
|
|
|
|
Statistics* _engineStatisticsPtr;
|
|
|
|
|
OutputMixer* _outputMixerPtr;
|
|
|
|
|
TransmitMixer* _transmitMixerPtr;
|
|
|
|
|
ProcessThread* _moduleProcessThreadPtr;
|
|
|
|
|
AudioDeviceModule* _audioDeviceModulePtr;
|
|
|
|
|
VoiceEngineObserver* _voiceEngineObserverPtr; // owned by base
|
|
|
|
|
CriticalSectionWrapper* _callbackCritSectPtr; // owned by base
|
|
|
|
|
Transport* _transportPtr; // WebRtc socket or external transport
|
2014-05-05 18:22:21 +00:00
|
|
|
RMSLevel rms_level_;
|
2013-09-18 22:37:32 +00:00
|
|
|
scoped_ptr<AudioProcessing> rx_audioproc_; // far end AudioProcessing
|
2011-07-07 08:21:25 +00:00
|
|
|
VoERxVadCallback* _rxVadObserverPtr;
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t _oldVadDecision;
|
|
|
|
|
int32_t _sendFrameType; // Send data is voice, 1-voice, 0-otherwise
|
2011-07-07 08:21:25 +00:00
|
|
|
VoERTCPObserver* _rtcpObserverPtr;
|
|
|
|
|
// VoEBase
|
|
|
|
|
bool _externalPlayout;
|
2012-12-12 23:00:29 +00:00
|
|
|
bool _externalMixing;
|
2011-07-07 08:21:25 +00:00
|
|
|
bool _mixFileWithMicrophone;
|
|
|
|
|
bool _rtcpObserver;
|
|
|
|
|
// VoEVolumeControl
|
|
|
|
|
bool _mute;
|
|
|
|
|
float _panLeft;
|
|
|
|
|
float _panRight;
|
|
|
|
|
float _outputGain;
|
|
|
|
|
// VoEDtmf
|
|
|
|
|
bool _playOutbandDtmfEvent;
|
|
|
|
|
bool _playInbandDtmfEvent;
|
|
|
|
|
// VoeRTP_RTCP
|
2013-04-09 10:09:10 +00:00
|
|
|
uint32_t _lastLocalTimeStamp;
|
|
|
|
|
int8_t _lastPayloadType;
|
2011-07-07 08:21:25 +00:00
|
|
|
bool _includeAudioLevelIndication;
|
|
|
|
|
// VoENetwork
|
|
|
|
|
bool _rtpPacketTimedOut;
|
|
|
|
|
bool _rtpPacketTimeOutIsEnabled;
|
2013-04-09 10:09:10 +00:00
|
|
|
uint32_t _rtpTimeOutSeconds;
|
2011-07-07 08:21:25 +00:00
|
|
|
bool _connectionObserver;
|
|
|
|
|
VoEConnectionObserver* _connectionObserverPtr;
|
|
|
|
|
AudioFrame::SpeechType _outputSpeechType;
|
2014-03-24 10:38:25 +00:00
|
|
|
ViENetwork* vie_network_;
|
|
|
|
|
int video_channel_;
|
2011-07-07 08:21:25 +00:00
|
|
|
// VoEVideoSync
|
2013-04-11 20:23:35 +00:00
|
|
|
uint32_t _average_jitter_buffer_delay_us;
|
2013-05-22 20:39:43 +00:00
|
|
|
int least_required_delay_ms_;
|
2013-04-09 10:09:10 +00:00
|
|
|
uint32_t _previousTimestamp;
|
|
|
|
|
uint16_t _recPacketDelayMs;
|
2011-07-07 08:21:25 +00:00
|
|
|
// VoEAudioProcessing
|
|
|
|
|
bool _RxVadDetection;
|
|
|
|
|
bool _rxAgcIsEnabled;
|
|
|
|
|
bool _rxNsIsEnabled;
|
2013-09-06 13:40:11 +00:00
|
|
|
bool restored_packet_in_use_;
|
2014-05-28 09:52:06 +00:00
|
|
|
// RtcpBandwidthObserver
|
|
|
|
|
scoped_ptr<BitrateController> bitrate_controller_;
|
|
|
|
|
scoped_ptr<RtcpBandwidthObserver> rtcp_bandwidth_observer_;
|
|
|
|
|
scoped_ptr<BitrateObserver> send_bitrate_observer_;
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
|
|
|
|
|
2013-07-03 15:12:26 +00:00
|
|
|
} // namespace voe
|
|
|
|
|
} // namespace webrtc
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2014-05-05 18:22:21 +00:00
|
|
|
#endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_
|