| Index: webrtc/modules/video_coding/rtp_frame_reference_finder.h
|
| diff --git a/webrtc/modules/video_coding/rtp_frame_reference_finder.h b/webrtc/modules/video_coding/rtp_frame_reference_finder.h
|
| index 7289b803bd089575d6169d96a526bd1d02348ad6..5fd67ab2a4a69216db043cb296bbab902e2774bf 100644
|
| --- a/webrtc/modules/video_coding/rtp_frame_reference_finder.h
|
| +++ b/webrtc/modules/video_coding/rtp_frame_reference_finder.h
|
| @@ -48,9 +48,11 @@ class RtpFrameReferenceFinder {
|
| // all information needed.
|
| void RetryStashedFrames() EXCLUSIVE_LOCKS_REQUIRED(crit_);
|
|
|
| - // Find references for generic frames.
|
| - void ManageFrameGeneric(std::unique_ptr<RtpFrameObject> frame)
|
| - EXCLUSIVE_LOCKS_REQUIRED(crit_);
|
| + // Find references for generic frames. If |picture_id| is unspecified
|
| + // then packet sequence numbers will be used to determine the references
|
| + // of the frames.
|
| + void ManageFrameGeneric(std::unique_ptr<RtpFrameObject> frame,
|
| + int picture_id) EXCLUSIVE_LOCKS_REQUIRED(crit_);
|
|
|
| // Find references for Vp8 frames
|
| void ManageFrameVp8(std::unique_ptr<RtpFrameObject> frame)
|
|
|