Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Satoru KUMA
MPEG129-m52280
Commits
c7a28b70
Commit
c7a28b70
authored
Nov 27, 2019
by
Satoru KUMA
Committed by
David Flynn
Dec 18, 2019
Browse files
attr: initialise predictor neighbour infomation to zero
This addresses a suspected issue with scalable LoD coding.
parent
fe2e06e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
tmc3/PCCTMC3Common.h
View file @
c7a28b70
...
...
@@ -207,7 +207,13 @@ struct PCCPredictor {
predMode
=
0
;
}
void
init
()
{
neighborCount
=
0
;
}
void
init
()
{
neighborCount
=
0
;
memset
(
neighbors
,
0
,
sizeof
(
PCCNeighborInfo
)
*
kAttributePredictionMaxNeighbourCount
);
}
void
insertNeighbor
(
const
uint32_t
reference
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment