uvgVPCCenc 1.1.0
uvgVPCCenc is an open-source real-time V-PCC encoder library written in C++ from scratch.
Loading...
Searching...
No Matches
constants.hpp
Go to the documentation of this file.
1/*****************************************************************************
2 * This file is part of uvgVPCCenc V-PCC encoder.
3 *
4 * Copyright (c) 2024-present, Tampere University, ITU/ISO/IEC, project contributors
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without modification,
8 * are permitted provided that the following conditions are met:
9 *
10 * * Redistributions of source code must retain the above copyright notice, this
11 * list of conditions and the following disclaimer.
12 *
13 * * Redistributions in binary form must reproduce the above copyright notice, this
14 * list of conditions and the following disclaimer in the documentation and/or
15 * other materials provided with the distribution.
16 *
17 * * Neither the name of the Tampere University or ITU/ISO/IEC nor the names of its
18 * contributors may be used to endorse or promote products derived from
19 * this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
25 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 * INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION HOWEVER CAUSED AND ON
28 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * INCLUDING NEGLIGENCE OR OTHERWISE ARISING IN ANY WAY OUT OF THE USE OF THIS
31 ****************************************************************************/
32
34
35#pragma once
36
37#include <array>
38#include <cstdint>
39#include <iomanip>
40#include <limits>
41#include <sstream>
42
43#include "uvgutils/utils.hpp"
44
45namespace uvgvpcc_enc {
46
47using typeGeometryInput = uint16_t;
48
49const typeGeometryInput g_infiniteDepth = (std::numeric_limits<typeGeometryInput>::max)(); // TODO(lf)be sure it is well sync with type geo
50const size_t g_infinitenumber = (std::numeric_limits<size_t>::max)();
51const size_t g_valueNotSet = (std::numeric_limits<size_t>::max)();
52
53constexpr size_t INVALID_PATCH_INDEX = std::numeric_limits<size_t>::max();
54constexpr size_t PPI_NON_ASSIGNED = std::numeric_limits<size_t>::max();
55constexpr size_t UNDEFINED_PARENT_PPI = std::numeric_limits<size_t>::max() - 1; // TODO(lf) temp
56
57// Projection Plan Index, 0-5 -> one of the six bounding box plan. 6+ -> used for slicing ppi attribution
58enum class PPI : uint8_t { ppi0, ppi1, ppi2, ppi3, ppi4, ppi5, ppiBlank, notAssigned };
59
60} // namespace uvgvpcc_enc
Definition uvgvpcc.hpp:55
PPI
Definition constants.hpp:58
constexpr size_t INVALID_PATCH_INDEX
Definition constants.hpp:53
constexpr size_t PPI_NON_ASSIGNED
Definition constants.hpp:54
constexpr size_t UNDEFINED_PARENT_PPI
Definition constants.hpp:55
uint16_t typeGeometryInput
Definition constants.hpp:47
const size_t g_infinitenumber
Definition constants.hpp:50
const typeGeometryInput g_infiniteDepth
Definition constants.hpp:49
const size_t g_valueNotSet
Definition constants.hpp:51