source: 3DVCSoftware/trunk/source/Lib/TLibCommon/TComRom.cpp @ 769

Last change on this file since 769 was 738, checked in by tech, 11 years ago

Merged HTM-9.0-dev0@731. (MV-HEVC 6 HLS)

  • Property svn:eol-style set to native
File size: 28.1 KB
RevLine 
[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
[56]4 * granted under this license. 
[5]5 *
[608]6 * Copyright (c) 2010-2013, 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     TComRom.cpp
35    \brief    global variables & functions
36*/
37
38#include "TComRom.h"
39#include <memory.h>
40#include <stdlib.h>
41#include <stdio.h>
42// ====================================================================================================================
43// Initialize / destroy functions
44// ====================================================================================================================
45
[56]46//! \ingroup TLibCommon
47//! \{
48
[2]49// initialize ROM variables
50Void initROM()
51{
52  Int i, c;
53 
54  // g_aucConvertToBit[ x ]: log2(x/4), if x=4 -> 0, x=8 -> 1, x=16 -> 2, ...
55  ::memset( g_aucConvertToBit,   -1, sizeof( g_aucConvertToBit ) );
56  c=0;
[655]57  for ( i=4; i<=MAX_CU_SIZE; i*=2 )
[2]58  {
59    g_aucConvertToBit[ i ] = c;
60    c++;
61  }
62 
63  c=2;
64  for ( i=0; i<MAX_CU_DEPTH; i++ )
65  {
66    g_auiSigLastScan[0][i] = new UInt[ c*c ];
67    g_auiSigLastScan[1][i] = new UInt[ c*c ];
68    g_auiSigLastScan[2][i] = new UInt[ c*c ];
[608]69    initSigLastScan( g_auiSigLastScan[0][i], g_auiSigLastScan[1][i], g_auiSigLastScan[2][i], c, c);
[2]70
71    c <<= 1;
72  } 
73}
74
75Void destroyROM()
76{
[608]77  for (Int i=0; i<MAX_CU_DEPTH; i++ )
[2]78  {
79    delete[] g_auiSigLastScan[0][i];
80    delete[] g_auiSigLastScan[1][i];
81    delete[] g_auiSigLastScan[2][i];
82  }
83
[608]84#if H_3D_DIM_DMM
85  if( !g_dmmWedgeLists.empty() ) 
[2]86  {
[608]87    for( UInt ui = 0; ui < g_dmmWedgeLists.size(); ui++ ) { g_dmmWedgeLists[ui].clear(); }
88    g_dmmWedgeLists.clear();
[2]89  }
[608]90  if( !g_dmmWedgeRefLists.empty() )
[2]91  {
[608]92    for( UInt ui = 0; ui < g_dmmWedgeRefLists.size(); ui++ ) { g_dmmWedgeRefLists[ui].clear(); }
93    g_dmmWedgeRefLists.clear();
[2]94  }
[296]95
[608]96  if( !g_dmmWedgeNodeLists.empty() )
[189]97  {
[608]98    for( UInt ui = 0; ui < g_dmmWedgeNodeLists.size(); ui++ ) { g_dmmWedgeNodeLists[ui].clear(); }
99    g_dmmWedgeNodeLists.clear();
[189]100  }
[2]101#endif
102}
103
104// ====================================================================================================================
105// Data structure related table & variable
106// ====================================================================================================================
107
108UInt g_uiMaxCUWidth  = MAX_CU_SIZE;
109UInt g_uiMaxCUHeight = MAX_CU_SIZE;
110UInt g_uiMaxCUDepth  = MAX_CU_DEPTH;
111UInt g_uiAddCUDepth  = 0;
112UInt g_auiZscanToRaster [ MAX_NUM_SPU_W*MAX_NUM_SPU_W ] = { 0, };
113UInt g_auiRasterToZscan [ MAX_NUM_SPU_W*MAX_NUM_SPU_W ] = { 0, };
114UInt g_auiRasterToPelX  [ MAX_NUM_SPU_W*MAX_NUM_SPU_W ] = { 0, };
115UInt g_auiRasterToPelY  [ MAX_NUM_SPU_W*MAX_NUM_SPU_W ] = { 0, };
116
[56]117UInt g_auiPUOffset[8] = { 0, 8, 4, 4, 2, 10, 1, 5};
[2]118
119Void initZscanToRaster ( Int iMaxDepth, Int iDepth, UInt uiStartVal, UInt*& rpuiCurrIdx )
120{
121  Int iStride = 1 << ( iMaxDepth - 1 );
122 
123  if ( iDepth == iMaxDepth )
124  {
125    rpuiCurrIdx[0] = uiStartVal;
126    rpuiCurrIdx++;
127  }
128  else
129  {
130    Int iStep = iStride >> iDepth;
131    initZscanToRaster( iMaxDepth, iDepth+1, uiStartVal,                     rpuiCurrIdx );
132    initZscanToRaster( iMaxDepth, iDepth+1, uiStartVal+iStep,               rpuiCurrIdx );
133    initZscanToRaster( iMaxDepth, iDepth+1, uiStartVal+iStep*iStride,       rpuiCurrIdx );
134    initZscanToRaster( iMaxDepth, iDepth+1, uiStartVal+iStep*iStride+iStep, rpuiCurrIdx );
135  }
136}
137
138Void initRasterToZscan ( UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxDepth )
139{
140  UInt  uiMinCUWidth  = uiMaxCUWidth  >> ( uiMaxDepth - 1 );
141  UInt  uiMinCUHeight = uiMaxCUHeight >> ( uiMaxDepth - 1 );
142 
143  UInt  uiNumPartInWidth  = (UInt)uiMaxCUWidth  / uiMinCUWidth;
144  UInt  uiNumPartInHeight = (UInt)uiMaxCUHeight / uiMinCUHeight;
145 
146  for ( UInt i = 0; i < uiNumPartInWidth*uiNumPartInHeight; i++ )
147  {
148    g_auiRasterToZscan[ g_auiZscanToRaster[i] ] = i;
149  }
150}
151
152Void initRasterToPelXY ( UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxDepth )
153{
154  UInt    i;
155 
156  UInt* uiTempX = &g_auiRasterToPelX[0];
157  UInt* uiTempY = &g_auiRasterToPelY[0];
158 
159  UInt  uiMinCUWidth  = uiMaxCUWidth  >> ( uiMaxDepth - 1 );
160  UInt  uiMinCUHeight = uiMaxCUHeight >> ( uiMaxDepth - 1 );
161 
162  UInt  uiNumPartInWidth  = uiMaxCUWidth  / uiMinCUWidth;
163  UInt  uiNumPartInHeight = uiMaxCUHeight / uiMinCUHeight;
164 
165  uiTempX[0] = 0; uiTempX++;
166  for ( i = 1; i < uiNumPartInWidth; i++ )
167  {
168    uiTempX[0] = uiTempX[-1] + uiMinCUWidth; uiTempX++;
169  }
170  for ( i = 1; i < uiNumPartInHeight; i++ )
171  {
172    memcpy(uiTempX, uiTempX-uiNumPartInWidth, sizeof(UInt)*uiNumPartInWidth);
173    uiTempX += uiNumPartInWidth;
174  }
175 
176  for ( i = 1; i < uiNumPartInWidth*uiNumPartInHeight; i++ )
177  {
178    uiTempY[i] = ( i / uiNumPartInWidth ) * uiMinCUWidth;
179  }
180};
181
182
[56]183Int g_quantScales[6] =
[2]184{
[56]185  26214,23302,20560,18396,16384,14564
186};   
[2]187
[56]188Int g_invQuantScales[6] =
[2]189{
[56]190  40,45,51,57,64,72
[2]191};
192
[608]193const Short g_aiT4[4][4] =
[2]194{
[56]195  { 64, 64, 64, 64},
196  { 83, 36,-36,-83},
197  { 64,-64,-64, 64},
198  { 36,-83, 83,-36}
[2]199};
200
[608]201const Short g_aiT8[8][8] =
[2]202{
[56]203  { 64, 64, 64, 64, 64, 64, 64, 64},
204  { 89, 75, 50, 18,-18,-50,-75,-89},
205  { 83, 36,-36,-83,-83,-36, 36, 83},
206  { 75,-18,-89,-50, 50, 89, 18,-75},
207  { 64,-64,-64, 64, 64,-64,-64, 64},
208  { 50,-89, 18, 75,-75,-18, 89,-50},
209  { 36,-83, 83,-36,-36, 83,-83, 36},
210  { 18,-50, 75,-89, 89,-75, 50,-18}
[2]211};
212
[608]213const Short g_aiT16[16][16] =
[2]214{
[56]215  { 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64},
216  { 90, 87, 80, 70, 57, 43, 25,  9, -9,-25,-43,-57,-70,-80,-87,-90},
217  { 89, 75, 50, 18,-18,-50,-75,-89,-89,-75,-50,-18, 18, 50, 75, 89},
218  { 87, 57,  9,-43,-80,-90,-70,-25, 25, 70, 90, 80, 43, -9,-57,-87},
219  { 83, 36,-36,-83,-83,-36, 36, 83, 83, 36,-36,-83,-83,-36, 36, 83},
220  { 80,  9,-70,-87,-25, 57, 90, 43,-43,-90,-57, 25, 87, 70, -9,-80},
221  { 75,-18,-89,-50, 50, 89, 18,-75,-75, 18, 89, 50,-50,-89,-18, 75},
222  { 70,-43,-87,  9, 90, 25,-80,-57, 57, 80,-25,-90, -9, 87, 43,-70},
223  { 64,-64,-64, 64, 64,-64,-64, 64, 64,-64,-64, 64, 64,-64,-64, 64},
224  { 57,-80,-25, 90, -9,-87, 43, 70,-70,-43, 87,  9,-90, 25, 80,-57},
225  { 50,-89, 18, 75,-75,-18, 89,-50,-50, 89,-18,-75, 75, 18,-89, 50},
226  { 43,-90, 57, 25,-87, 70,  9,-80, 80, -9,-70, 87,-25,-57, 90,-43},
227  { 36,-83, 83,-36,-36, 83,-83, 36, 36,-83, 83,-36,-36, 83,-83, 36},
228  { 25,-70, 90,-80, 43,  9,-57, 87,-87, 57, -9,-43, 80,-90, 70,-25},
229  { 18,-50, 75,-89, 89,-75, 50,-18,-18, 50,-75, 89,-89, 75,-50, 18},
230  {  9,-25, 43,-57, 70,-80, 87,-90, 90,-87, 80,-70, 57,-43, 25, -9}
[2]231};
232
[608]233const Short g_aiT32[32][32] =
[2]234{
[56]235  { 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64},
236  { 90, 90, 88, 85, 82, 78, 73, 67, 61, 54, 46, 38, 31, 22, 13,  4, -4,-13,-22,-31,-38,-46,-54,-61,-67,-73,-78,-82,-85,-88,-90,-90},
237  { 90, 87, 80, 70, 57, 43, 25,  9, -9,-25,-43,-57,-70,-80,-87,-90,-90,-87,-80,-70,-57,-43,-25, -9,  9, 25, 43, 57, 70, 80, 87, 90},
238  { 90, 82, 67, 46, 22, -4,-31,-54,-73,-85,-90,-88,-78,-61,-38,-13, 13, 38, 61, 78, 88, 90, 85, 73, 54, 31,  4,-22,-46,-67,-82,-90},
239  { 89, 75, 50, 18,-18,-50,-75,-89,-89,-75,-50,-18, 18, 50, 75, 89, 89, 75, 50, 18,-18,-50,-75,-89,-89,-75,-50,-18, 18, 50, 75, 89},
240  { 88, 67, 31,-13,-54,-82,-90,-78,-46, -4, 38, 73, 90, 85, 61, 22,-22,-61,-85,-90,-73,-38,  4, 46, 78, 90, 82, 54, 13,-31,-67,-88},
241  { 87, 57,  9,-43,-80,-90,-70,-25, 25, 70, 90, 80, 43, -9,-57,-87,-87,-57, -9, 43, 80, 90, 70, 25,-25,-70,-90,-80,-43,  9, 57, 87},
242  { 85, 46,-13,-67,-90,-73,-22, 38, 82, 88, 54, -4,-61,-90,-78,-31, 31, 78, 90, 61,  4,-54,-88,-82,-38, 22, 73, 90, 67, 13,-46,-85},
243  { 83, 36,-36,-83,-83,-36, 36, 83, 83, 36,-36,-83,-83,-36, 36, 83, 83, 36,-36,-83,-83,-36, 36, 83, 83, 36,-36,-83,-83,-36, 36, 83},
244  { 82, 22,-54,-90,-61, 13, 78, 85, 31,-46,-90,-67,  4, 73, 88, 38,-38,-88,-73, -4, 67, 90, 46,-31,-85,-78,-13, 61, 90, 54,-22,-82},
245  { 80,  9,-70,-87,-25, 57, 90, 43,-43,-90,-57, 25, 87, 70, -9,-80,-80, -9, 70, 87, 25,-57,-90,-43, 43, 90, 57,-25,-87,-70,  9, 80},
246  { 78, -4,-82,-73, 13, 85, 67,-22,-88,-61, 31, 90, 54,-38,-90,-46, 46, 90, 38,-54,-90,-31, 61, 88, 22,-67,-85,-13, 73, 82,  4,-78},
247  { 75,-18,-89,-50, 50, 89, 18,-75,-75, 18, 89, 50,-50,-89,-18, 75, 75,-18,-89,-50, 50, 89, 18,-75,-75, 18, 89, 50,-50,-89,-18, 75},
248  { 73,-31,-90,-22, 78, 67,-38,-90,-13, 82, 61,-46,-88, -4, 85, 54,-54,-85,  4, 88, 46,-61,-82, 13, 90, 38,-67,-78, 22, 90, 31,-73},
249  { 70,-43,-87,  9, 90, 25,-80,-57, 57, 80,-25,-90, -9, 87, 43,-70,-70, 43, 87, -9,-90,-25, 80, 57,-57,-80, 25, 90,  9,-87,-43, 70},
250  { 67,-54,-78, 38, 85,-22,-90,  4, 90, 13,-88,-31, 82, 46,-73,-61, 61, 73,-46,-82, 31, 88,-13,-90, -4, 90, 22,-85,-38, 78, 54,-67},
251  { 64,-64,-64, 64, 64,-64,-64, 64, 64,-64,-64, 64, 64,-64,-64, 64, 64,-64,-64, 64, 64,-64,-64, 64, 64,-64,-64, 64, 64,-64,-64, 64},
252  { 61,-73,-46, 82, 31,-88,-13, 90, -4,-90, 22, 85,-38,-78, 54, 67,-67,-54, 78, 38,-85,-22, 90,  4,-90, 13, 88,-31,-82, 46, 73,-61},
253  { 57,-80,-25, 90, -9,-87, 43, 70,-70,-43, 87,  9,-90, 25, 80,-57,-57, 80, 25,-90,  9, 87,-43,-70, 70, 43,-87, -9, 90,-25,-80, 57},
254  { 54,-85, -4, 88,-46,-61, 82, 13,-90, 38, 67,-78,-22, 90,-31,-73, 73, 31,-90, 22, 78,-67,-38, 90,-13,-82, 61, 46,-88,  4, 85,-54},
255  { 50,-89, 18, 75,-75,-18, 89,-50,-50, 89,-18,-75, 75, 18,-89, 50, 50,-89, 18, 75,-75,-18, 89,-50,-50, 89,-18,-75, 75, 18,-89, 50},
256  { 46,-90, 38, 54,-90, 31, 61,-88, 22, 67,-85, 13, 73,-82,  4, 78,-78, -4, 82,-73,-13, 85,-67,-22, 88,-61,-31, 90,-54,-38, 90,-46},
257  { 43,-90, 57, 25,-87, 70,  9,-80, 80, -9,-70, 87,-25,-57, 90,-43,-43, 90,-57,-25, 87,-70, -9, 80,-80,  9, 70,-87, 25, 57,-90, 43},
258  { 38,-88, 73, -4,-67, 90,-46,-31, 85,-78, 13, 61,-90, 54, 22,-82, 82,-22,-54, 90,-61,-13, 78,-85, 31, 46,-90, 67,  4,-73, 88,-38},
259  { 36,-83, 83,-36,-36, 83,-83, 36, 36,-83, 83,-36,-36, 83,-83, 36, 36,-83, 83,-36,-36, 83,-83, 36, 36,-83, 83,-36,-36, 83,-83, 36},
260  { 31,-78, 90,-61,  4, 54,-88, 82,-38,-22, 73,-90, 67,-13,-46, 85,-85, 46, 13,-67, 90,-73, 22, 38,-82, 88,-54, -4, 61,-90, 78,-31},
261  { 25,-70, 90,-80, 43,  9,-57, 87,-87, 57, -9,-43, 80,-90, 70,-25,-25, 70,-90, 80,-43, -9, 57,-87, 87,-57,  9, 43,-80, 90,-70, 25},
262  { 22,-61, 85,-90, 73,-38, -4, 46,-78, 90,-82, 54,-13,-31, 67,-88, 88,-67, 31, 13,-54, 82,-90, 78,-46,  4, 38,-73, 90,-85, 61,-22},
263  { 18,-50, 75,-89, 89,-75, 50,-18,-18, 50,-75, 89,-89, 75,-50, 18, 18,-50, 75,-89, 89,-75, 50,-18,-18, 50,-75, 89,-89, 75,-50, 18},
264  { 13,-38, 61,-78, 88,-90, 85,-73, 54,-31,  4, 22,-46, 67,-82, 90,-90, 82,-67, 46,-22, -4, 31,-54, 73,-85, 90,-88, 78,-61, 38,-13},
265  {  9,-25, 43,-57, 70,-80, 87,-90, 90,-87, 80,-70, 57,-43, 25, -9, -9, 25,-43, 57,-70, 80,-87, 90,-90, 87,-80, 70,-57, 43,-25,  9},
266  {  4,-13, 22,-31, 38,-46, 54,-61, 67,-73, 78,-82, 85,-88, 90,-90, 90,-90, 88,-85, 82,-78, 73,-67, 61,-54, 46,-38, 31,-22, 13, -4}
[2]267};
268
[608]269const UChar g_aucChromaScale[58]=
[2]270{
[608]271   0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,16,
272  17,18,19,20,21,22,23,24,25,26,27,28,29,29,30,31,32,
273  33,33,34,34,35,35,36,36,37,37,38,39,40,41,42,43,44,
274  45,46,47,48,49,50,51
[2]275};
276
277
278// Mode-Dependent DCT/DST
[608]279const Short g_as_DST_MAT_4 [4][4]=
[2]280{
281  {29,   55,    74,   84},
282  {74,   74,    0 ,  -74},
283  {84,  -29,   -74,   55},
284  {55,  -84,    74,  -29},
285};
[56]286
287
[2]288// ====================================================================================================================
289// ADI
290// ====================================================================================================================
291
292#if FAST_UDI_USE_MPM
[655]293const UChar g_aucIntraModeNumFast[MAX_CU_DEPTH] =
[2]294{
295  3,  //   2x2
296  8,  //   4x4
297  8,  //   8x8
298  3,  //  16x16   
299  3,  //  32x32   
[655]300  3   //  64x64   
[2]301};
302#else // FAST_UDI_USE_MPM
[655]303const UChar g_aucIntraModeNumFast[MAX_CU_DEPTH] =
[2]304{
305  3,  //   2x2
306  9,  //   4x4
307  9,  //   8x8
308  4,  //  16x16   33
309  4,  //  32x32   33
[655]310  5   //  64x64   33
[2]311};
312#endif // FAST_UDI_USE_MPM
313
314// chroma
315
316const UChar g_aucConvertTxtTypeToIdx[4] = { 0, 1, 1, 2 };
317
318
[56]319// ====================================================================================================================
320// Bit-depth
321// ====================================================================================================================
[2]322
[608]323Int  g_bitDepthY = 8;
324Int  g_bitDepthC = 8;
[56]325
326UInt g_uiPCMBitDepthLuma     = 8;    // PCM bit-depth
327UInt g_uiPCMBitDepthChroma   = 8;    // PCM bit-depth
328
329// ====================================================================================================================
[608]330// Depth coding modes
[56]331// ====================================================================================================================
[608]332#if H_3D_DIM_DMM
333const WedgeResolution g_dmmWedgeResolution[6] = 
[2]334{
[608]335  HALF_PEL,    //   4x4
336  HALF_PEL,    //   8x8
337  FULL_PEL,    //  16x16
338  DOUBLE_PEL,  //  32x32
339  DOUBLE_PEL,  //  64x64
340  DOUBLE_PEL   // 128x128
[2]341};
342
[608]343const UChar g_dmm1TabIdxBits[6] =
344{ //2x2   4x4   8x8 16x16 32x32 64x64
345     0,    7,   10,   11,   11,   13 };
[655]346
[608]347const UChar g_dmm3IntraTabIdxBits[6] =
348{ //2x2   4x4   8x8 16x16 32x32 64x64
349     0,    4,    7,    8,    8,    0 };
[296]350
[608]351extern std::vector< std::vector<TComWedgelet> >   g_dmmWedgeLists;
352extern std::vector< std::vector<TComWedgeRef> >   g_dmmWedgeRefLists;
353extern std::vector< std::vector<TComWedgeNode> >  g_dmmWedgeNodeLists;
[2]354#endif
355
356// ====================================================================================================================
[56]357// Misc.
[2]358// ====================================================================================================================
359
360Char  g_aucConvertToBit  [ MAX_CU_SIZE+1 ];
361
362#if ENC_DEC_TRACE
363FILE*  g_hTrace = NULL;
364const Bool g_bEncDecTraceEnable  = true;
365const Bool g_bEncDecTraceDisable = false;
[608]366Bool   g_HLSTraceEnable = true;
[2]367Bool   g_bJustDoIt = false;
368UInt64 g_nSymbolCounter = 0;
[608]369#if H_MV_ENC_DEC_TRAC
370Bool g_traceCU = true; 
371Bool g_tracePU = true; 
372Bool g_traceTU = true; 
373Bool g_disableHLSTrace = false; 
[622]374UInt64 g_stopAtCounter       = 48; 
375Bool g_traceCopyBack         = false; 
376Bool g_decTraceDispDer       = false; 
377Bool g_decTraceMvFromMerge   = false; 
[2]378#endif
[608]379#endif
[2]380// ====================================================================================================================
381// Scanning order & context model mapping
382// ====================================================================================================================
383
384// scanning order table
[608]385UInt* g_auiSigLastScan[ 3 ][ MAX_CU_DEPTH ];
[2]386
[608]387const UInt g_sigLastScan8x8[ 3 ][ 4 ] =
[2]388{
[608]389  {0, 2, 1, 3},
[56]390  {0, 1, 2, 3},
391  {0, 2, 1, 3}
[2]392};
[56]393UInt g_sigLastScanCG32x32[ 64 ];
[2]394
[56]395const UInt g_uiMinInGroup[ 10 ] = {0,1,2,3,4,6,8,12,16,24};
396const UInt g_uiGroupIdx[ 32 ]   = {0,1,2,3,4,4,5,5,6,6,6,6,7,7,7,7,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9};
[2]397
[56]398// Rice parameters for absolute transform levels
399const UInt g_auiGoRiceRange[5] =
400{
401  7, 14, 26, 46, 78
402};
[2]403
[56]404const UInt g_auiGoRicePrefixLen[5] =
405{
406  8, 7, 6, 5, 4
407};
[2]408
[608]409Void initSigLastScan(UInt* pBuffD, UInt* pBuffH, UInt* pBuffV, Int iWidth, Int iHeight)
[56]410{
411  const UInt  uiNumScanPos  = UInt( iWidth * iWidth );
412  UInt        uiNextScanPos = 0;
413
414  if( iWidth < 16 )
415  {
416  UInt* pBuffTemp = pBuffD;
417  if( iWidth == 8 )
418  {
419    pBuffTemp = g_sigLastScanCG32x32;
[2]420  }
[56]421  for( UInt uiScanLine = 0; uiNextScanPos < uiNumScanPos; uiScanLine++ )
422  {
[608]423    Int    iPrimDim  = Int( uiScanLine );
424    Int    iScndDim  = 0;
[56]425    while( iPrimDim >= iWidth )
426    {
427      iScndDim++;
428      iPrimDim--;
429    }
430    while( iPrimDim >= 0 && iScndDim < iWidth )
431    {
432      pBuffTemp[ uiNextScanPos ] = iPrimDim * iWidth + iScndDim ;
433      uiNextScanPos++;
434      iScndDim++;
435      iPrimDim--;
436    }
437  }
438  }
439  if( iWidth > 4 )
440  {
441    UInt uiNumBlkSide = iWidth >> 2;
442    UInt uiNumBlks    = uiNumBlkSide * uiNumBlkSide;
443    UInt log2Blk      = g_aucConvertToBit[ uiNumBlkSide ] + 1;
444
445    for( UInt uiBlk = 0; uiBlk < uiNumBlks; uiBlk++ )
446    {
447      uiNextScanPos   = 0;
448      UInt initBlkPos = g_auiSigLastScan[ SCAN_DIAG ][ log2Blk ][ uiBlk ];
449      if( iWidth == 32 )
450      {
451        initBlkPos = g_sigLastScanCG32x32[ uiBlk ];
452      }
453      UInt offsetY    = initBlkPos / uiNumBlkSide;
454      UInt offsetX    = initBlkPos - offsetY * uiNumBlkSide;
455      UInt offsetD    = 4 * ( offsetX + offsetY * iWidth );
456      UInt offsetScan = 16 * uiBlk;
457      for( UInt uiScanLine = 0; uiNextScanPos < 16; uiScanLine++ )
458      {
[608]459        Int    iPrimDim  = Int( uiScanLine );
460        Int    iScndDim  = 0;
[56]461        while( iPrimDim >= 4 )
462        {
463          iScndDim++;
464          iPrimDim--;
465        }
466        while( iPrimDim >= 0 && iScndDim < 4 )
467        {
468          pBuffD[ uiNextScanPos + offsetScan ] = iPrimDim * iWidth + iScndDim + offsetD;
469          uiNextScanPos++;
470          iScndDim++;
471          iPrimDim--;
472        }
473      }
474    }
475  }
[2]476 
[608]477  UInt uiCnt = 0;
478  if( iWidth > 2 )
479  {
480    UInt numBlkSide = iWidth >> 2;
481    for(Int blkY=0; blkY < numBlkSide; blkY++)
482    {
483      for(Int blkX=0; blkX < numBlkSide; blkX++)
484      {
485        UInt offset    = blkY * 4 * iWidth + blkX * 4;
486        for(Int y=0; y < 4; y++)
487        {
488          for(Int x=0; x < 4; x++)
489          {
490            pBuffH[uiCnt] = y*iWidth + x + offset;
491            uiCnt ++;
492          }
493        }
494      }
495    }
[56]496
[608]497    uiCnt = 0;
498    for(Int blkX=0; blkX < numBlkSide; blkX++)
499    {
500      for(Int blkY=0; blkY < numBlkSide; blkY++)
501      {
502        UInt offset    = blkY * 4 * iWidth + blkX * 4;
503        for(Int x=0; x < 4; x++)
504        {
505          for(Int y=0; y < 4; y++)
506          {
507            pBuffV[uiCnt] = y*iWidth + x + offset;
508            uiCnt ++;
509          }
510        }
511      }
512    }
513  }
514  else
515  {
[56]516  for(Int iY=0; iY < iHeight; iY++)
[2]517  {
[56]518    for(Int iX=0; iX < iWidth; iX++)
[2]519    {
[56]520      pBuffH[uiCnt] = iY*iWidth + iX;
521      uiCnt ++;
[2]522    }
523  }
[56]524
525  uiCnt = 0;
526  for(Int iX=0; iX < iWidth; iX++)
527  {
528    for(Int iY=0; iY < iHeight; iY++)
529    {
530      pBuffV[uiCnt] = iY*iWidth + iX;
531      uiCnt ++;
532    }
533  }   
534  }
[2]535}
536
[608]537Int g_quantTSDefault4x4[16] =
[2]538{
[608]539  16,16,16,16,
540  16,16,16,16,
541  16,16,16,16,
542  16,16,16,16
[2]543};
[56]544
545Int g_quantIntraDefault8x8[64] =
546{
547  16,16,16,16,17,18,21,24,
548  16,16,16,16,17,19,22,25,
549  16,16,17,18,20,22,25,29,
550  16,16,18,21,24,27,31,36,
551  17,17,20,24,30,35,41,47,
552  18,19,22,27,35,44,54,65,
553  21,22,25,31,41,54,70,88,
554  24,25,29,36,47,65,88,115
555};
556
557Int g_quantInterDefault8x8[64] =
558{
559  16,16,16,16,17,18,20,24,
560  16,16,16,17,18,20,24,25,
561  16,16,17,18,20,24,25,28,
562  16,17,18,20,24,25,28,33,
563  17,18,20,24,25,28,33,41,
564  18,20,24,25,28,33,41,54,
565  20,24,25,28,33,41,54,71,
566  24,25,28,33,41,54,71,91
567};
568UInt g_scalingListSize   [4] = {16,64,256,1024}; 
569UInt g_scalingListSizeX  [4] = { 4, 8, 16,  32};
570UInt g_scalingListNum[SCALING_LIST_SIZE_NUM]={6,6,6,2};
571Int  g_eTTable[4] = {0,3,1,2};
[2]572
[608]573#if H_MV_ENC_DEC_TRAC
574#if ENC_DEC_TRACE
[738]575#if H_MV_FIX_TRACE_FILE
576Void writeToTraceFile( const Char* symbolName, Int val, Bool doIt )
577#else
[608]578Void writeToTraceFile( Char* symbolName, Int val, Bool doIt )
[738]579#endif
[608]580{
581  if ( ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) && doIt  ) 
582  {
583    if ( g_stopAtCounter == g_nSymbolCounter )
584    {
585      std::cout << "Break point here." << std::endl; 
586    }
587    fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
588    fprintf( g_hTrace, "%-50s       : %d\n", symbolName, val );     
589    fflush ( g_hTrace );
590    g_nSymbolCounter++; 
591  }
592}
[2]593
[738]594#if H_MV_FIX_TRACE_FILE
595Void writeToTraceFile( const Char* symbolName, Bool doIt )
596#else
[608]597Void writeToTraceFile( Char* symbolName, Bool doIt )
[738]598#endif
[608]599{
600  if ( ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) && doIt  ) 
601  {
602    fprintf( g_hTrace, "%s", symbolName );   
603    fflush ( g_hTrace );
604    g_nSymbolCounter++; 
605  }
606}
607
608#endif
609#endif
610#if H_3D_DIM_DMM
611std::vector< std::vector<TComWedgelet>  > g_dmmWedgeLists;
612std::vector< std::vector<TComWedgeRef>  > g_dmmWedgeRefLists;
613std::vector< std::vector<TComWedgeNode> > g_dmmWedgeNodeLists;
[724]614#if !SEC_DMM3_RBC_F0147
[189]615std::vector< std::vector< std::vector<UInt> > > g_aauiWdgLstM3;
[724]616#endif
[189]617
[622]618Void initWedgeLists( Bool initNodeList )
[2]619{
[608]620  if( !g_dmmWedgeLists.empty() ) return;
621
622  for( UInt ui = g_aucConvertToBit[DIM_MIN_SIZE]; ui < (g_aucConvertToBit[DIM_MAX_SIZE]+1); ui++ )
[2]623  {
[608]624    UInt uiWedgeBlockSize = ((UInt)DIM_MIN_SIZE)<<ui;
[2]625    std::vector<TComWedgelet> acWedgeList;
626    std::vector<TComWedgeRef> acWedgeRefList;
[608]627    createWedgeList( uiWedgeBlockSize, uiWedgeBlockSize, acWedgeList, acWedgeRefList, g_dmmWedgeResolution[ui] );
628    g_dmmWedgeLists.push_back( acWedgeList );
629    g_dmmWedgeRefLists.push_back( acWedgeRefList );
[189]630
[622]631    if( initNodeList )
632    {
[655]633      // create WedgeNodeList
634      std::vector<TComWedgeNode> acWedgeNodeList;
635      for( UInt uiPos = 0; uiPos < acWedgeList.size(); uiPos++ )
[189]636      {
[655]637        if( acWedgeList[uiPos].getIsCoarse() )
638        {
639          TComWedgeNode cWedgeNode;
640          cWedgeNode.setPatternIdx( uiPos );
[189]641
[608]642          UInt uiRefPos = 0;
643          for( Int iOffS = -1; iOffS <= 1; iOffS++ )
[189]644          {
[608]645            for( Int iOffE = -1; iOffE <= 1; iOffE++ )
646            {
647              if( iOffS == 0 && iOffE == 0 ) { continue; }
[189]648
[608]649              Int iSx = (Int)acWedgeList[uiPos].getStartX();
650              Int iSy = (Int)acWedgeList[uiPos].getStartY();
651              Int iEx = (Int)acWedgeList[uiPos].getEndX();
652              Int iEy = (Int)acWedgeList[uiPos].getEndY();
[189]653
[608]654              switch( acWedgeList[uiPos].getOri() )
655              {
656              case( 0 ): { iSx += iOffS; iEy += iOffE; } break;
657              case( 1 ): { iSy += iOffS; iEx -= iOffE; } break;
658              case( 2 ): { iSx -= iOffS; iEy -= iOffE; } break;
659              case( 3 ): { iSy -= iOffS; iEx += iOffE; } break;
660              case( 4 ): { iSx += iOffS; iEx += iOffE; } break;
661              case( 5 ): { iSy += iOffS; iEy += iOffE; } break;
662              default: assert( 0 );
663              }
[189]664
[608]665              for( UInt k = 0; k < acWedgeRefList.size(); k++ )
[189]666              {
[608]667                if( iSx == (Int)acWedgeRefList[k].getStartX() && 
[655]668                  iSy == (Int)acWedgeRefList[k].getStartY() && 
669                  iEx == (Int)acWedgeRefList[k].getEndX()   && 
670                  iEy == (Int)acWedgeRefList[k].getEndY()      )
[189]671                {
[608]672                  if( acWedgeRefList[k].getRefIdx() != cWedgeNode.getPatternIdx() )
673                  {
674                    Bool bNew = true;
675                    for( UInt m = 0; m < uiRefPos; m++ ) { if( acWedgeRefList[k].getRefIdx() == cWedgeNode.getRefineIdx( m ) ) { bNew = false; break; } }
[189]676
[608]677                    if( bNew ) 
678                    {
679                      cWedgeNode.setRefineIdx( acWedgeRefList[k].getRefIdx(), uiRefPos );
680                      uiRefPos++;
681                      break;
682                    }
[189]683                  }
684                }
685              }
686            }
687          }
[655]688          acWedgeNodeList.push_back( cWedgeNode );
[189]689        }
690      }
[655]691      g_dmmWedgeNodeLists.push_back( acWedgeNodeList );
[189]692    }
[2]693  }
694}
695
696Void createWedgeList( UInt uiWidth, UInt uiHeight, std::vector<TComWedgelet> &racWedgeList, std::vector<TComWedgeRef> &racWedgeRefList, WedgeResolution eWedgeRes )
697{
698  assert( uiWidth == uiHeight );
699
[77]700  UChar    uhStartX = 0,    uhStartY = 0,    uhEndX = 0,    uhEndY = 0;
701  Int   iStepStartX = 0, iStepStartY = 0, iStepEndX = 0, iStepEndY = 0;
[56]702
[2]703  UInt uiBlockSize = 0;
704  switch( eWedgeRes )
705  {
706  case( DOUBLE_PEL ): { uiBlockSize = (uiWidth>>1); break; }
707  case(   FULL_PEL ): { uiBlockSize =  uiWidth;     break; }
708  case(   HALF_PEL ): { uiBlockSize = (uiWidth<<1); break; }
709  }
710
711  TComWedgelet cTempWedgelet( uiWidth, uiHeight );
712  for( UInt uiOri = 0; uiOri < 6; uiOri++ )
713  {
714    // init the edge line parameters for each of the 6 wedgelet types
715    switch( uiOri )
716    {
717    case( 0 ): {  uhStartX = 0;               uhStartY = 0;               uhEndX = 0;               uhEndY = 0;               iStepStartX = +1; iStepStartY =  0; iStepEndX =  0; iStepEndY = +1; break; }
718    case( 1 ): {  uhStartX = (uiBlockSize-1); uhStartY = 0;               uhEndX = (uiBlockSize-1); uhEndY = 0;               iStepStartX =  0; iStepStartY = +1; iStepEndX = -1; iStepEndY =  0; break; }
719    case( 2 ): {  uhStartX = (uiBlockSize-1); uhStartY = (uiBlockSize-1); uhEndX = (uiBlockSize-1); uhEndY = (uiBlockSize-1); iStepStartX = -1; iStepStartY =  0; iStepEndX =  0; iStepEndY = -1; break; }
720    case( 3 ): {  uhStartX = 0;               uhStartY = (uiBlockSize-1); uhEndX = 0;               uhEndY = (uiBlockSize-1); iStepStartX =  0; iStepStartY = -1; iStepEndX = +1; iStepEndY =  0; break; }
721    case( 4 ): {  uhStartX = 0;               uhStartY = 0;               uhEndX = 0;               uhEndY = (uiBlockSize-1); iStepStartX = +1; iStepStartY =  0; iStepEndX = +1; iStepEndY =  0; break; }
722    case( 5 ): {  uhStartX = (uiBlockSize-1); uhStartY = 0;               uhEndX = 0;               uhEndY = 0;               iStepStartX =  0; iStepStartY = +1; iStepEndX =  0; iStepEndY = +1; break; }
723    }
724
725    for( Int iK = 0; iK < uiBlockSize; iK++ )
726    {
727      for( Int iL = 0; iL < uiBlockSize; iL++ )
[56]728      {
[189]729        cTempWedgelet.setWedgelet( uhStartX + (iK*iStepStartX) , uhStartY + (iK*iStepStartY), uhEndX + (iL*iStepEndX), uhEndY + (iL*iStepEndY), (UChar)uiOri, eWedgeRes, ((iL%2)==0 && (iK%2)==0) );
[56]730        addWedgeletToList( cTempWedgelet, racWedgeList, racWedgeRefList );
731      }
732    }
733  }
[608]734
[724]735#if !SEC_DMM3_RBC_F0147
[189]736  UInt uiThrSz = DMM3_SIMPLIFY_TR;
737  std::vector< std::vector<UInt> > auiWdgListSz;
738  for( Int idxM=2; idxM<=34 ; idxM++)
739  {
740    std::vector<UInt> auiWdgList;
741    for( Int idxW=0; idxW<racWedgeList.size(); idxW++)
742    {
743      UInt uiAbsDiff = abs(idxM-(Int)racWedgeList[idxW].getAng());
744      if( uiAbsDiff <= uiThrSz )
745      {
746        auiWdgList.push_back(idxW);
747      }
748    }
749    auiWdgListSz.push_back(auiWdgList);
750  }
751  g_aauiWdgLstM3.push_back(auiWdgListSz);
[724]752#endif
[56]753}
[2]754
[56]755Void addWedgeletToList( TComWedgelet cWedgelet, std::vector<TComWedgelet> &racWedgeList, std::vector<TComWedgeRef> &racWedgeRefList )
756{
757  Bool bValid = cWedgelet.checkNotPlain();
758  if( bValid )
759  {
760    for( UInt uiPos = 0; uiPos < racWedgeList.size(); uiPos++ )
761    {
762      if( cWedgelet.checkIdentical( racWedgeList[uiPos].getPattern() ) )
763      {
764        TComWedgeRef cWedgeRef;
765        cWedgeRef.setWedgeRef( cWedgelet.getStartX(), cWedgelet.getStartY(), cWedgelet.getEndX(), cWedgelet.getEndY(), uiPos );
766        racWedgeRefList.push_back( cWedgeRef );
767        bValid = false;
768        return;
[2]769      }
770    }
771  }
[56]772  if( bValid )
773  {
774    for( UInt uiPos = 0; uiPos < racWedgeList.size(); uiPos++ )
775    {
776      if( cWedgelet.checkInvIdentical( racWedgeList[uiPos].getPattern() ) )
777      {
778        TComWedgeRef cWedgeRef;
779        cWedgeRef.setWedgeRef( cWedgelet.getStartX(), cWedgelet.getStartY(), cWedgelet.getEndX(), cWedgelet.getEndY(), uiPos );
780        racWedgeRefList.push_back( cWedgeRef );
781        bValid = false;
782        return;
783      }
784    }
785  }
786  if( bValid )
787  {
[608]788    cWedgelet.findClosestAngle();
[56]789    racWedgeList.push_back( cWedgelet );
790    TComWedgeRef cWedgeRef;
791    cWedgeRef.setWedgeRef( cWedgelet.getStartX(), cWedgelet.getStartY(), cWedgelet.getEndX(), cWedgelet.getEndY(), (UInt)(racWedgeList.size()-1) );
792    racWedgeRefList.push_back( cWedgeRef );
793  }
[2]794}
[608]795#endif //H_3D_DIM_DMM
[56]796
797//! \}
Note: See TracBrowser for help on using the repository browser.