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;
|
|
|
|
|
|
|
|
|
|
void DecodedFramesHistory::InsertDecoded(const VideoLayerFrameId& frameid,
|
|
|
|
|
uint32_t timestamp) {
|
|
|
|
|
last_decoded_frame_ = frameid;
|
|
|
|
|
last_decoded_frame_timestamp_ = timestamp;
|
2019-03-18 15:53:22 +01:00
|
|
|
int new_index = PictureIdToIndex(frameid.picture_id);
|
2019-01-14 13:24:22 +01:00
|
|
|
|
2021-02-11 15:25:08 +01:00
|
|
|
RTC_DCHECK(last_picture_id_ < frameid.picture_id);
|
2019-03-18 15:53:22 +01:00
|
|
|
|
2021-02-11 15:25:08 +01:00
|
|
|
// Clears expired values from the cyclic buffer_.
|
|
|
|
|
if (last_picture_id_) {
|
|
|
|
|
int64_t id_jump = frameid.picture_id - *last_picture_id_;
|
|
|
|
|
int last_index = PictureIdToIndex(*last_picture_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;
|
|
|
|
|
last_picture_id_ = frameid.picture_id;
|
2019-01-14 13:24:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DecodedFramesHistory::WasDecoded(const VideoLayerFrameId& frameid) {
|
2021-02-11 15:25:08 +01:00
|
|
|
if (!last_picture_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.
|
|
|
|
|
if (frameid.picture_id <=
|
|
|
|
|
*last_picture_id_ - static_cast<int64_t>(buffer_.size())) {
|
|
|
|
|
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-11 15:25:08 +01:00
|
|
|
if (frameid.picture_id > last_picture_id_)
|
2019-01-14 13:24:22 +01:00
|
|
|
return false;
|
|
|
|
|
|
2021-02-11 15:25:08 +01:00
|
|
|
return buffer_[PictureIdToIndex(frameid.picture_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);
|
|
|
|
|
last_picture_id_.reset();
|
2019-01-14 13:24:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
absl::optional<VideoLayerFrameId>
|
|
|
|
|
DecodedFramesHistory::GetLastDecodedFrameId() {
|
|
|
|
|
return last_decoded_frame_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
absl::optional<uint32_t> DecodedFramesHistory::GetLastDecodedFrameTimestamp() {
|
|
|
|
|
return last_decoded_frame_timestamp_;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-18 15:53:22 +01:00
|
|
|
int DecodedFramesHistory::PictureIdToIndex(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
|