philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef MODULES_VIDEO_CODING_RTP_FRAME_REFERENCE_FINDER_H_ |
| 12 | #define MODULES_VIDEO_CODING_RTP_FRAME_REFERENCE_FINDER_H_ |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 13 | |
| 14 | #include <array> |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 15 | #include <deque> |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 16 | #include <map> |
kwiberg | fd8be34 | 2016-05-14 19:44:11 -0700 | [diff] [blame] | 17 | #include <memory> |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 18 | #include <set> |
| 19 | #include <utility> |
| 20 | |
Niels Möller | 834a554 | 2019-09-23 10:31:16 +0200 | [diff] [blame] | 21 | #include "modules/include/module_common_types_public.h" |
philipel | 2837edc | 2018-10-02 13:55:47 +0200 | [diff] [blame] | 22 | #include "modules/rtp_rtcp/source/rtp_generic_frame_descriptor.h" |
Niels Möller | 834a554 | 2019-09-23 10:31:16 +0200 | [diff] [blame] | 23 | #include "modules/video_coding/codecs/vp9/include/vp9_globals.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 24 | #include "rtc_base/critical_section.h" |
Bjorn Terelius | a194e58 | 2017-10-25 13:07:09 +0200 | [diff] [blame] | 25 | #include "rtc_base/numerics/sequence_number_util.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 26 | #include "rtc_base/thread_annotations.h" |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 27 | |
| 28 | namespace webrtc { |
| 29 | namespace video_coding { |
| 30 | |
philipel | e7c891f | 2018-02-22 14:35:06 +0100 | [diff] [blame] | 31 | class EncodedFrame; |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 32 | class RtpFrameObject; |
philipel | 17deeb4 | 2016-08-11 15:09:26 +0200 | [diff] [blame] | 33 | |
| 34 | // A complete frame is a frame which has received all its packets and all its |
| 35 | // references are known. |
| 36 | class OnCompleteFrameCallback { |
| 37 | public: |
| 38 | virtual ~OnCompleteFrameCallback() {} |
philipel | e7c891f | 2018-02-22 14:35:06 +0100 | [diff] [blame] | 39 | virtual void OnCompleteFrame(std::unique_ptr<EncodedFrame> frame) = 0; |
philipel | 17deeb4 | 2016-08-11 15:09:26 +0200 | [diff] [blame] | 40 | }; |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 41 | |
| 42 | class RtpFrameReferenceFinder { |
| 43 | public: |
| 44 | explicit RtpFrameReferenceFinder(OnCompleteFrameCallback* frame_callback); |
Mirko Bonadei | 8fdcac3 | 2018-08-28 16:30:18 +0200 | [diff] [blame] | 45 | ~RtpFrameReferenceFinder(); |
philipel | 463d301 | 2016-09-09 03:32:44 -0700 | [diff] [blame] | 46 | |
| 47 | // Manage this frame until: |
| 48 | // - We have all information needed to determine its references, after |
| 49 | // which |frame_callback_| is called with the completed frame, or |
philipel | afcf7f5 | 2017-04-26 08:17:35 -0700 | [diff] [blame] | 50 | // - We have too many stashed frames (determined by |kMaxStashedFrames|) |
philipel | 463d301 | 2016-09-09 03:32:44 -0700 | [diff] [blame] | 51 | // so we drop this frame, or |
| 52 | // - It gets cleared by ClearTo, which also means we drop it. |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 53 | void ManageFrame(std::unique_ptr<RtpFrameObject> frame); |
philipel | 463d301 | 2016-09-09 03:32:44 -0700 | [diff] [blame] | 54 | |
| 55 | // Notifies that padding has been received, which the reference finder |
| 56 | // might need to calculate the references of a frame. |
philipel | 9b2ce6b | 2016-07-05 05:04:46 -0700 | [diff] [blame] | 57 | void PaddingReceived(uint16_t seq_num); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 58 | |
philipel | 463d301 | 2016-09-09 03:32:44 -0700 | [diff] [blame] | 59 | // Clear all stashed frames that include packets older than |seq_num|. |
| 60 | void ClearTo(uint16_t seq_num); |
| 61 | |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 62 | private: |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 63 | static const uint16_t kPicIdLength = 1 << 15; |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 64 | static const uint8_t kMaxTemporalLayers = 5; |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 65 | static const int kMaxLayerInfo = 50; |
Sergey Silkin | 52233a3 | 2018-07-31 14:30:54 +0200 | [diff] [blame] | 66 | static const int kMaxStashedFrames = 100; |
philipel | fd5a20f | 2016-11-15 00:57:57 -0800 | [diff] [blame] | 67 | static const int kMaxNotYetReceivedFrames = 100; |
| 68 | static const int kMaxGofSaved = 50; |
philipel | 9b2ce6b | 2016-07-05 05:04:46 -0700 | [diff] [blame] | 69 | static const int kMaxPaddingAge = 100; |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 70 | |
philipel | afcf7f5 | 2017-04-26 08:17:35 -0700 | [diff] [blame] | 71 | enum FrameDecision { kStash, kHandOff, kDrop }; |
philipel | c9b27d5 | 2016-07-15 06:50:27 -0700 | [diff] [blame] | 72 | |
| 73 | struct GofInfo { |
| 74 | GofInfo(GofInfoVP9* gof, uint16_t last_picture_id) |
| 75 | : gof(gof), last_picture_id(last_picture_id) {} |
| 76 | GofInfoVP9* gof; |
| 77 | uint16_t last_picture_id; |
| 78 | }; |
| 79 | |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 80 | rtc::CriticalSection crit_; |
| 81 | |
philipel | 9b2ce6b | 2016-07-05 05:04:46 -0700 | [diff] [blame] | 82 | // Find the relevant group of pictures and update its "last-picture-id-with |
| 83 | // padding" sequence number. |
| 84 | void UpdateLastPictureIdWithPadding(uint16_t seq_num) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 85 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | 9b2ce6b | 2016-07-05 05:04:46 -0700 | [diff] [blame] | 86 | |
philipel | afcf7f5 | 2017-04-26 08:17:35 -0700 | [diff] [blame] | 87 | // Retry stashed frames until no more complete frames are found. |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 88 | void RetryStashedFrames() RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 89 | |
philipel | afcf7f5 | 2017-04-26 08:17:35 -0700 | [diff] [blame] | 90 | FrameDecision ManageFrameInternal(RtpFrameObject* frame) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 91 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | afcf7f5 | 2017-04-26 08:17:35 -0700 | [diff] [blame] | 92 | |
philipel | 2837edc | 2018-10-02 13:55:47 +0200 | [diff] [blame] | 93 | FrameDecision ManageFrameGeneric(RtpFrameObject* frame, |
| 94 | const RtpGenericFrameDescriptor& descriptor) |
philipel | dabfcae | 2018-09-25 12:54:37 +0200 | [diff] [blame] | 95 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
| 96 | |
| 97 | // Find references for frames with no or very limited information in the |
| 98 | // descriptor. If |picture_id| is unspecified then packet sequence numbers |
| 99 | // will be used to determine the references of the frames. |
| 100 | FrameDecision ManageFramePidOrSeqNum(RtpFrameObject* frame, int picture_id) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 101 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 102 | |
philipel | afcf7f5 | 2017-04-26 08:17:35 -0700 | [diff] [blame] | 103 | // Find references for Vp8 frames |
| 104 | FrameDecision ManageFrameVp8(RtpFrameObject* frame) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 105 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | afcf7f5 | 2017-04-26 08:17:35 -0700 | [diff] [blame] | 106 | |
| 107 | // Updates necessary layer info state used to determine frame references for |
| 108 | // Vp8. |
philipel | 1610f94 | 2017-12-12 13:58:31 +0100 | [diff] [blame] | 109 | void UpdateLayerInfoVp8(RtpFrameObject* frame, |
philipel | 57ec685 | 2018-07-03 18:09:32 +0200 | [diff] [blame] | 110 | int64_t unwrapped_tl0, |
| 111 | uint8_t temporal_idx) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 112 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 113 | |
| 114 | // Find references for Vp9 frames |
philipel | afcf7f5 | 2017-04-26 08:17:35 -0700 | [diff] [blame] | 115 | FrameDecision ManageFrameVp9(RtpFrameObject* frame) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 116 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 117 | |
| 118 | // Check if we are missing a frame necessary to determine the references |
| 119 | // for this frame. |
philipel | c9b27d5 | 2016-07-15 06:50:27 -0700 | [diff] [blame] | 120 | bool MissingRequiredFrameVp9(uint16_t picture_id, const GofInfo& info) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 121 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 122 | |
| 123 | // Updates which frames that have been received. If there is a gap, |
| 124 | // missing frames will be added to |missing_frames_for_layer_| or |
| 125 | // if this is an already missing frame then it will be removed. |
philipel | c9b27d5 | 2016-07-15 06:50:27 -0700 | [diff] [blame] | 126 | void FrameReceivedVp9(uint16_t picture_id, GofInfo* info) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 127 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 128 | |
| 129 | // Check if there is a frame with the up-switch flag set in the interval |
| 130 | // (|pid_ref|, |picture_id|) with temporal layer smaller than |temporal_idx|. |
| 131 | bool UpSwitchInIntervalVp9(uint16_t picture_id, |
| 132 | uint8_t temporal_idx, |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 133 | uint16_t pid_ref) |
| 134 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 135 | |
philipel | afcf7f5 | 2017-04-26 08:17:35 -0700 | [diff] [blame] | 136 | // Unwrap |frame|s picture id and its references to 16 bits. |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 137 | void UnwrapPictureIds(RtpFrameObject* frame) |
| 138 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 139 | |
Johnny Lee | bc7f41b | 2019-05-01 14:41:32 -0400 | [diff] [blame] | 140 | // Find references for H264 frames |
| 141 | FrameDecision ManageFrameH264(RtpFrameObject* frame) |
| 142 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
| 143 | |
| 144 | // Update "last-picture-id-with-padding" sequence number for H264. |
Jonas Olsson | a4d8737 | 2019-07-05 19:08:33 +0200 | [diff] [blame] | 145 | void UpdateLastPictureIdWithPaddingH264() RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
Johnny Lee | bc7f41b | 2019-05-01 14:41:32 -0400 | [diff] [blame] | 146 | |
| 147 | // Update H264 layer info state used to determine frame references. |
| 148 | void UpdateLayerInfoH264(RtpFrameObject* frame, |
| 149 | int64_t unwrapped_tl0, |
| 150 | uint8_t temporal_idx) |
| 151 | RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
| 152 | |
| 153 | // Update H264 state for decodeable frames. |
| 154 | void UpdateDataH264(RtpFrameObject* frame, |
| 155 | int64_t unwrapped_tl0, |
Jonas Olsson | a4d8737 | 2019-07-05 19:08:33 +0200 | [diff] [blame] | 156 | uint8_t temporal_idx) RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_); |
Johnny Lee | bc7f41b | 2019-05-01 14:41:32 -0400 | [diff] [blame] | 157 | |
philipel | 9b2ce6b | 2016-07-05 05:04:46 -0700 | [diff] [blame] | 158 | // For every group of pictures, hold two sequence numbers. The first being |
| 159 | // the sequence number of the last packet of the last completed frame, and |
| 160 | // the second being the sequence number of the last packet of the last |
| 161 | // completed frame advanced by any potential continuous packets of padding. |
| 162 | std::map<uint16_t, |
| 163 | std::pair<uint16_t, uint16_t>, |
| 164 | DescendingSeqNumComp<uint16_t>> |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 165 | last_seq_num_gop_ RTC_GUARDED_BY(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 166 | |
| 167 | // Save the last picture id in order to detect when there is a gap in frames |
| 168 | // that have not yet been fully received. |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 169 | int last_picture_id_ RTC_GUARDED_BY(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 170 | |
philipel | 9b2ce6b | 2016-07-05 05:04:46 -0700 | [diff] [blame] | 171 | // Padding packets that have been received but that are not yet continuous |
| 172 | // with any group of pictures. |
| 173 | std::set<uint16_t, DescendingSeqNumComp<uint16_t>> stashed_padding_ |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 174 | RTC_GUARDED_BY(crit_); |
philipel | 9b2ce6b | 2016-07-05 05:04:46 -0700 | [diff] [blame] | 175 | |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 176 | // Frames earlier than the last received frame that have not yet been |
| 177 | // fully received. |
| 178 | std::set<uint16_t, DescendingSeqNumComp<uint16_t, kPicIdLength>> |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 179 | not_yet_received_frames_ RTC_GUARDED_BY(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 180 | |
Johnny Lee | bc7f41b | 2019-05-01 14:41:32 -0400 | [diff] [blame] | 181 | // Sequence numbers of frames earlier than the last received frame that |
| 182 | // have not yet been fully received. |
Jonas Olsson | a4d8737 | 2019-07-05 19:08:33 +0200 | [diff] [blame] | 183 | std::set<uint16_t, DescendingSeqNumComp<uint16_t>> not_yet_received_seq_num_ |
| 184 | RTC_GUARDED_BY(crit_); |
Johnny Lee | bc7f41b | 2019-05-01 14:41:32 -0400 | [diff] [blame] | 185 | |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 186 | // Frames that have been fully received but didn't have all the information |
| 187 | // needed to determine their references. |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 188 | std::deque<std::unique_ptr<RtpFrameObject>> stashed_frames_ |
| 189 | RTC_GUARDED_BY(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 190 | |
| 191 | // Holds the information about the last completed frame for a given temporal |
philipel | 57ec685 | 2018-07-03 18:09:32 +0200 | [diff] [blame] | 192 | // layer given an unwrapped Tl0 picture index. |
Johnny Lee | bc7f41b | 2019-05-01 14:41:32 -0400 | [diff] [blame] | 193 | std::map<int64_t, std::array<int64_t, kMaxTemporalLayers>> layer_info_ |
philipel | 57ec685 | 2018-07-03 18:09:32 +0200 | [diff] [blame] | 194 | RTC_GUARDED_BY(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 195 | |
| 196 | // Where the current scalability structure is in the |
| 197 | // |scalability_structures_| array. |
| 198 | uint8_t current_ss_idx_; |
| 199 | |
| 200 | // Holds received scalability structures. |
| 201 | std::array<GofInfoVP9, kMaxGofSaved> scalability_structures_ |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 202 | RTC_GUARDED_BY(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 203 | |
philipel | 57ec685 | 2018-07-03 18:09:32 +0200 | [diff] [blame] | 204 | // Holds the the Gof information for a given unwrapped TL0 picture index. |
| 205 | std::map<int64_t, GofInfo> gof_info_ RTC_GUARDED_BY(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 206 | |
| 207 | // Keep track of which picture id and which temporal layer that had the |
| 208 | // up switch flag set. |
philipel | c9b27d5 | 2016-07-15 06:50:27 -0700 | [diff] [blame] | 209 | std::map<uint16_t, uint8_t, DescendingSeqNumComp<uint16_t, kPicIdLength>> |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 210 | up_switch_ RTC_GUARDED_BY(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 211 | |
| 212 | // For every temporal layer, keep a set of which frames that are missing. |
| 213 | std::array<std::set<uint16_t, DescendingSeqNumComp<uint16_t, kPicIdLength>>, |
| 214 | kMaxTemporalLayers> |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 215 | missing_frames_for_layer_ RTC_GUARDED_BY(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 216 | |
philipel | 463d301 | 2016-09-09 03:32:44 -0700 | [diff] [blame] | 217 | // How far frames have been cleared by sequence number. A frame will be |
| 218 | // cleared if it contains a packet with a sequence number older than |
| 219 | // |cleared_to_seq_num_|. |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 220 | int cleared_to_seq_num_ RTC_GUARDED_BY(crit_); |
philipel | 463d301 | 2016-09-09 03:32:44 -0700 | [diff] [blame] | 221 | |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 222 | OnCompleteFrameCallback* frame_callback_; |
philipel | d4fac69 | 2017-09-04 07:03:46 -0700 | [diff] [blame] | 223 | |
philipel | dabfcae | 2018-09-25 12:54:37 +0200 | [diff] [blame] | 224 | SeqNumUnwrapper<uint16_t> generic_frame_id_unwrapper_ RTC_GUARDED_BY(crit_); |
| 225 | |
philipel | d4fac69 | 2017-09-04 07:03:46 -0700 | [diff] [blame] | 226 | // Unwrapper used to unwrap generic RTP streams. In a generic stream we derive |
| 227 | // a picture id from the packet sequence number. |
philipel | dabfcae | 2018-09-25 12:54:37 +0200 | [diff] [blame] | 228 | SeqNumUnwrapper<uint16_t> rtp_seq_num_unwrapper_ RTC_GUARDED_BY(crit_); |
philipel | d4fac69 | 2017-09-04 07:03:46 -0700 | [diff] [blame] | 229 | |
| 230 | // Unwrapper used to unwrap VP8/VP9 streams which have their picture id |
| 231 | // specified. |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 232 | SeqNumUnwrapper<uint16_t, kPicIdLength> unwrapper_ RTC_GUARDED_BY(crit_); |
philipel | 57ec685 | 2018-07-03 18:09:32 +0200 | [diff] [blame] | 233 | |
| 234 | SeqNumUnwrapper<uint8_t> tl0_unwrapper_ RTC_GUARDED_BY(crit_); |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 235 | }; |
| 236 | |
| 237 | } // namespace video_coding |
| 238 | } // namespace webrtc |
| 239 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 240 | #endif // MODULES_VIDEO_CODING_RTP_FRAME_REFERENCE_FINDER_H_ |