Commit f8e001ae authored by David Flynn's avatar David Flynn
Browse files

geom: fix swapped arguments in encodeOccupancyBytewise()

This commit fixes an issue with the bytewise occupancy coder caused by
a mismatch (swapping) of the method arguments resulting in a corrupt
bitstream.
parent a453da6c
......@@ -287,7 +287,7 @@ GeometryOctreeEncoder::encodeOccupancyBitwise(
void
GeometryOctreeEncoder::encodeOccupancyBytewise(
int mappedOccupancy, int neighPattern)
int neighPattern, int mappedOccupancy)
{
// code occupancy using the neighbour configuration context
// with reduction from 64 states to 10 (or 6).
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment