Add new_request flag to SendFullIntraRequest
This allows one to request the same sequence number again in the case of resending an FIR to the a sender before the sender has time to send a key-frame. Bug: webrtc:11171 Change-Id: Idd8e8120ccbcc194cefb8d0cf3f7cc64e7f76aa5 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/161236 Commit-Queue: Evan Shrubsole <eshr@google.com> Reviewed-by: Erik Språng <sprang@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30006}
This commit is contained in:
committed by
Commit Bot
parent
17f82cfc68
commit
577b88dae7
@ -61,7 +61,10 @@ class RtcpTransceiverImpl {
|
||||
void SendNack(uint32_t ssrc, std::vector<uint16_t> sequence_numbers);
|
||||
|
||||
void SendPictureLossIndication(uint32_t ssrc);
|
||||
void SendFullIntraRequest(rtc::ArrayView<const uint32_t> ssrcs);
|
||||
// If new_request is true then requested sequence no. will increase for each
|
||||
// requested ssrc.
|
||||
void SendFullIntraRequest(rtc::ArrayView<const uint32_t> ssrcs,
|
||||
bool new_request);
|
||||
|
||||
// SendCombinedRtcpPacket ignores rtcp mode and does not send a compound
|
||||
// message. https://tools.ietf.org/html/rfc4585#section-3.1
|
||||
|
||||
Reference in New Issue
Block a user