2019-01-14 13:24:22 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2019 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "modules/video_coding/utility/decoded_frames_history.h"
|
|
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
|
#include "rtc_base/logging.h"
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
namespace video_coding {
|
|
|
|
|
|
|
|
|
|
DecodedFramesHistory::DecodedFramesHistory(size_t window_size)
|
2021-02-11 15:25:08 +01:00
|
|
|
: buffer_(window_size) {}
|
2019-01-14 13:24:22 +01:00
|
|
|
|
|
|
|
|
DecodedFramesHistory::~DecodedFramesHistory() = default;
|
|
|
|
|
|
2021-02-15 13:31:29 +01:00
|
|
|
void DecodedFramesHistory::InsertDecoded(int64_t frame_id, uint32_t timestamp) {
|
|
|
|
|
last_decoded_frame_ = frame_id;
|
2019-01-14 13:24:22 +01:00
|
|
|
last_decoded_frame_timestamp_ = timestamp;
|
2021-02-15 13:31:29 +01:00
|
|
|
int new_index = FrameIdToIndex(frame_id);
|
2019-01-14 13:24:22 +01:00
|
|
|
|
2021-02-15 13:31:29 +01:00
|
|
|
RTC_DCHECK(last_frame_id_ < frame_id);
|
2019-03-18 15:53:22 +01:00
|
|
|
|
2021-02-11 15:25:08 +01:00
|
|
|
// Clears expired values from the cyclic buffer_.
|
2021-02-15 13:31:29 +01:00
|
|
|
if (last_frame_id_) {
|
|
|
|
|
int64_t id_jump = frame_id - *last_frame_id_;
|
|
|
|
|
int last_index = FrameIdToIndex(*last_frame_id_);
|
2019-03-18 15:53:22 +01:00
|
|
|
|
2021-02-11 15:25:08 +01:00
|
|
|
if (id_jump >= static_cast<int64_t>(buffer_.size())) {
|
|
|
|
|
std::fill(buffer_.begin(), buffer_.end(), false);
|
2019-03-18 15:53:22 +01:00
|
|
|
} else if (new_index > last_index) {
|
2021-02-11 15:25:08 +01:00
|
|
|
std::fill(buffer_.begin() + last_index + 1, buffer_.begin() + new_index,
|
2019-03-18 15:53:22 +01:00
|
|
|
false);
|
2021-02-11 15:25:08 +01:00
|
|
|
} else {
|
|
|
|
|
std::fill(buffer_.begin() + last_index + 1, buffer_.end(), false);
|
|
|
|
|
std::fill(buffer_.begin(), buffer_.begin() + new_index, false);
|
2019-03-18 15:53:22 +01:00
|
|
|
}
|
2019-01-14 13:24:22 +01:00
|
|
|
}
|
|
|
|
|
|
2021-02-11 15:25:08 +01:00
|
|
|
buffer_[new_index] = true;
|
2021-02-15 13:31:29 +01:00
|
|
|
last_frame_id_ = frame_id;
|
2019-01-14 13:24:22 +01:00
|
|
|
}
|
|
|
|
|
|
2021-11-10 11:35:10 +01:00
|
|
|
bool DecodedFramesHistory::WasDecoded(int64_t frame_id) const {
|
2021-02-15 13:31:29 +01:00
|
|
|
if (!last_frame_id_)
|
2019-03-18 15:53:22 +01:00
|
|
|
return false;
|
|
|
|
|
|
2021-02-11 15:25:08 +01:00
|
|
|
// Reference to the picture_id out of the stored should happen.
|
2021-02-15 13:31:29 +01:00
|
|
|
if (frame_id <= *last_frame_id_ - static_cast<int64_t>(buffer_.size())) {
|
2021-02-11 15:25:08 +01:00
|
|
|
RTC_LOG(LS_WARNING) << "Referencing a frame out of the window. "
|
2019-01-14 13:24:22 +01:00
|
|
|
"Assuming it was undecoded to avoid artifacts.";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-15 13:31:29 +01:00
|
|
|
if (frame_id > last_frame_id_)
|
2019-01-14 13:24:22 +01:00
|
|
|
return false;
|
|
|
|
|
|
2021-02-15 13:31:29 +01:00
|
|
|
return buffer_[FrameIdToIndex(frame_id)];
|
2019-01-14 13:24:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DecodedFramesHistory::Clear() {
|
|
|
|
|
last_decoded_frame_timestamp_.reset();
|
|
|
|
|
last_decoded_frame_.reset();
|
2021-02-11 15:25:08 +01:00
|
|
|
std::fill(buffer_.begin(), buffer_.end(), false);
|
2021-02-15 13:31:29 +01:00
|
|
|
last_frame_id_.reset();
|
2019-01-14 13:24:22 +01:00
|
|
|
}
|
|
|
|
|
|
2024-08-29 13:00:40 +00:00
|
|
|
std::optional<int64_t> DecodedFramesHistory::GetLastDecodedFrameId() const {
|
2019-01-14 13:24:22 +01:00
|
|
|
return last_decoded_frame_;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-29 13:00:40 +00:00
|
|
|
std::optional<uint32_t> DecodedFramesHistory::GetLastDecodedFrameTimestamp()
|
2021-11-10 11:35:10 +01:00
|
|
|
const {
|
2019-01-14 13:24:22 +01:00
|
|
|
return last_decoded_frame_timestamp_;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-15 13:31:29 +01:00
|
|
|
int DecodedFramesHistory::FrameIdToIndex(int64_t frame_id) const {
|
2021-02-11 15:25:08 +01:00
|
|
|
int m = frame_id % buffer_.size();
|
|
|
|
|
return m >= 0 ? m : m + buffer_.size();
|
2019-03-18 15:53:22 +01:00
|
|
|
}
|
|
|
|
|
|
2019-01-14 13:24:22 +01:00
|
|
|
} // namespace video_coding
|
|
|
|
|
} // namespace webrtc
|