[5] | 1 | /* The copyright in this software is being made available under the BSD |
---|
| 2 | * License, included below. This software may be subject to other third party |
---|
| 3 | * and contributor rights, including patent rights, and no such rights are |
---|
[1200] | 4 | * granted under this license. |
---|
[5] | 5 | * |
---|
[1200] | 6 | * Copyright (c) 2010-2015, ITU/ISO/IEC |
---|
[5] | 7 | * All rights reserved. |
---|
| 8 | * |
---|
| 9 | * Redistribution and use in source and binary forms, with or without |
---|
| 10 | * modification, are permitted provided that the following conditions are met: |
---|
| 11 | * |
---|
| 12 | * * Redistributions of source code must retain the above copyright notice, |
---|
| 13 | * this list of conditions and the following disclaimer. |
---|
| 14 | * * Redistributions in binary form must reproduce the above copyright notice, |
---|
| 15 | * this list of conditions and the following disclaimer in the documentation |
---|
| 16 | * and/or other materials provided with the distribution. |
---|
[56] | 17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
[5] | 18 | * be used to endorse or promote products derived from this software without |
---|
| 19 | * specific prior written permission. |
---|
| 20 | * |
---|
| 21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
---|
| 22 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
| 23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
| 24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS |
---|
| 25 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
| 26 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
| 27 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
| 28 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
| 29 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
| 30 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
---|
| 31 | * THE POSSIBILITY OF SUCH DAMAGE. |
---|
| 32 | */ |
---|
[2] | 33 | |
---|
| 34 | /** \file CommonDef.h |
---|
[1200] | 35 | \brief Defines version information, constants and small in-line functions |
---|
[2] | 36 | */ |
---|
| 37 | |
---|
| 38 | #ifndef __COMMONDEF__ |
---|
| 39 | #define __COMMONDEF__ |
---|
| 40 | |
---|
[56] | 41 | #include <algorithm> |
---|
[1200] | 42 | #include <iostream> |
---|
| 43 | #include <assert.h> |
---|
[56] | 44 | |
---|
[2] | 45 | #if _MSC_VER > 1000 |
---|
[56] | 46 | // disable "signed and unsigned mismatch" |
---|
[2] | 47 | #pragma warning( disable : 4018 ) |
---|
[1200] | 48 | // disable Bool coercion "performance warning" |
---|
[56] | 49 | #pragma warning( disable : 4800 ) |
---|
[1200] | 50 | // NH_MV |
---|
| 51 | // disabled decorated name length warning issued for IntAry5d |
---|
| 52 | #pragma warning(disable : 4503) |
---|
| 53 | // |
---|
[2] | 54 | #endif // _MSC_VER > 1000 |
---|
[1200] | 55 | |
---|
| 56 | |
---|
[2] | 57 | #include "TypeDef.h" |
---|
[1200] | 58 | #ifdef _MSC_VER |
---|
| 59 | #if _MSC_VER <= 1500 |
---|
| 60 | inline Int64 abs (Int64 x) { return _abs64(x); }; |
---|
| 61 | #endif |
---|
| 62 | #endif |
---|
| 63 | #if NH_MV |
---|
[622] | 64 | #include <assert.h> |
---|
| 65 | #endif |
---|
[2] | 66 | |
---|
[56] | 67 | //! \ingroup TLibCommon |
---|
| 68 | //! \{ |
---|
[2] | 69 | |
---|
| 70 | // ==================================================================================================================== |
---|
| 71 | // Version information |
---|
| 72 | // ==================================================================================================================== |
---|
[1200] | 73 | #if NH_MV |
---|
[1197] | 74 | #define NV_VERSION "14.1" ///< Current software version |
---|
[1200] | 75 | #define HM_VERSION "16.5" ///< |
---|
[608] | 76 | #else |
---|
[1200] | 77 | #define NV_VERSION "16.5" ///< Current software version |
---|
[608] | 78 | #endif |
---|
[2] | 79 | // ==================================================================================================================== |
---|
| 80 | // Platform information |
---|
| 81 | // ==================================================================================================================== |
---|
| 82 | |
---|
| 83 | #ifdef __GNUC__ |
---|
| 84 | #define NVM_COMPILEDBY "[GCC %d.%d.%d]", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__ |
---|
| 85 | #ifdef __IA64__ |
---|
| 86 | #define NVM_ONARCH "[on 64-bit] " |
---|
| 87 | #else |
---|
| 88 | #define NVM_ONARCH "[on 32-bit] " |
---|
| 89 | #endif |
---|
| 90 | #endif |
---|
| 91 | |
---|
| 92 | #ifdef __INTEL_COMPILER |
---|
| 93 | #define NVM_COMPILEDBY "[ICC %d]", __INTEL_COMPILER |
---|
| 94 | #elif _MSC_VER |
---|
| 95 | #define NVM_COMPILEDBY "[VS %d]", _MSC_VER |
---|
| 96 | #endif |
---|
| 97 | |
---|
| 98 | #ifndef NVM_COMPILEDBY |
---|
| 99 | #define NVM_COMPILEDBY "[Unk-CXX]" |
---|
| 100 | #endif |
---|
| 101 | |
---|
| 102 | #ifdef _WIN32 |
---|
| 103 | #define NVM_ONOS "[Windows]" |
---|
| 104 | #elif __linux |
---|
| 105 | #define NVM_ONOS "[Linux]" |
---|
| 106 | #elif __CYGWIN__ |
---|
| 107 | #define NVM_ONOS "[Cygwin]" |
---|
| 108 | #elif __APPLE__ |
---|
| 109 | #define NVM_ONOS "[Mac OS X]" |
---|
| 110 | #else |
---|
| 111 | #define NVM_ONOS "[Unk-OS]" |
---|
| 112 | #endif |
---|
| 113 | |
---|
[1200] | 114 | #define NVM_BITS "[%d bit] ", (sizeof(Void*) == 8 ? 64 : 32) ///< used for checking 64-bit O/S |
---|
[2] | 115 | |
---|
| 116 | #ifndef NULL |
---|
| 117 | #define NULL 0 |
---|
| 118 | #endif |
---|
| 119 | |
---|
| 120 | // ==================================================================================================================== |
---|
| 121 | // Common constants |
---|
| 122 | // ==================================================================================================================== |
---|
| 123 | |
---|
[1200] | 124 | static const UInt MAX_UINT = 0xFFFFFFFFU; ///< max. value of unsigned 32-bit integer |
---|
| 125 | static const Int MAX_INT = 2147483647; ///< max. value of signed 32-bit integer |
---|
| 126 | #if NH_MV |
---|
| 127 | static const Int MIN_INT = (- MAX_INT - 1); ///< max. value of signed 32-bit integer |
---|
| 128 | #endif |
---|
| 129 | static const Double MAX_DOUBLE = 1.7e+308; ///< max. value of Double-type value |
---|
[2] | 130 | |
---|
[1200] | 131 | // ==================================================================================================================== |
---|
| 132 | // Coding tool configuration |
---|
| 133 | // ==================================================================================================================== |
---|
| 134 | // Most of these should not be changed - they resolve the meaning of otherwise magic numbers. |
---|
[2] | 135 | |
---|
[1200] | 136 | static const Int MAX_GOP = 64; ///< max. value of hierarchical GOP size |
---|
| 137 | static const Int MAX_NUM_REF_PICS = 16; ///< max. number of pictures used for reference |
---|
| 138 | static const Int MAX_NUM_REF = 16; ///< max. number of entries in picture reference list |
---|
| 139 | static const Int MAX_QP = 51; |
---|
| 140 | static const Int NOT_VALID = -1; |
---|
[2] | 141 | |
---|
[1200] | 142 | static const Int AMVP_MAX_NUM_CANDS = 2; ///< AMVP: advanced motion vector prediction - max number of final candidates |
---|
| 143 | static const Int AMVP_MAX_NUM_CANDS_MEM = 3; ///< AMVP: advanced motion vector prediction - max number of candidates |
---|
| 144 | static const Int AMVP_DECIMATION_FACTOR = 4; |
---|
| 145 | static const Int MRG_MAX_NUM_CANDS = 5; ///< MERGE |
---|
[738] | 146 | |
---|
[2] | 147 | |
---|
[1200] | 148 | static const Int MAX_TLAYER = 7; ///< Explicit temporal layer QP offset - max number of temporal layer |
---|
[2] | 149 | |
---|
[1200] | 150 | static const Int ADAPT_SR_SCALE = 1; ///< division factor for adaptive search range |
---|
[2] | 151 | |
---|
[1200] | 152 | static const Int MAX_NUM_PICS_IN_SOP = 1024; |
---|
| 153 | |
---|
| 154 | static const Int MAX_NESTING_NUM_OPS = 1024; |
---|
| 155 | static const Int MAX_NESTING_NUM_LAYER = 64; |
---|
| 156 | |
---|
| 157 | #if NH_MV |
---|
| 158 | static const Int MAX_VPS_NUM_HRD_PARAMETERS = 1024; |
---|
| 159 | #else |
---|
| 160 | static const Int MAX_VPS_NUM_HRD_PARAMETERS = 1; |
---|
| 161 | #endif |
---|
| 162 | static const Int MAX_VPS_OP_SETS_PLUS1 = 1024; |
---|
| 163 | #if NH_MV |
---|
| 164 | static const Int MAX_VPS_NUH_LAYER_ID_PLUS1 = 63; |
---|
| 165 | #else |
---|
| 166 | static const Int MAX_VPS_NUH_RESERVED_ZERO_LAYER_ID_PLUS1 = 1; |
---|
| 167 | #endif |
---|
| 168 | |
---|
| 169 | static const Int MAXIMUM_INTRA_FILTERED_WIDTH = 16; |
---|
| 170 | static const Int MAXIMUM_INTRA_FILTERED_HEIGHT = 16; |
---|
| 171 | |
---|
| 172 | static const Int MAX_CPB_CNT = 32; ///< Upper bound of (cpb_cnt_minus1 + 1) |
---|
| 173 | #if NH_MV |
---|
| 174 | static const Int MAX_NUM_LAYER_IDS = 63; |
---|
| 175 | #else |
---|
| 176 | static const Int MAX_NUM_LAYER_IDS = 64; |
---|
| 177 | #endif |
---|
| 178 | |
---|
| 179 | static const Int COEF_REMAIN_BIN_REDUCTION = 3; ///< indicates the level at which the VLC transitions from Golomb-Rice to TU+EG(k) |
---|
| 180 | |
---|
| 181 | static const Int CU_DQP_TU_CMAX = 5; ///< max number bins for truncated unary |
---|
| 182 | static const Int CU_DQP_EG_k = 0; ///< expgolomb order |
---|
| 183 | |
---|
| 184 | static const Int SBH_THRESHOLD = 4; ///< value of the fixed SBH controlling threshold |
---|
| 185 | |
---|
| 186 | static const Int C1FLAG_NUMBER = 8; // maximum number of largerThan1 flag coded in one chunk: 16 in HM5 |
---|
| 187 | static const Int C2FLAG_NUMBER = 1; // maximum number of largerThan2 flag coded in one chunk: 16 in HM5 |
---|
| 188 | |
---|
| 189 | static const Int MAX_NUM_VPS = 16; |
---|
| 190 | static const Int MAX_NUM_SPS = 16; |
---|
| 191 | static const Int MAX_NUM_PPS = 64; |
---|
| 192 | |
---|
| 193 | |
---|
| 194 | static const Int MLS_GRP_NUM = 64; ///< Max number of coefficient groups, max(16, 64) |
---|
| 195 | static const Int MLS_CG_LOG2_WIDTH = 2; |
---|
| 196 | static const Int MLS_CG_LOG2_HEIGHT = 2; |
---|
| 197 | static const Int MLS_CG_SIZE = 4; ///< Coefficient group size of 4x4; = MLS_CG_LOG2_WIDTH + MLS_CG_LOG2_HEIGHT |
---|
| 198 | |
---|
| 199 | #if ADAPTIVE_QP_SELECTION |
---|
| 200 | static const Int ARL_C_PRECISION = 7; ///< G382: 7-bit arithmetic precision |
---|
| 201 | static const Int LEVEL_RANGE = 30; ///< G382: max coefficient level in statistics collection |
---|
| 202 | #endif |
---|
| 203 | |
---|
| 204 | static const Int RVM_VCEGAM10_M = 4; |
---|
| 205 | |
---|
| 206 | static const Int FAST_UDI_MAX_RDMODE_NUM = 35; ///< maximum number of RD comparison in fast-UDI estimation loop |
---|
| 207 | |
---|
| 208 | static const Int NUM_INTRA_MODE = 36; |
---|
| 209 | static const Int PLANAR_IDX = 0; |
---|
| 210 | static const Int VER_IDX = 26; ///< index for intra VERTICAL mode |
---|
| 211 | static const Int HOR_IDX = 10; ///< index for intra HORIZONTAL mode |
---|
| 212 | static const Int DC_IDX = 1; ///< index for intra DC mode |
---|
| 213 | static const Int NUM_CHROMA_MODE = 5; ///< total number of chroma modes |
---|
| 214 | static const Int DM_CHROMA_IDX = 36; ///< chroma mode index for derived from luma intra mode |
---|
| 215 | |
---|
| 216 | static const Int MDCS_ANGLE_LIMIT = 4; ///< 0 = Horizontal/vertical only, 1 = Horizontal/vertical +/- 1, 2 = Horizontal/vertical +/- 2 etc... |
---|
| 217 | static const Int MDCS_MAXIMUM_WIDTH = 8; ///< (measured in pixels) TUs with width greater than this can only use diagonal scan |
---|
| 218 | static const Int MDCS_MAXIMUM_HEIGHT = 8; ///< (measured in pixels) TUs with height greater than this can only use diagonal scan |
---|
| 219 | |
---|
| 220 | |
---|
| 221 | static const Int LOG2_MAX_NUM_COLUMNS_MINUS1 = 7; |
---|
| 222 | static const Int LOG2_MAX_NUM_ROWS_MINUS1 = 7; |
---|
| 223 | |
---|
| 224 | static const Int CABAC_INIT_PRESENT_FLAG = 1; |
---|
| 225 | |
---|
| 226 | static const Int LUMA_INTERPOLATION_FILTER_SUB_SAMPLE_POSITIONS = 4; |
---|
| 227 | static const Int CHROMA_INTERPOLATION_FILTER_SUB_SAMPLE_POSITIONS = 8; |
---|
| 228 | |
---|
| 229 | static const Int MAX_NUM_LONG_TERM_REF_PICS = 33; |
---|
| 230 | static const Int NUM_LONG_TERM_REF_PIC_SPS = 0; |
---|
| 231 | |
---|
| 232 | |
---|
| 233 | static const Int MAX_QP_OFFSET_LIST_SIZE = 6; ///< Maximum size of QP offset list is 6 entries |
---|
| 234 | |
---|
| 235 | // Cost mode support |
---|
| 236 | static const Int LOSSLESS_AND_MIXED_LOSSLESS_RD_COST_TEST_QP = 0; ///< QP to use for lossless coding. |
---|
| 237 | static const Int LOSSLESS_AND_MIXED_LOSSLESS_RD_COST_TEST_QP_PRIME =4; ///< QP' to use for mixed_lossy_lossless coding. |
---|
| 238 | |
---|
| 239 | static const Int RExt__GOLOMB_RICE_ADAPTATION_STATISTICS_SETS = 4; |
---|
| 240 | static const Int RExt__GOLOMB_RICE_INCREMENT_DIVISOR = 4; |
---|
| 241 | |
---|
| 242 | static const Int RExt__PREDICTION_WEIGHTING_ANALYSIS_DC_PRECISION = 0; ///< Additional fixed bit precision used during encoder-side weighting prediction analysis. Currently only used when high_precision_prediction_weighting_flag is set, for backwards compatibility reasons. |
---|
| 243 | |
---|
| 244 | static const Int MAX_TIMECODE_SEI_SETS = 3; ///< Maximum number of time sets |
---|
| 245 | |
---|
| 246 | static const Int MAX_CU_DEPTH = 6; ///< log2(CTUSize) |
---|
| 247 | static const Int MAX_CU_SIZE = 64; ///< = 1<<(MAX_CU_DEPTH) |
---|
| 248 | static const Int MIN_PU_SIZE = 4; |
---|
| 249 | static const Int MIN_TU_SIZE = 4; |
---|
| 250 | static const Int MAX_TU_SIZE = 32; |
---|
| 251 | static const Int MAX_NUM_PART_IDXS_IN_CTU_WIDTH = MAX_CU_SIZE/MIN_PU_SIZE; ///< maximum number of partition indices across the width of a CTU (or height of a CTU) |
---|
| 252 | static const Int SCALING_LIST_REM_NUM = 6; |
---|
| 253 | |
---|
| 254 | static const Int QUANT_SHIFT = 14; ///< Q(4) = 2^14 |
---|
| 255 | static const Int IQUANT_SHIFT = 6; |
---|
| 256 | static const Int SCALE_BITS = 15; ///< For fractional bit estimates in RDOQ |
---|
| 257 | |
---|
| 258 | static const Int SCALING_LIST_NUM = MAX_NUM_COMPONENT * NUMBER_OF_PREDICTION_MODES; ///< list number for quantization matrix |
---|
| 259 | |
---|
| 260 | static const Int SCALING_LIST_START_VALUE = 8 ; ///< start value for dpcm mode |
---|
| 261 | static const Int MAX_MATRIX_COEF_NUM = 64 ; ///< max coefficient number for quantization matrix |
---|
| 262 | static const Int MAX_MATRIX_SIZE_NUM = 8 ; ///< max size number for quantization matrix |
---|
| 263 | static const Int SCALING_LIST_BITS = 8 ; ///< bit depth of scaling list entries |
---|
| 264 | static const Int LOG2_SCALING_LIST_NEUTRAL_VALUE = 4 ; ///< log2 of the value that, when used in a scaling list, has no effect on quantisation |
---|
| 265 | static const Int SCALING_LIST_DC = 16 ; ///< default DC value |
---|
| 266 | |
---|
| 267 | static const Int CONTEXT_STATE_BITS = 6 ; |
---|
| 268 | static const Int LAST_SIGNIFICANT_GROUPS = 10 ; |
---|
| 269 | |
---|
| 270 | #if NH_MV |
---|
| 271 | static const Int MAX_VPS_NUM_ADD_LAYER_SETS = 1024 ; |
---|
| 272 | static const Int MAX_NUM_SCALABILITY_TYPES = 16 ; |
---|
| 273 | static const Int ENC_CFG_CONSOUT_SPACE = 34 ; |
---|
| 274 | static const Int MAX_NUM_LAYERS = 63 ; |
---|
| 275 | static const Int MAX_VPS_PROFILE_TIER_LEVEL = 64 ; |
---|
| 276 | static const Int MAX_VPS_ADD_OUTPUT_LAYER_SETS = 1024 ; |
---|
| 277 | static const Int MAX_VPS_OUTPUTLAYER_SETS = MAX_VPS_ADD_OUTPUT_LAYER_SETS + MAX_VPS_OP_SETS_PLUS1 + MAX_VPS_OP_SETS_PLUS1 ; |
---|
| 278 | static const Int MAX_NUM_VIDEO_SIGNAL_INFO = 16 ; |
---|
| 279 | static const Int MAX_NUM_SCALED_REF_LAYERS = MAX_NUM_LAYERS - 1 ; |
---|
| 280 | #endif |
---|
| 281 | |
---|
[56] | 282 | // ==================================================================================================================== |
---|
[2] | 283 | // Macro functions |
---|
| 284 | // ==================================================================================================================== |
---|
| 285 | |
---|
[1200] | 286 | template <typename T> inline T Clip3 (const T minVal, const T maxVal, const T a) { return std::min<T> (std::max<T> (minVal, a) , maxVal); } ///< general min/max clip |
---|
| 287 | template <typename T> inline T ClipBD(const T x, const Int bitDepth) { return Clip3(T(0), T((1 << bitDepth)-1), x); } |
---|
[2] | 288 | |
---|
[1200] | 289 | template <typename T> inline Void Check3( T minVal, T maxVal, T a) |
---|
| 290 | { |
---|
| 291 | if ((a > maxVal) || (a < minVal)) |
---|
| 292 | { |
---|
| 293 | std::cerr << "ERROR: Range check " << minVal << " >= " << a << " <= " << maxVal << " failed" << std::endl; |
---|
| 294 | assert(false); |
---|
| 295 | exit(1); |
---|
| 296 | } |
---|
| 297 | } ///< general min/max clip |
---|
[56] | 298 | |
---|
[2] | 299 | #define DATA_ALIGN 1 ///< use 32-bit aligned malloc/free |
---|
| 300 | #if DATA_ALIGN && _WIN32 && ( _MSC_VER > 1300 ) |
---|
| 301 | #define xMalloc( type, len ) _aligned_malloc( sizeof(type)*(len), 32 ) |
---|
| 302 | #define xFree( ptr ) _aligned_free ( ptr ) |
---|
| 303 | #else |
---|
| 304 | #define xMalloc( type, len ) malloc ( sizeof(type)*(len) ) |
---|
| 305 | #define xFree( ptr ) free ( ptr ) |
---|
| 306 | #endif |
---|
| 307 | |
---|
| 308 | #define FATAL_ERROR_0(MESSAGE, EXITCODE) \ |
---|
| 309 | { \ |
---|
| 310 | printf(MESSAGE); \ |
---|
| 311 | exit(EXITCODE); \ |
---|
| 312 | } |
---|
| 313 | |
---|
[1200] | 314 | template <typename ValueType> inline ValueType leftShift (const ValueType value, const Int shift) { return (shift >= 0) ? ( value << shift) : ( value >> -shift); } |
---|
| 315 | template <typename ValueType> inline ValueType rightShift (const ValueType value, const Int shift) { return (shift >= 0) ? ( value >> shift) : ( value << -shift); } |
---|
| 316 | template <typename ValueType> inline ValueType leftShift_round (const ValueType value, const Int shift) { return (shift >= 0) ? ( value << shift) : ((value + (ValueType(1) << (-shift - 1))) >> -shift); } |
---|
| 317 | template <typename ValueType> inline ValueType rightShift_round(const ValueType value, const Int shift) { return (shift >= 0) ? ((value + (ValueType(1) << (shift - 1))) >> shift) : ( value << -shift); } |
---|
| 318 | #if O0043_BEST_EFFORT_DECODING |
---|
| 319 | // when shift = 0, returns value |
---|
| 320 | // when shift = 1, (value + 0 + value[1]) >> 1 |
---|
| 321 | // when shift = 2, (value + 1 + value[2]) >> 2 |
---|
| 322 | // when shift = 3, (value + 3 + value[3]) >> 3 |
---|
| 323 | template <typename ValueType> inline ValueType rightShiftEvenRounding(const ValueType value, const UInt shift) { return (shift == 0) ? value : ((value + (1<<(shift-1))-1 + ((value>>shift)&1)) >> shift) ; } |
---|
| 324 | #endif |
---|
| 325 | #if NH_MV |
---|
[2] | 326 | |
---|
| 327 | #define AOF( exp ) \ |
---|
| 328 | { \ |
---|
| 329 | if( !( exp ) ) \ |
---|
[56] | 330 | { \ |
---|
| 331 | assert( 0 ); \ |
---|
| 332 | } \ |
---|
[2] | 333 | } |
---|
| 334 | |
---|
| 335 | #define AOT( exp ) \ |
---|
| 336 | { \ |
---|
| 337 | if( ( exp ) ) \ |
---|
[56] | 338 | { \ |
---|
| 339 | assert( 0 ); \ |
---|
| 340 | } \ |
---|
[2] | 341 | } |
---|
| 342 | |
---|
[56] | 343 | template <typename T> |
---|
| 344 | __inline T gSign(const T& t) |
---|
| 345 | { |
---|
| 346 | if( t == 0 ) |
---|
| 347 | return T(0); |
---|
| 348 | else |
---|
| 349 | return (t < 0) ? T(-1) : T(1); |
---|
| 350 | } |
---|
[2] | 351 | |
---|
[622] | 352 | template <typename T> |
---|
| 353 | __inline T gCeilLog2( T val ) |
---|
| 354 | { |
---|
| 355 | assert( val > 0 ); |
---|
| 356 | Int ceilLog2 = 0; |
---|
| 357 | while( val > ( 1 << ceilLog2 ) ) ceilLog2++; |
---|
| 358 | return ceilLog2; |
---|
| 359 | } |
---|
| 360 | |
---|
[1200] | 361 | #define RemoveBitIncrement( exp ) ( exp >> ( REN_BIT_DEPTH - 8 ) ) |
---|
[2] | 362 | |
---|
[100] | 363 | #endif |
---|
| 364 | |
---|
[608] | 365 | #if H_3D_IV_MERGE |
---|
[56] | 366 | #define MRG_MAX_NUM_CANDS_MEM (MRG_MAX_NUM_CANDS+1) // one extra for inter-view motion prediction |
---|
| 367 | #endif |
---|
[2] | 368 | |
---|
| 369 | |
---|
[1200] | 370 | #if NH_3D |
---|
[56] | 371 | //PICYUV |
---|
| 372 | #define PICYUV_PAD 16 |
---|
[2] | 373 | |
---|
[56] | 374 | //RENDERER |
---|
[1200] | 375 | |
---|
| 376 | |
---|
| 377 | #define REN_BIT_DEPTH 8 |
---|
| 378 | #define REN_LUMA_MARGIN ( PICYUV_PAD + 1 ) // + g_uiMaxCuWidth instead of 1 ??? |
---|
[56] | 379 | #define REN_VDWEIGHT_PREC 8 |
---|
| 380 | #define REN_IS_FILLED ( 1 << REN_VDWEIGHT_PREC ) |
---|
[1200] | 381 | #define REN_USED_PEL ( (1 << REN_BIT_DEPTH) - 1 ) |
---|
[56] | 382 | #define REN_UNUSED_PEL 0 |
---|
| 383 | #define REN_IS_HOLE 0 |
---|
[1200] | 384 | #if NH_3D_VSO |
---|
| 385 | #define ENC_INTERNAL_BIT_DEPTH REN_BIT_DEPTH // consider making this a variable |
---|
| 386 | #endif |
---|
[56] | 387 | |
---|
| 388 | |
---|
[608] | 389 | // CAMERA PARAMETERS |
---|
| 390 | #define LOG2_DISP_PREC_LUT 2 ///< log2 of disparity precision used in integer disparity LUTs |
---|
| 391 | #define STD_CAM_PARAMETERS_PRECISION 5 ///< quarter luma sample accuarcy for derived disparities (as default) |
---|
[56] | 392 | |
---|
[608] | 393 | #endif // end of H_3D |
---|
[56] | 394 | //! \} |
---|
| 395 | |
---|
[2] | 396 | #endif // end of #ifndef __COMMONDEF__ |
---|
| 397 | |
---|