2016-05-13 06:01:03 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef MODULES_VIDEO_CODING_RTP_FRAME_REFERENCE_FINDER_H_
|
|
|
|
|
#define MODULES_VIDEO_CODING_RTP_FRAME_REFERENCE_FINDER_H_
|
2016-05-13 06:01:03 -07:00
|
|
|
|
2016-05-14 19:44:11 -07:00
|
|
|
#include <memory>
|
2016-05-13 06:01:03 -07:00
|
|
|
|
2023-02-03 12:29:04 +01:00
|
|
|
#include "modules/rtp_rtcp/source/frame_object.h"
|
2016-05-13 06:01:03 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
2020-11-27 17:56:37 +01:00
|
|
|
namespace internal {
|
|
|
|
|
class RtpFrameReferenceFinderImpl;
|
|
|
|
|
} // namespace internal
|
2016-08-11 15:09:26 +02:00
|
|
|
|
2016-05-13 06:01:03 -07:00
|
|
|
class RtpFrameReferenceFinder {
|
|
|
|
|
public:
|
2021-03-23 12:00:49 +01:00
|
|
|
using ReturnVector = absl::InlinedVector<std::unique_ptr<RtpFrameObject>, 3>;
|
2020-11-27 17:56:37 +01:00
|
|
|
|
2021-05-25 15:35:57 +02:00
|
|
|
RtpFrameReferenceFinder();
|
|
|
|
|
explicit RtpFrameReferenceFinder(int64_t picture_id_offset);
|
2018-08-28 16:30:18 +02:00
|
|
|
~RtpFrameReferenceFinder();
|
2016-09-09 03:32:44 -07:00
|
|
|
|
2021-05-25 15:35:57 +02:00
|
|
|
// The RtpFrameReferenceFinder will hold onto the frame until:
|
|
|
|
|
// - the required information to determine its references has been received,
|
|
|
|
|
// in which case it (and possibly other) frames are returned, or
|
2021-08-09 13:02:57 +02:00
|
|
|
// - There are too many stashed frames (determined by `kMaxStashedFrames`),
|
2021-05-25 15:35:57 +02:00
|
|
|
// in which case it gets dropped, or
|
|
|
|
|
// - It gets cleared by ClearTo, in which case its dropped.
|
|
|
|
|
// - The frame is old, in which case it also gets dropped.
|
|
|
|
|
ReturnVector ManageFrame(std::unique_ptr<RtpFrameObject> frame);
|
2016-09-09 03:32:44 -07:00
|
|
|
|
|
|
|
|
// Notifies that padding has been received, which the reference finder
|
|
|
|
|
// might need to calculate the references of a frame.
|
2021-05-25 15:35:57 +02:00
|
|
|
ReturnVector PaddingReceived(uint16_t seq_num);
|
2016-05-13 06:01:03 -07:00
|
|
|
|
2021-08-09 13:02:57 +02:00
|
|
|
// Clear all stashed frames that include packets older than `seq_num`.
|
2016-09-09 03:32:44 -07:00
|
|
|
void ClearTo(uint16_t seq_num);
|
|
|
|
|
|
2016-05-13 06:01:03 -07:00
|
|
|
private:
|
2021-05-25 15:35:57 +02:00
|
|
|
void AddPictureIdOffset(ReturnVector& frames);
|
2018-07-03 18:09:32 +02:00
|
|
|
|
2020-11-27 17:56:37 +01:00
|
|
|
// How far frames have been cleared out of the buffer by RTP sequence number.
|
|
|
|
|
// A frame will be cleared if it contains a packet with a sequence number
|
2021-08-09 13:02:57 +02:00
|
|
|
// older than `cleared_to_seq_num_`.
|
2020-11-27 17:56:37 +01:00
|
|
|
int cleared_to_seq_num_ = -1;
|
2019-09-26 11:25:52 +02:00
|
|
|
const int64_t picture_id_offset_;
|
2020-11-27 17:56:37 +01:00
|
|
|
std::unique_ptr<internal::RtpFrameReferenceFinderImpl> impl_;
|
2016-05-13 06:01:03 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // MODULES_VIDEO_CODING_RTP_FRAME_REFERENCE_FINDER_H_
|