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

geom/m46148: swap bits 5 and 6 of occupancy coding order

This commit updates the geometry octree node occupancy map scan order
to permit better screening of b6 from the right.
parent 5ed41242
...@@ -257,7 +257,7 @@ const uint8_t pcc::kOccMapRotateZ090[256] = { ...@@ -257,7 +257,7 @@ const uint8_t pcc::kOccMapRotateZ090[256] = {
//============================================================================ //============================================================================
const int8_t pcc::kOccBitCodingOrder[8] = {1, 7, 5, 3, 2, 4, 6, 0}; const int8_t pcc::kOccBitCodingOrder[8] = {1, 7, 5, 3, 2, 6, 4, 0};
//============================================================================ //============================================================================
......
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