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.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-10-04 14:28:39 +02:00
|
|
|
#ifndef AUDIO_CHANNEL_RECEIVE_H_
|
|
|
|
|
#define AUDIO_CHANNEL_RECEIVE_H_
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2018-01-17 11:18:31 +01:00
|
|
|
#include <map>
|
2016-02-17 10:04:18 -08:00
|
|
|
#include <memory>
|
2018-01-17 11:18:31 +01:00
|
|
|
#include <vector>
|
2016-02-17 10:04:18 -08:00
|
|
|
|
2018-06-15 12:28:07 +02:00
|
|
|
#include "absl/types/optional.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "api/audio/audio_mixer.h"
|
|
|
|
|
#include "api/call/audio_sink.h"
|
2017-09-21 04:02:53 -07:00
|
|
|
#include "api/call/transport.h"
|
2018-08-15 15:05:26 +02:00
|
|
|
#include "api/rtpreceiverinterface.h"
|
2018-01-17 11:18:31 +01:00
|
|
|
#include "audio/audio_level.h"
|
2018-08-08 10:49:16 +02:00
|
|
|
#include "call/syncable.h"
|
2017-09-15 13:58:09 +02:00
|
|
|
#include "common_types.h" // NOLINT(build/include)
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/audio_coding/include/audio_coding_module.h"
|
|
|
|
|
#include "modules/rtp_rtcp/include/remote_ntp_time_estimator.h"
|
|
|
|
|
#include "modules/rtp_rtcp/include/rtp_header_parser.h"
|
|
|
|
|
#include "modules/rtp_rtcp/include/rtp_rtcp.h"
|
2018-08-15 15:05:26 +02:00
|
|
|
#include "modules/rtp_rtcp/source/contributing_sources.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "rtc_base/criticalsection.h"
|
|
|
|
|
#include "rtc_base/thread_checker.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2018-01-30 09:33:03 +01:00
|
|
|
// TODO(solenberg, nisse): This file contains a few NOLINT marks, to silence
|
|
|
|
|
// warnings about use of unsigned short, and non-const reference arguments.
|
|
|
|
|
// These need cleanup, in a separate cl.
|
|
|
|
|
|
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;
|
2015-12-07 10:26:18 +01:00
|
|
|
class PacketRouter;
|
2013-08-15 23:38:54 +00:00
|
|
|
class ProcessThread;
|
2016-07-29 12:59:36 +02:00
|
|
|
class RateLimiter;
|
2013-08-15 23:38:54 +00:00
|
|
|
class ReceiveStatistics;
|
2015-09-09 00:09:43 -07:00
|
|
|
class RtcEventLog;
|
2017-02-21 06:28:10 -08:00
|
|
|
class RtpPacketReceived;
|
2013-08-15 23:38:54 +00:00
|
|
|
class RtpRtcp;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2018-10-04 14:28:39 +02:00
|
|
|
struct CallReceiveStatistics {
|
2018-01-30 09:33:03 +01:00
|
|
|
unsigned short fractionLost; // NOLINT
|
2017-09-18 07:05:30 -07:00
|
|
|
unsigned int cumulativeLost;
|
|
|
|
|
unsigned int extendedMax;
|
|
|
|
|
unsigned int jitterSamples;
|
|
|
|
|
int64_t rttMs;
|
|
|
|
|
size_t bytesReceived;
|
|
|
|
|
int packetsReceived;
|
|
|
|
|
// The capture ntp time (in local timebase) of the first played out audio
|
|
|
|
|
// frame.
|
|
|
|
|
int64_t capture_start_ntp_time_ms_;
|
|
|
|
|
};
|
|
|
|
|
|
2013-09-23 23:02:24 +00:00
|
|
|
namespace voe {
|
|
|
|
|
|
2018-10-04 14:28:39 +02:00
|
|
|
class ChannelSend;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
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.
|
2018-10-04 14:28:39 +02:00
|
|
|
class ChannelReceiveState {
|
2014-03-18 10:32:33 +00:00
|
|
|
public:
|
2016-01-28 05:22:45 -08:00
|
|
|
struct State {
|
The VoE functionality to apply receive-side processing to VoE channels is unused. I'm removing it so we can avoid instantiating a full APM per channel (and thus also for webrtc::AudioSendStream and webrtc::AudioReceiveStream), and then never use it.
The following APIs are removed from VoEAudioProcessing:
virtual int SetRxNsStatus(int channel,
bool enable,
NsModes mode = kNsUnchanged) = 0;
virtual int GetRxNsStatus(int channel, bool& enabled, NsModes& mode) = 0;
virtual int SetRxAgcStatus(int channel,
bool enable,
AgcModes mode = kAgcUnchanged) = 0;
virtual int GetRxAgcStatus(int channel, bool& enabled, AgcModes& mode) = 0;
virtual int SetRxAgcConfig(int channel, AgcConfig config) = 0;
virtual int GetRxAgcConfig(int channel, AgcConfig& config) = 0;
virtual int RegisterRxVadObserver(int channel,
VoERxVadCallback& observer) = 0;
virtual int DeRegisterRxVadObserver(int channel) = 0;
BUG=webrtc:4690
Review-Url: https://codereview.webrtc.org/2295113002
Cr-Commit-Position: refs/heads/master@{#14227}
2016-09-15 04:29:13 -07:00
|
|
|
bool playing = false;
|
2016-01-28 05:22:45 -08:00
|
|
|
};
|
|
|
|
|
|
2018-10-04 14:28:39 +02:00
|
|
|
ChannelReceiveState() {}
|
|
|
|
|
virtual ~ChannelReceiveState() {}
|
2016-01-28 05:22:45 -08:00
|
|
|
|
|
|
|
|
void Reset() {
|
|
|
|
|
rtc::CritScope lock(&lock_);
|
|
|
|
|
state_ = State();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
State Get() const {
|
|
|
|
|
rtc::CritScope lock(&lock_);
|
|
|
|
|
return state_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetPlaying(bool enable) {
|
|
|
|
|
rtc::CritScope lock(&lock_);
|
|
|
|
|
state_.playing = enable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
2016-02-01 09:00:51 -08:00
|
|
|
rtc::CriticalSection lock_;
|
2016-01-28 05:22:45 -08:00
|
|
|
State state_;
|
2014-03-18 10:32:33 +00:00
|
|
|
};
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2018-10-04 14:28:39 +02:00
|
|
|
class ChannelReceive : public RtpData, public Transport {
|
2016-01-28 05:22:45 -08:00
|
|
|
public:
|
2018-01-11 13:52:30 +01:00
|
|
|
// Used for receive streams.
|
2018-10-04 14:28:39 +02:00
|
|
|
ChannelReceive(ProcessThread* module_process_thread,
|
|
|
|
|
AudioDeviceModule* audio_device_module,
|
|
|
|
|
RtcpRttStats* rtcp_rtt_stats,
|
|
|
|
|
RtcEventLog* rtc_event_log,
|
|
|
|
|
uint32_t remote_ssrc,
|
|
|
|
|
size_t jitter_buffer_max_packets,
|
|
|
|
|
bool jitter_buffer_fast_playout,
|
|
|
|
|
rtc::scoped_refptr<AudioDecoderFactory> decoder_factory,
|
|
|
|
|
absl::optional<AudioCodecPairId> codec_pair_id);
|
|
|
|
|
virtual ~ChannelReceive();
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2018-01-11 13:52:30 +01:00
|
|
|
void SetSink(AudioSinkInterface* sink);
|
2016-06-13 07:34:51 -07:00
|
|
|
|
2017-03-27 07:15:49 -07:00
|
|
|
void SetReceiveCodecs(const std::map<int, SdpAudioFormat>& codecs);
|
|
|
|
|
|
2016-01-28 05:22:45 -08:00
|
|
|
// API methods
|
|
|
|
|
|
|
|
|
|
// VoEBase
|
|
|
|
|
int32_t StartPlayout();
|
|
|
|
|
int32_t StopPlayout();
|
|
|
|
|
|
2017-09-18 05:22:39 -07:00
|
|
|
// Codecs
|
2018-01-30 09:33:03 +01:00
|
|
|
int32_t GetRecCodec(CodecInst& codec); // NOLINT
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2017-09-21 04:02:53 -07:00
|
|
|
// Network
|
2017-09-29 06:00:28 -07:00
|
|
|
void RegisterTransport(Transport* transport);
|
2017-02-21 06:28:10 -08:00
|
|
|
// TODO(nisse, solenberg): Delete when VoENetwork is deleted.
|
2016-04-29 00:57:13 -07:00
|
|
|
int32_t ReceivedRTCPPacket(const uint8_t* data, size_t length);
|
2017-02-21 06:28:10 -08:00
|
|
|
void OnRtpPacket(const RtpPacketReceived& packet);
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2017-03-08 01:52:20 -08:00
|
|
|
// Muting, Volume and Level.
|
|
|
|
|
void SetChannelOutputVolumeScaling(float scaling);
|
|
|
|
|
int GetSpeechOutputLevelFullRange() const;
|
2017-07-14 12:17:49 -07:00
|
|
|
// See description of "totalAudioEnergy" in the WebRTC stats spec:
|
|
|
|
|
// https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-totalaudioenergy
|
|
|
|
|
double GetTotalOutputEnergy() const;
|
|
|
|
|
double GetTotalOutputDuration() const;
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2017-03-13 02:36:19 -07:00
|
|
|
// Stats.
|
2018-01-30 09:33:03 +01:00
|
|
|
int GetNetworkStatistics(NetworkStatistics& stats); // NOLINT
|
2016-01-28 05:22:45 -08:00
|
|
|
void GetDecodingCallStatistics(AudioDecodingCallStats* stats) const;
|
|
|
|
|
|
2017-03-13 02:36:19 -07:00
|
|
|
// Audio+Video Sync.
|
2016-01-28 05:22:45 -08:00
|
|
|
uint32_t GetDelayEstimate() const;
|
|
|
|
|
int SetMinimumPlayoutDelay(int delayMs);
|
2018-01-30 09:33:03 +01:00
|
|
|
int GetPlayoutTimestamp(unsigned int& timestamp); // NOLINT
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2018-08-08 10:49:16 +02:00
|
|
|
// Produces the transport-related timestamps; current_delay_ms is left unset.
|
|
|
|
|
absl::optional<Syncable::Info> GetSyncInfo() const;
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2017-09-18 07:05:30 -07:00
|
|
|
// RTP+RTCP
|
2016-01-28 05:22:45 -08:00
|
|
|
int SetLocalSSRC(unsigned int ssrc);
|
2018-05-25 13:41:10 +02:00
|
|
|
|
2017-02-07 07:14:08 -08:00
|
|
|
void RegisterReceiverCongestionControlObjects(PacketRouter* packet_router);
|
2017-03-31 05:44:52 -07:00
|
|
|
void ResetReceiverCongestionControlObjects();
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2018-10-04 14:28:39 +02:00
|
|
|
int GetRTPStatistics(CallReceiveStatistics& stats); // NOLINT
|
|
|
|
|
void SetNACKStatus(bool enable, int maxNumberOfPackets);
|
2016-01-28 05:22:45 -08:00
|
|
|
|
|
|
|
|
// From RtpData in the RTP/RTCP module
|
|
|
|
|
int32_t OnReceivedPayloadData(const uint8_t* payloadData,
|
|
|
|
|
size_t payloadSize,
|
|
|
|
|
const WebRtcRTPHeader* rtpHeader) override;
|
|
|
|
|
|
|
|
|
|
// From Transport (called by the RTP/RTCP module)
|
|
|
|
|
bool SendRtp(const uint8_t* data,
|
|
|
|
|
size_t len,
|
|
|
|
|
const PacketOptions& packet_options) override;
|
|
|
|
|
bool SendRtcp(const uint8_t* data, size_t len) override;
|
|
|
|
|
|
2016-10-20 06:32:39 -07:00
|
|
|
// From AudioMixer::Source.
|
2016-10-20 14:24:39 -07:00
|
|
|
AudioMixer::Source::AudioFrameInfo GetAudioFrameWithInfo(
|
|
|
|
|
int sample_rate_hz,
|
|
|
|
|
AudioFrame* audio_frame);
|
2016-10-20 06:32:39 -07:00
|
|
|
|
2017-09-22 06:48:10 -07:00
|
|
|
int PreferredSampleRate() const;
|
|
|
|
|
|
2016-01-28 05:22:45 -08:00
|
|
|
// Associate to a send channel.
|
|
|
|
|
// Used for obtaining RTT for a receive-only channel.
|
2018-10-04 14:28:39 +02:00
|
|
|
void SetAssociatedSendChannel(ChannelSend* channel);
|
2017-03-23 15:29:50 -07:00
|
|
|
|
2018-08-15 15:05:26 +02:00
|
|
|
std::vector<RtpSource> GetSources() const;
|
Reland of Implemented the GetSources() in native code. (patchset #1 id:1 of https://codereview.webrtc.org/2809613002/ )
Reason for revert:
Re-land, reverting did not fix bug.
https://bugs.chromium.org/p/webrtc/issues/detail?id=7465
Original issue's description:
> Revert of Implemented the GetSources() in native code. (patchset #11 id:510001 of https://codereview.webrtc.org/2770233003/ )
>
> Reason for revert:
> Suspected of WebRtcApprtcBrowserTest.MANUAL_WorksOnApprtc breakage, see
>
> https://bugs.chromium.org/p/webrtc/issues/detail?id=7465
>
> Original issue's description:
> > Added the GetSources() to the RtpReceiverInterface and implemented
> > it for the AudioRtpReceiver.
> >
> > This method returns a vector of RtpSource(both CSRC source and SSRC
> > source) which contains the ID of a source, the timestamp, the source
> > type (SSRC or CSRC) and the audio level.
> >
> > The RtpSource objects are buffered and maintained by the
> > RtpReceiver in webrtc/modules/rtp_rtcp/. When the method is called,
> > the info of the contributing source will be pulled along the object
> > chain:
> > AudioRtpReceiver -> VoiceChannel -> WebRtcVoiceMediaChannel ->
> > AudioReceiveStream -> voe::Channel -> RtpRtcp module
> >
> > Spec:https://w3c.github.io/webrtc-pc/archives/20151006/webrtc.html#widl-RTCRtpReceiver-getContributingSources-sequence-RTCRtpContributingSource
> >
> > BUG=chromium:703122
> > TBR=stefan@webrtc.org, danilchap@webrtc.org
> >
> > Review-Url: https://codereview.webrtc.org/2770233003
> > Cr-Commit-Position: refs/heads/master@{#17591}
> > Committed: https://chromium.googlesource.com/external/webrtc/+/292084c3765d9f3ee406ca2ec86eae206b540053
>
> TBR=deadbeef@webrtc.org,solenberg@webrtc.org,hbos@webrtc.org,philipel@webrtc.org,stefan@webrtc.org,danilchap@webrtc.org,zhihuang@webrtc.org
> # Not skipping CQ checks because original CL landed more than 1 days ago.
> BUG=chromium:703122
>
> Review-Url: https://codereview.webrtc.org/2809613002
> Cr-Commit-Position: refs/heads/master@{#17616}
> Committed: https://chromium.googlesource.com/external/webrtc/+/fbcc5cb3869d1370008e40f24fc03ac8fb69c675
TBR=deadbeef@webrtc.org,solenberg@webrtc.org,philipel@webrtc.org,stefan@webrtc.org,danilchap@webrtc.org,zhihuang@webrtc.org,olka@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=chromium:703122
Review-Url: https://codereview.webrtc.org/2810623003
Cr-Commit-Position: refs/heads/master@{#17621}
2017-04-10 07:39:05 -07:00
|
|
|
|
2016-01-28 05:22:45 -08:00
|
|
|
private:
|
2018-01-11 13:52:30 +01:00
|
|
|
void Init();
|
|
|
|
|
void Terminate();
|
|
|
|
|
|
2018-01-30 09:33:03 +01:00
|
|
|
int GetRemoteSSRC(unsigned int& ssrc); // NOLINT
|
2017-05-29 08:16:37 -07:00
|
|
|
|
2016-01-28 05:22:45 -08:00
|
|
|
bool ReceivePacket(const uint8_t* packet,
|
|
|
|
|
size_t packet_length,
|
2017-10-05 08:39:15 +02:00
|
|
|
const RTPHeader& header);
|
2016-01-28 05:22:45 -08:00
|
|
|
int ResendPackets(const uint16_t* sequence_numbers, int length);
|
|
|
|
|
void UpdatePlayoutTimestamp(bool rtcp);
|
|
|
|
|
|
2016-10-12 11:04:10 -07:00
|
|
|
int GetRtpTimestampRateHz() const;
|
2018-10-04 14:28:39 +02:00
|
|
|
int64_t GetRTT() const;
|
2017-03-31 05:43:36 -07:00
|
|
|
|
2016-02-01 09:00:51 -08:00
|
|
|
rtc::CriticalSection _callbackCritSect;
|
|
|
|
|
rtc::CriticalSection volume_settings_critsect_;
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2018-10-04 14:28:39 +02:00
|
|
|
ChannelReceiveState channel_state_;
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2018-08-14 09:43:34 +02:00
|
|
|
RtcEventLog* const event_log_;
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2018-08-16 13:47:49 +02:00
|
|
|
// Indexed by payload type.
|
|
|
|
|
std::map<uint8_t, int> payload_type_frequencies_;
|
|
|
|
|
|
2016-02-17 10:04:18 -08:00
|
|
|
std::unique_ptr<ReceiveStatistics> rtp_receive_statistics_;
|
|
|
|
|
std::unique_ptr<RtpRtcp> _rtpRtcpModule;
|
2018-08-15 15:05:26 +02:00
|
|
|
const uint32_t remote_ssrc_;
|
|
|
|
|
|
|
|
|
|
// Info for GetSources and GetSyncInfo is updated on network or worker thread,
|
|
|
|
|
// queried on the worker thread.
|
|
|
|
|
rtc::CriticalSection rtp_sources_lock_;
|
|
|
|
|
ContributingSources contributing_sources_ RTC_GUARDED_BY(&rtp_sources_lock_);
|
|
|
|
|
absl::optional<uint32_t> last_received_rtp_timestamp_
|
|
|
|
|
RTC_GUARDED_BY(&rtp_sources_lock_);
|
|
|
|
|
absl::optional<int64_t> last_received_rtp_system_time_ms_
|
|
|
|
|
RTC_GUARDED_BY(&rtp_sources_lock_);
|
|
|
|
|
absl::optional<uint8_t> last_received_rtp_audio_level_
|
|
|
|
|
RTC_GUARDED_BY(&rtp_sources_lock_);
|
|
|
|
|
|
2016-02-17 10:04:18 -08:00
|
|
|
std::unique_ptr<AudioCodingModule> audio_coding_;
|
2018-01-11 13:52:30 +01:00
|
|
|
AudioSinkInterface* audio_sink_ = nullptr;
|
2016-01-28 05:22:45 -08:00
|
|
|
AudioLevel _outputAudioLevel;
|
|
|
|
|
|
2017-09-09 04:17:22 -07:00
|
|
|
RemoteNtpTimeEstimator ntp_estimator_ RTC_GUARDED_BY(ts_stats_lock_);
|
2016-01-28 05:22:45 -08:00
|
|
|
|
|
|
|
|
// Timestamp of the audio pulled from NetEq.
|
2018-06-15 12:28:07 +02:00
|
|
|
absl::optional<uint32_t> jitter_buffer_playout_timestamp_;
|
2017-03-11 08:10:43 -08:00
|
|
|
|
|
|
|
|
rtc::CriticalSection video_sync_lock_;
|
2017-09-09 04:17:22 -07:00
|
|
|
uint32_t playout_timestamp_rtp_ RTC_GUARDED_BY(video_sync_lock_);
|
|
|
|
|
uint32_t playout_delay_ms_ RTC_GUARDED_BY(video_sync_lock_);
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2016-02-01 09:00:51 -08:00
|
|
|
rtc::CriticalSection ts_stats_lock_;
|
2016-01-28 05:22:45 -08:00
|
|
|
|
2016-02-17 10:04:18 -08:00
|
|
|
std::unique_ptr<rtc::TimestampWrapAroundHandler> rtp_ts_wraparound_handler_;
|
2016-01-28 05:22:45 -08:00
|
|
|
// The rtp timestamp of the first played out audio frame.
|
|
|
|
|
int64_t capture_start_rtp_time_stamp_;
|
|
|
|
|
// The capture ntp time (in local timebase) of the first played out audio
|
|
|
|
|
// frame.
|
2017-09-09 04:17:22 -07:00
|
|
|
int64_t capture_start_ntp_time_ms_ RTC_GUARDED_BY(ts_stats_lock_);
|
2016-01-28 05:22:45 -08:00
|
|
|
|
|
|
|
|
// uses
|
|
|
|
|
ProcessThread* _moduleProcessThreadPtr;
|
|
|
|
|
AudioDeviceModule* _audioDeviceModulePtr;
|
|
|
|
|
Transport* _transportPtr; // WebRtc socket or external transport
|
2017-09-09 04:17:22 -07:00
|
|
|
float _outputGain RTC_GUARDED_BY(volume_settings_critsect_);
|
2018-10-04 14:28:39 +02:00
|
|
|
|
2016-01-28 05:22:45 -08:00
|
|
|
// An associated send channel.
|
2016-02-01 09:00:51 -08:00
|
|
|
rtc::CriticalSection assoc_send_channel_lock_;
|
2018-10-04 14:28:39 +02:00
|
|
|
ChannelSend* associated_send_channel_
|
|
|
|
|
RTC_GUARDED_BY(assoc_send_channel_lock_);
|
2016-01-28 05:22:45 -08:00
|
|
|
|
|
|
|
|
PacketRouter* packet_router_ = nullptr;
|
2016-06-13 07:34:51 -07:00
|
|
|
|
2017-03-21 02:31:51 -07:00
|
|
|
rtc::ThreadChecker construction_thread_;
|
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
|
|
|
|
2018-10-04 14:28:39 +02:00
|
|
|
#endif // AUDIO_CHANNEL_RECEIVE_H_
|