Ignore:
Timestamp:
28 Oct 2015, 17:46:00 (9 years ago)
Author:
tech
Message:

Update to HM-16.7.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-15.2-dev/source/Lib/TLibCommon/TComRom.cpp

    r1321 r1360  
    4747//! \ingroup TLibCommon
    4848//! \{
    49 const Char* nalUnitTypeToString(NalUnitType type)
     49const TChar* nalUnitTypeToString(NalUnitType type)
    5050{
    5151  switch (type)
     
    532532// Misc.
    533533// ====================================================================================================================
    534 Char  g_aucConvertToBit  [ MAX_CU_SIZE+1 ];
     534SChar  g_aucConvertToBit  [ MAX_CU_SIZE+1 ];
    535535#if ENC_DEC_TRACE
    536536FILE*  g_hTrace = NULL; // Set to NULL to open up a file. Set to stdout to use the current output
    537537const Bool g_bEncDecTraceEnable  = true;
    538538const Bool g_bEncDecTraceDisable = false;
    539 Bool   g_HLSTraceEnable = false;
     539Bool   g_HLSTraceEnable = true;
    540540Bool   g_bJustDoIt = false;
    541541UInt64 g_nSymbolCounter = 0;
     
    582582const UInt g_uiMinInGroup[ LAST_SIGNIFICANT_GROUPS ] = {0,1,2,3,4,6,8,12,16,24};
    583583const UInt g_uiGroupIdx[ MAX_TU_SIZE ]   = {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};
    584 const Char *MatrixType[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM] =
     584const TChar *MatrixType[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM] =
    585585{
    586586  {
     
    617617  },
    618618};
    619 const Char *MatrixType_DC[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM] =
     619const TChar *MatrixType_DC[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM] =
    620620{
    621621  {
     
    673673#if H_MV_ENC_DEC_TRAC
    674674#if ENC_DEC_TRACE
    675 Void tracePSHeader( const Char* psName, Int layerId )
     675Void tracePSHeader( const TChar* psName, Int layerId )
    676676
    677677  if ( !g_disableHLSTrace  )
     
    727727  } 
    728728}
    729 Void writeToTraceFile( const Char* symbolName, Int val, Bool doIt )
     729Void writeToTraceFile( const TChar* symbolName, Int val, Bool doIt )
    730730{
    731731  if ( ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) && doIt  )
     
    749749  return g_nSymbolCounter;
    750750}
    751 Void writeToTraceFile( const Char* symbolName, Bool doIt )
     751Void writeToTraceFile( const TChar* symbolName, Bool doIt )
    752752{
    753753  if ( ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) && doIt  )
Note: See TracChangeset for help on using the changeset viewer.