Refactoring PayloadRouter.
- Move PayloadRouter to RtpTransportControllerInterface. - Move RetransmissionLimiter inside RtpTransportControllerSend from VideoSendStreamImpl. - Move video RTP specifics into PayloadRouter, in particular ownership of the RTP modules. - PayloadRouter now contains all video specific RTP code, and will be renamed in a follow-up to VideoRtpSender. - Introduce VideoRtpSenderInterface. Bug: webrtc:9517 Change-Id: I1c7b293fa6f9c320286c80533b3c584498034a38 Reviewed-on: https://webrtc-review.googlesource.com/88240 Commit-Queue: Stefan Holmer <stefan@webrtc.org> Reviewed-by: Sebastian Jansson <srte@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24009}
This commit is contained in:
committed by
Commit Bot
parent
e1d7b23915
commit
dbdb3a0079
@ -38,7 +38,7 @@ class VCMEncodedFrameCallback : public EncodedImageCallback {
|
||||
public:
|
||||
VCMEncodedFrameCallback(EncodedImageCallback* post_encode_callback,
|
||||
media_optimization::MediaOptimization* media_opt);
|
||||
virtual ~VCMEncodedFrameCallback();
|
||||
~VCMEncodedFrameCallback() override;
|
||||
|
||||
// Implements EncodedImageCallback.
|
||||
EncodedImageCallback::Result OnEncodedImage(
|
||||
@ -102,6 +102,8 @@ class VCMEncodedFrameCallback : public EncodedImageCallback {
|
||||
int64_t encode_start_time_ms;
|
||||
};
|
||||
struct TimingFramesLayerInfo {
|
||||
TimingFramesLayerInfo();
|
||||
~TimingFramesLayerInfo();
|
||||
size_t target_bitrate_bytes_per_sec = 0;
|
||||
std::list<EncodeStartTimeRecord> encode_start_list;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user