-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathh264_dpb.cc
173 lines (147 loc) · 4.13 KB
/
h264_dpb.cc
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <string.h>
#include <algorithm>
#include "base/logging.h"
#include "base/stl_util.h"
#include "media/gpu/h264_dpb.h"
namespace media {
H264Picture::H264Picture()
: pic_order_cnt_type(0),
top_field_order_cnt(0),
bottom_field_order_cnt(0),
pic_order_cnt(0),
pic_order_cnt_msb(0),
pic_order_cnt_lsb(0),
delta_pic_order_cnt_bottom(0),
delta_pic_order_cnt0(0),
delta_pic_order_cnt1(0),
pic_num(0),
long_term_pic_num(0),
frame_num(0),
frame_num_offset(0),
frame_num_wrap(0),
long_term_frame_idx(0),
type(H264SliceHeader::kPSlice),
nal_ref_idc(0),
idr(false),
idr_pic_id(0),
ref(false),
long_term(false),
outputted(false),
mem_mgmt_5(false),
nonexisting(false),
field(FIELD_NONE),
long_term_reference_flag(false),
adaptive_ref_pic_marking_mode_flag(false),
dpb_position(0) {
memset(&ref_pic_marking, 0, sizeof(ref_pic_marking));
}
H264Picture::~H264Picture() = default;
V4L2H264Picture* H264Picture::AsV4L2H264Picture() {
return nullptr;
}
VaapiH264Picture* H264Picture::AsVaapiH264Picture() {
return nullptr;
}
H264DPB::H264DPB() : max_num_pics_(0) {}
H264DPB::~H264DPB() = default;
void H264DPB::Clear() {
pics_.clear();
}
void H264DPB::set_max_num_pics(size_t max_num_pics) {
DCHECK_LE(max_num_pics, static_cast<size_t>(kDPBMaxSize));
max_num_pics_ = max_num_pics;
if (pics_.size() > max_num_pics_)
pics_.resize(max_num_pics_);
}
void H264DPB::UpdatePicPositions() {
size_t i = 0;
for (auto& pic : pics_) {
pic->dpb_position = i;
++i;
}
}
void H264DPB::DeleteByPOC(int poc) {
for (auto it = pics_.begin(); it != pics_.end(); ++it) {
if ((*it)->pic_order_cnt == poc) {
pics_.erase(it);
UpdatePicPositions();
return;
}
}
NOTREACHED() << "Missing POC: " << poc;
}
void H264DPB::DeleteUnused() {
for (auto it = pics_.begin(); it != pics_.end();) {
if ((*it)->outputted && !(*it)->ref)
it = pics_.erase(it);
else
++it;
}
UpdatePicPositions();
}
void H264DPB::StorePic(const scoped_refptr<H264Picture>& pic) {
DCHECK_LT(pics_.size(), max_num_pics_);
DVLOG(3) << "Adding PicNum: " << pic->pic_num << " ref: " << (int)pic->ref
<< " longterm: " << (int)pic->long_term << " to DPB";
pic->dpb_position = pics_.size();
pics_.push_back(pic);
}
int H264DPB::CountRefPics() {
int ret = 0;
for (size_t i = 0; i < pics_.size(); ++i) {
if (pics_[i]->ref)
++ret;
}
return ret;
}
void H264DPB::MarkAllUnusedForRef() {
for (size_t i = 0; i < pics_.size(); ++i)
pics_[i]->ref = false;
}
scoped_refptr<H264Picture> H264DPB::GetShortRefPicByPicNum(int pic_num) {
for (const auto& pic : pics_) {
if (pic->ref && !pic->long_term && pic->pic_num == pic_num)
return pic;
}
DVLOG(1) << "Missing short ref pic num: " << pic_num;
return nullptr;
}
scoped_refptr<H264Picture> H264DPB::GetLongRefPicByLongTermPicNum(int pic_num) {
for (const auto& pic : pics_) {
if (pic->ref && pic->long_term && pic->long_term_pic_num == pic_num)
return pic;
}
DVLOG(1) << "Missing long term pic num: " << pic_num;
return nullptr;
}
scoped_refptr<H264Picture> H264DPB::GetLowestFrameNumWrapShortRefPic() {
scoped_refptr<H264Picture> ret;
for (const auto& pic : pics_) {
if (pic->ref && !pic->long_term &&
(!ret || pic->frame_num_wrap < ret->frame_num_wrap))
ret = pic;
}
return ret;
}
void H264DPB::GetNotOutputtedPicsAppending(H264Picture::Vector* out) {
for (const auto& pic : pics_) {
if (!pic->outputted)
out->push_back(pic);
}
}
void H264DPB::GetShortTermRefPicsAppending(H264Picture::Vector* out) {
for (const auto& pic : pics_) {
if (pic->ref && !pic->long_term)
out->push_back(pic);
}
}
void H264DPB::GetLongTermRefPicsAppending(H264Picture::Vector* out) {
for (const auto& pic : pics_) {
if (pic->ref && pic->long_term)
out->push_back(pic);
}
}
} // namespace media