Changeset 1360 in 3DVCSoftware for branches/HTM-15.2-dev/source/Lib/TLibCommon/TComRom.cpp
- Timestamp:
- 28 Oct 2015, 17:46:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-15.2-dev/source/Lib/TLibCommon/TComRom.cpp
r1321 r1360 47 47 //! \ingroup TLibCommon 48 48 //! \{ 49 const Char* nalUnitTypeToString(NalUnitType type)49 const TChar* nalUnitTypeToString(NalUnitType type) 50 50 { 51 51 switch (type) … … 532 532 // Misc. 533 533 // ==================================================================================================================== 534 Char g_aucConvertToBit [ MAX_CU_SIZE+1 ];534 SChar g_aucConvertToBit [ MAX_CU_SIZE+1 ]; 535 535 #if ENC_DEC_TRACE 536 536 FILE* g_hTrace = NULL; // Set to NULL to open up a file. Set to stdout to use the current output 537 537 const Bool g_bEncDecTraceEnable = true; 538 538 const Bool g_bEncDecTraceDisable = false; 539 Bool g_HLSTraceEnable = false;539 Bool g_HLSTraceEnable = true; 540 540 Bool g_bJustDoIt = false; 541 541 UInt64 g_nSymbolCounter = 0; … … 582 582 const UInt g_uiMinInGroup[ LAST_SIGNIFICANT_GROUPS ] = {0,1,2,3,4,6,8,12,16,24}; 583 583 const 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] =584 const TChar *MatrixType[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM] = 585 585 { 586 586 { … … 617 617 }, 618 618 }; 619 const Char *MatrixType_DC[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM] =619 const TChar *MatrixType_DC[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM] = 620 620 { 621 621 { … … 673 673 #if H_MV_ENC_DEC_TRAC 674 674 #if ENC_DEC_TRACE 675 Void tracePSHeader( const Char* psName, Int layerId )675 Void tracePSHeader( const TChar* psName, Int layerId ) 676 676 { 677 677 if ( !g_disableHLSTrace ) … … 727 727 } 728 728 } 729 Void writeToTraceFile( const Char* symbolName, Int val, Bool doIt )729 Void writeToTraceFile( const TChar* symbolName, Int val, Bool doIt ) 730 730 { 731 731 if ( ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) && doIt ) … … 749 749 return g_nSymbolCounter; 750 750 } 751 Void writeToTraceFile( const Char* symbolName, Bool doIt )751 Void writeToTraceFile( const TChar* symbolName, Bool doIt ) 752 752 { 753 753 if ( ( ( g_nSymbolCounter >= COUNTER_START && g_nSymbolCounter <= COUNTER_END )|| g_bJustDoIt ) && doIt )
Note: See TracChangeset for help on using the changeset viewer.