CONCEPT Cited by 1 source
Reference Picture Resampling¶
Reference Picture Resampling (RPR) is an AV1 codec feature that allows the encoder to change the output resolution without generating a keyframe. The encoder resamples reference frames to the new resolution, maintaining the inter-frame prediction chain across the resolution transition.
Why it matters for RTC¶
In real-time communication, the client frequently changes video resolution during a call in response to network bandwidth fluctuations. Without RPR, each resolution change requires a keyframe, which: - Causes a bitrate spike (keyframes are ~10× larger than P-frames). - Can trigger video freezes as the spike congests the network. - Elevates concepts/vbv-delay, violating the <200 ms target.
With RPR, resolution transitions happen smoothly within the prediction chain, significantly reducing bitrate spikes and improving video continuity (Source: sources/2026-06-22-meta-adopting-av1-for-real-time-communication-rtc-at-scale).
AV1 advantage¶
RPR is part of AV1's main profile — unlike H.264/AVC where resolution changes always require a keyframe. This is one of the structural advantages that makes AV1 better-suited for RTC despite its higher computational complexity.
Seen in¶
- sources/2026-06-22-meta-adopting-av1-for-real-time-communication-rtc-at-scale — RPR cited as key to reducing bitrate spikes during dynamic resolution adaptation in Meta's AV1 RTC deployment.
Related¶
- concepts/rtc-codec-rate-control — RPR improves rate-control stability
- concepts/vbv-delay — RPR helps keep VBV delay under the 200 ms target
- systems/av1-codec — the codec that provides RPR in main profile