1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/webcodecs/video_frame_monitor.h"
#include "third_party/blink/renderer/platform/wtf/std_lib_extras.h"
namespace blink {
// static
VideoFrameMonitor& VideoFrameMonitor::Instance() {
DEFINE_THREAD_SAFE_STATIC_LOCAL(VideoFrameMonitor, instance, ());
return instance;
}
void VideoFrameMonitor::OnOpenFrame(const std::string& source_id,
media::VideoFrame::ID frame_id) {
base::AutoLock locker(GetLock());
OnOpenFrameLocked(source_id, frame_id);
}
void VideoFrameMonitor::OnCloseFrame(const std::string& source_id,
media::VideoFrame::ID frame_id) {
base::AutoLock locker(GetLock());
OnCloseFrameLocked(source_id, frame_id);
}
wtf_size_t VideoFrameMonitor::NumFrames(const std::string& source_id) {
base::AutoLock locker(GetLock());
return NumFramesLocked(source_id);
}
int VideoFrameMonitor::NumRefs(const std::string& source_id,
media::VideoFrame::ID frame_id) {
base::AutoLock locker(GetLock());
return NumRefsLocked(source_id, frame_id);
}
bool VideoFrameMonitor::IsEmpty() {
base::AutoLock locker(GetLock());
return map_.empty();
}
void VideoFrameMonitor::OnOpenFrameLocked(const std::string& source_id,
media::VideoFrame::ID frame_id) {
DCHECK(!source_id.empty());
lock_.AssertAcquired();
FrameMap& frame_map = map_[source_id];
auto it_frame = frame_map.find(frame_id);
if (it_frame == frame_map.end()) {
frame_map.insert(frame_id, 1);
} else {
DCHECK_GT(it_frame->value, 0);
++it_frame->value;
}
}
void VideoFrameMonitor::OnCloseFrameLocked(const std::string& source_id,
media::VideoFrame::ID frame_id) {
DCHECK(!source_id.empty());
lock_.AssertAcquired();
auto it_source = map_.find(source_id);
CHECK(it_source != map_.end());
FrameMap& frame_map = it_source->second;
auto it_frame = frame_map.find(frame_id);
CHECK(it_frame != frame_map.end());
DCHECK_GT(it_frame->value, 0);
if (--it_frame->value == 0) {
frame_map.erase(it_frame);
if (frame_map.empty())
map_.erase(it_source);
}
}
wtf_size_t VideoFrameMonitor::NumFramesLocked(const std::string& source_id) {
DCHECK(!source_id.empty());
lock_.AssertAcquired();
auto it = map_.find(source_id);
return it == map_.end() ? 0u : it->second.size();
}
int VideoFrameMonitor::NumRefsLocked(const std::string& source_id,
media::VideoFrame::ID frame_id) {
DCHECK(!source_id.empty());
lock_.AssertAcquired();
auto it = map_.find(source_id);
if (it == map_.end())
return 0u;
FrameMap& frame_map = it->second;
auto it_frame = frame_map.find(frame_id);
return it_frame == frame_map.end() ? 0 : it_frame->value;
}
} // namespace blink
|