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..8c01b3ab11562b76e22053fed8281b2f1ee88424 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 = -1) EXCLUSIVE_LOCKS_REQUIRED(crit_); |
pbos-webrtc
2016/06/03 13:26:55
no default arguments, Google style
philipel
2016/06/03 14:17:14
Done.
|
// Find references for Vp8 frames |
void ManageFrameVp8(std::unique_ptr<RtpFrameObject> frame) |