Index: webrtc/audio/audio_send_stream.h |
diff --git a/webrtc/audio/audio_send_stream.h b/webrtc/audio/audio_send_stream.h |
index 5ee49da91a7a1469285d1fcf675c39c53a43ac5c..c5df34dd1974cba93c39ea07de8aabbe7db20936 100644 |
--- a/webrtc/audio/audio_send_stream.h |
+++ b/webrtc/audio/audio_send_stream.h |
@@ -18,6 +18,8 @@ |
#include "webrtc/call/audio_send_stream.h" |
#include "webrtc/call/audio_state.h" |
#include "webrtc/call/bitrate_allocator.h" |
+#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
+#include "webrtc/voice_engine/transport_feedback_packet_loss_tracker.h" |
namespace webrtc { |
class CongestionController; |
@@ -33,7 +35,8 @@ class ChannelProxy; |
namespace internal { |
class AudioSendStream final : public webrtc::AudioSendStream, |
- public webrtc::BitrateAllocatorObserver { |
+ public webrtc::BitrateAllocatorObserver, |
+ public webrtc::TransportFeedbackAdapterObserver { |
public: |
AudioSendStream(const webrtc::AudioSendStream::Config& config, |
const rtc::scoped_refptr<webrtc::AudioState>& audio_state, |
@@ -62,6 +65,10 @@ class AudioSendStream final : public webrtc::AudioSendStream, |
int64_t rtt, |
int64_t probing_interval_ms) override; |
+ // From TransportFeedbackAdapterObserver |
+ void OnPacketAdded(uint32_t ssrc, uint16_t seq_num) override; |
+ void OnTransportFeedback(const rtcp::TransportFeedback& feedback) override; |
+ |
const webrtc::AudioSendStream::Config& config() const; |
void SetTransportOverhead(int transport_overhead_per_packet); |
@@ -70,6 +77,7 @@ class AudioSendStream final : public webrtc::AudioSendStream, |
bool SetupSendCodec(); |
+ const Clock* const clock_; |
rtc::ThreadChecker thread_checker_; |
rtc::TaskQueue* worker_queue_; |
const webrtc::AudioSendStream::Config config_; |
@@ -80,6 +88,10 @@ class AudioSendStream final : public webrtc::AudioSendStream, |
CongestionController* const congestion_controller_; |
std::unique_ptr<RtcpBandwidthObserver> bandwidth_observer_; |
+ rtc::CriticalSection packet_loss_tracker_cs_; |
+ TransportFeedbackPacketLossTracker packet_loss_tracker_ |
+ GUARDED_BY(&packet_loss_tracker_cs_); |
+ |
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioSendStream); |
}; |
} // namespace internal |