source: 3DVCSoftware/branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibCommon/TComRom.h @ 1223

Last change on this file since 1223 was 1223, checked in by rwth, 9 years ago
  • SDC seems to work now (incompatible with DMM at this stage)
  • Property svn:eol-style set to native
File size: 13.0 KB
Line 
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
4 * granted under this license.
5 *
6 * Copyright (c) 2010-2015, ITU/ISO/IEC
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.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
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 */
33/** \file     TComRom.h
34    \brief    global variables & functions (header)
35*/
36#ifndef __TCOMROM__
37#define __TCOMROM__
38#include "CommonDef.h"
39#include<stdio.h>
40#include<iostream>
41#if NH_3D_DMM
42#include "TComWedgelet.h"
43#endif
44//! \ingroup TLibCommon
45//! \{
46// ====================================================================================================================
47// Initialize / destroy functions
48// ====================================================================================================================
49Void         initROM();
50Void         destroyROM();
51// ====================================================================================================================
52// Data structure related table & variable
53// ====================================================================================================================
54// flexible conversion from relative to absolute index
55extern       UInt   g_auiZscanToRaster[ MAX_NUM_PART_IDXS_IN_CTU_WIDTH*MAX_NUM_PART_IDXS_IN_CTU_WIDTH ];
56extern       UInt   g_auiRasterToZscan[ MAX_NUM_PART_IDXS_IN_CTU_WIDTH*MAX_NUM_PART_IDXS_IN_CTU_WIDTH ];
57extern       UInt*  g_scanOrder[SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][ MAX_CU_DEPTH ][ MAX_CU_DEPTH ];
58Void         initZscanToRaster ( Int iMaxDepth, Int iDepth, UInt uiStartVal, UInt*& rpuiCurrIdx );
59Void         initRasterToZscan ( UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxDepth         );
60// conversion of partition index to picture pel position
61extern       UInt   g_auiRasterToPelX[ MAX_NUM_PART_IDXS_IN_CTU_WIDTH*MAX_NUM_PART_IDXS_IN_CTU_WIDTH ];
62extern       UInt   g_auiRasterToPelY[ MAX_NUM_PART_IDXS_IN_CTU_WIDTH*MAX_NUM_PART_IDXS_IN_CTU_WIDTH ];
63Void         initRasterToPelXY ( UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxDepth );
64extern const UInt g_auiPUOffset[NUMBER_OF_PART_SIZES];
65extern const Int g_quantScales[SCALING_LIST_REM_NUM];             // Q(QP%6)
66extern const Int g_invQuantScales[SCALING_LIST_REM_NUM];          // IQ(QP%6)
67#if RExt__HIGH_PRECISION_FORWARD_TRANSFORM
68static const Int g_transformMatrixShift[TRANSFORM_NUMBER_OF_DIRECTIONS] = { 14, 6 };
69#else
70static const Int g_transformMatrixShift[TRANSFORM_NUMBER_OF_DIRECTIONS] = {  6, 6 };
71#endif
72extern const TMatrixCoeff g_aiT4 [TRANSFORM_NUMBER_OF_DIRECTIONS][4][4];
73extern const TMatrixCoeff g_aiT8 [TRANSFORM_NUMBER_OF_DIRECTIONS][8][8];
74extern const TMatrixCoeff g_aiT16[TRANSFORM_NUMBER_OF_DIRECTIONS][16][16];
75extern const TMatrixCoeff g_aiT32[TRANSFORM_NUMBER_OF_DIRECTIONS][32][32];
76// ====================================================================================================================
77// Luma QP to Chroma QP mapping
78// ====================================================================================================================
79static const Int chromaQPMappingTableSize = 58;
80extern const UChar  g_aucChromaScale[NUM_CHROMA_FORMAT][chromaQPMappingTableSize];
81// ====================================================================================================================
82// Scanning order & context mapping table
83// ====================================================================================================================
84extern const UInt   ctxIndMap4x4[4*4];
85extern const UInt   g_uiGroupIdx[ MAX_TU_SIZE ];
86extern const UInt   g_uiMinInGroup[ LAST_SIGNIFICANT_GROUPS ];
87// ====================================================================================================================
88// Intra prediction table
89// ====================================================================================================================
90extern const UChar  g_aucIntraModeNumFast_UseMPM[MAX_CU_DEPTH];
91extern const UChar  g_aucIntraModeNumFast_NotUseMPM[MAX_CU_DEPTH];
92extern const UChar  g_chroma422IntraAngleMappingTable[NUM_INTRA_MODE];
93
94// ====================================================================================================================
95// Depth coding modes
96// ====================================================================================================================
97#if NH_3D_DMM
98extern const WedgeResolution                                 g_dmmWedgeResolution [6];
99extern const UChar                                           g_dmm1TabIdxBits     [6];
100extern Bool                                                  g_wedgePattern[32*32];
101extern       std::vector< std::vector<TComWedgelet> >        g_dmmWedgeLists;
102extern       std::vector< std::vector<TComWedgeNode> >       g_dmmWedgeNodeLists;
103
104Void initWedgeLists( Bool initNodeList = false );
105Void createWedgeList( UInt uiWidth, UInt uiHeight, std::vector<TComWedgelet> &racWedgeList, std::vector<TComWedgeRef> &racWedgeRefList, WedgeResolution eWedgeRes );
106Void addWedgeletToList( TComWedgelet cWedgelet, std::vector<TComWedgelet> &racWedgeList, std::vector<TComWedgeRef> &racWedgeRefList );
107
108WedgeList*     getWedgeListScaled    ( UInt blkSize );
109WedgeNodeList* getWedgeNodeListScaled( UInt blkSize );
110
111__inline Void mapDmmToIntraDir( UInt& intraMode ) { if( isDmmMode( intraMode ) ) intraMode = DC_IDX; }
112__inline Void mapDmmToIntraDir(  Int& intraMode ) { if( isDmmMode( intraMode ) ) intraMode = DC_IDX; }
113#endif
114// ====================================================================================================================
115// Mode-Dependent DST Matrices
116// ====================================================================================================================
117extern const TMatrixCoeff g_as_DST_MAT_4 [TRANSFORM_NUMBER_OF_DIRECTIONS][4][4];
118#if H_MV_HLS_PTL_LIMITS
119class TComGeneralTierAndLevelLimits
120{
121public:
122  TComGeneralTierAndLevelLimits::TComGeneralTierAndLevelLimits
123  ( Int maxLumaPs, 
124    Int maxCPBMainTier, 
125    Int maxCPBHighTier, 
126    Int maxSliceSegmentsPerPicture, 
127    Int maxTileRows, 
128    Int maxTileCols )
129  : m_maxLumaPs                 ( maxLumaPs                     ),
130    m_maxCPBMainTier            ( maxCPBMainTier                ),
131    m_maxCPBHighTier            ( maxCPBHighTier                ),
132    m_maxSliceSegmentsPerPicture( maxSliceSegmentsPerPicture    ),
133    m_maxTileRows               ( maxTileRows                   ),
134    m_maxTileCols               ( maxTileCols                   );
135  {};
136  Int getMaxLumaPs                 ( ) { return m_maxLumaPs                 ; };
137  Int getMaxCPBMainTier            ( ) { return m_maxCPBMainTier            ; };
138  Int getMaxCPBHighTier            ( ) { return m_maxCPBHighTier            ; };
139  Int getMaxSliceSegmentsPerPicture( ) { return m_maxSliceSegmentsPerPicture; };
140  Int getMaxTileRows               ( ) { return m_maxTileRows               ; };
141  Int getMaxTileCols               ( ) { return m_maxTileCols               ; };
142private:
143  const Int m_maxLumaPs;
144  const Int m_maxCPBMainTier; 
145  const Int m_maxCPBHighTier;
146  const Int m_maxSliceSegmentsPerPicture; 
147  const Int m_maxTileRows; 
148  const Int m_maxTileCols; 
149};
150extern std::map< Level::Name, TComGeneralTierAndLevelLimits > g_generalTierAndLevelLimits;   
151#endif
152// ====================================================================================================================
153// Misc.
154// ====================================================================================================================
155extern       Char   g_aucConvertToBit  [ MAX_CU_SIZE+1 ];   // from width to log2(width)-2
156#if NH_MV
157// Change later
158#ifndef ENC_DEC_TRACE
159#define ENC_DEC_TRACE 0
160#endif
161#endif
162#if ENC_DEC_TRACE
163extern FILE*  g_hTrace;
164extern Bool   g_bJustDoIt;
165extern const Bool g_bEncDecTraceEnable;
166extern const Bool g_bEncDecTraceDisable;
167extern Bool   g_HLSTraceEnable;
168extern UInt64 g_nSymbolCounter;
169#define COUNTER_START    1
170#define COUNTER_END      0 //( UInt64(1) << 63 )
171#define DTRACE_CABAC_F(x)     if ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) fprintf( g_hTrace, "%f", x );
172#define DTRACE_CABAC_V(x)     if ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) fprintf( g_hTrace, "%d", x );
173#define DTRACE_CABAC_VL(x)    if ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) fprintf( g_hTrace, "%lld", x );
174#define DTRACE_CABAC_T(x)     if ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) fprintf( g_hTrace, "%s", x );
175#define DTRACE_CABAC_X(x)     if ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) fprintf( g_hTrace, "%x", x );
176#define DTRACE_CABAC_R( x,y ) if ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) fprintf( g_hTrace, x,    y );
177#define DTRACE_CABAC_N        if ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) fprintf( g_hTrace, "\n"    );
178#if H_MV_ENC_DEC_TRAC
179 extern Bool   g_traceCU; 
180 extern Bool   g_tracePU ; 
181 extern Bool   g_traceTU; 
182 extern Bool   g_disableHLSTrace;       // USE g_HLSTraceEnable to toggle HLS trace. Not this one!
183 extern Bool   g_disableNumbering;      // Don't print numbers to trace file
184 extern UInt64 g_stopAtCounter;         // Counter to set breakpoint.
185 extern Bool   g_traceCopyBack;         // Output samples on copy back 
186 extern Bool   g_decTraceDispDer;       // Trace derived disparity vectors (decoder only)
187 extern Bool   g_decTraceMvFromMerge;   // Trace motion vectors obtained from merge (decoder only)
188 extern Bool   g_decTracePicOutput;     // Trace output of pictures
189 extern Bool   g_stopAtPos;             // Stop at position
190 extern Bool   g_outputPos;             // Output position
191 extern Bool   g_traceCameraParameters; // Trace camera parameters
192 extern Bool   g_encNumberOfWrittenBits;// Trace number of written bits
193#define DTRACE_CU(x,y)             writeToTraceFile( x,y, g_traceCU );
194#define DTRACE_PU(x,y)             writeToTraceFile( x,y, g_tracePU );
195#define DTRACE_TU(x,y)             writeToTraceFile( x,y, g_traceTU );
196#define DTRACE_CU_S(x)             writeToTraceFile( x,   g_traceCU );
197#define DTRACE_PU_S(x)             writeToTraceFile( x,   g_tracePU );
198#define DTRACE_TU_S(x)             writeToTraceFile( x,   g_traceTU );
199 Void           tracePSHeader   ( const Char* psName, Int layerId ); 
200 Void           writeToTraceFile( const Char* symbolName, Int val, Bool doIt );
201 Void           writeToTraceFile( const Char* symbolName, Bool doIt );
202 Void           stopAtPos       ( Int poc, Int layerId, Int cuPelX, Int cuPelY, Int cuWidth, Int cuHeight );           
203#endif
204#else
205#define DTRACE_CABAC_F(x)
206#define DTRACE_CABAC_V(x)
207#define DTRACE_CABAC_VL(x)
208#define DTRACE_CABAC_T(x)
209#define DTRACE_CABAC_X(x)
210#define DTRACE_CABAC_R( x,y )
211#define DTRACE_CABAC_N
212#if H_MV_ENC_DEC_TRAC
213#define DTRACE_CU(x,y) ;             
214#define DTRACE_PU(x,y) ;           
215#define DTRACE_TU(x,y) ;           
216#define DTRACE_CU_S(x) ;           
217#define DTRACE_PU_S(x) ;           
218#define DTRACE_TU_S(x) ;           
219#endif
220#endif
221const Char* nalUnitTypeToString(NalUnitType type);
222extern const Char *MatrixType[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM];
223extern const Char *MatrixType_DC[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM];
224extern const Int g_quantTSDefault4x4[4*4];
225extern const Int g_quantIntraDefault8x8[8*8];
226extern const Int g_quantInterDefault8x8[8*8];
227extern const UInt g_scalingListSize [SCALING_LIST_SIZE_NUM];
228extern const UInt g_scalingListSizeX[SCALING_LIST_SIZE_NUM];
229//! \}
230#endif  //__TCOMROM__
Note: See TracBrowser for help on using the repository browser.