mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 22:00:47 +01:00

Bug: webrtc:7484 Change-Id: I41176a66b8399f6c8cf568630f2808eb95cf6247 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/262767 Auto-Submit: Tomas Gunnarsson <tommi@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Reviewed-by: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/main@{#36917}
98 lines
3.4 KiB
C++
98 lines
3.4 KiB
C++
/*
|
|
* Copyright (c) 2016 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 CALL_FLEXFEC_RECEIVE_STREAM_IMPL_H_
|
|
#define CALL_FLEXFEC_RECEIVE_STREAM_IMPL_H_
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "call/flexfec_receive_stream.h"
|
|
#include "call/rtp_packet_sink_interface.h"
|
|
#include "modules/rtp_rtcp/source/rtp_rtcp_impl2.h"
|
|
#include "rtc_base/system/no_unique_address.h"
|
|
#include "system_wrappers/include/clock.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class FlexfecReceiver;
|
|
class ReceiveStatistics;
|
|
class RecoveredPacketReceiver;
|
|
class RtcpRttStats;
|
|
class RtpPacketReceived;
|
|
class RtpRtcp;
|
|
class RtpStreamReceiverControllerInterface;
|
|
class RtpStreamReceiverInterface;
|
|
|
|
class FlexfecReceiveStreamImpl : public FlexfecReceiveStream {
|
|
public:
|
|
FlexfecReceiveStreamImpl(Clock* clock,
|
|
Config config,
|
|
RecoveredPacketReceiver* recovered_packet_receiver,
|
|
RtcpRttStats* rtt_stats);
|
|
// Destruction happens on the worker thread. Prior to destruction the caller
|
|
// must ensure that a registration with the transport has been cleared. See
|
|
// `RegisterWithTransport` for details.
|
|
// TODO(tommi): As a further improvement to this, performing the full
|
|
// destruction on the network thread could be made the default.
|
|
~FlexfecReceiveStreamImpl() override;
|
|
|
|
// Called on the network thread to register/unregister with the network
|
|
// transport.
|
|
void RegisterWithTransport(
|
|
RtpStreamReceiverControllerInterface* receiver_controller);
|
|
// If registration has previously been done (via `RegisterWithTransport`) then
|
|
// `UnregisterFromTransport` must be called prior to destruction, on the
|
|
// network thread.
|
|
void UnregisterFromTransport();
|
|
|
|
// RtpPacketSinkInterface.
|
|
void OnRtpPacket(const RtpPacketReceived& packet) override;
|
|
|
|
Stats GetStats() const override;
|
|
|
|
// ReceiveStreamInterface impl.
|
|
void SetRtpExtensions(std::vector<RtpExtension> extensions) override;
|
|
RtpHeaderExtensionMap GetRtpExtensionMap() const override;
|
|
|
|
// Updates the `rtp_video_stream_receiver_`'s `local_ssrc` when the default
|
|
// sender has been created, changed or removed.
|
|
void SetLocalSsrc(uint32_t local_ssrc);
|
|
|
|
uint32_t remote_ssrc() const { return config_.rtp.remote_ssrc; }
|
|
bool transport_cc() const override {
|
|
RTC_DCHECK_RUN_ON(&packet_sequence_checker_);
|
|
return config_.rtp.transport_cc;
|
|
}
|
|
|
|
private:
|
|
RTC_NO_UNIQUE_ADDRESS SequenceChecker packet_sequence_checker_;
|
|
|
|
RtpHeaderExtensionMap extension_map_;
|
|
|
|
// Config. Mostly const, local_ssrc may change, which is an exception
|
|
// case that's specifically handled in `SetLocalSsrc`, which must be
|
|
// called on the `packet_sequence_checker` thread.
|
|
const Config config_;
|
|
|
|
// Erasure code interfacing.
|
|
const std::unique_ptr<FlexfecReceiver> receiver_;
|
|
|
|
// RTCP reporting.
|
|
const std::unique_ptr<ReceiveStatistics> rtp_receive_statistics_;
|
|
const std::unique_ptr<ModuleRtpRtcpImpl2> rtp_rtcp_;
|
|
|
|
std::unique_ptr<RtpStreamReceiverInterface> rtp_stream_receiver_
|
|
RTC_GUARDED_BY(packet_sequence_checker_);
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // CALL_FLEXFEC_RECEIVE_STREAM_IMPL_H_
|