Skip to main content

rtc_rtcp/payload_feedbacks/
mod.rs

1/// FIR: asks a sender for a full intra frame, used when a receiver joins or resyncs.
2pub mod full_intra_request;
3/// PLI: tells a sender the receiver lost picture and needs a keyframe.
4pub mod picture_loss_indication;
5/// REMB: the receiver's estimate of the bitrate the path can carry.
6pub mod receiver_estimated_maximum_bitrate;
7/// SLI: reports individual lost slices, for finer-grained repair than PLI.
8pub mod slice_loss_indication;