Ticket #54: 54Patch.patch
File 54Patch.patch, 1.8 KB (added by tung@…, 13 years ago) |
---|
-
TComRom.cpp
73 73 74 74 #if HHI_TRANSFORM_CODING 75 75 // init adaptive scan for sig/last SE coding 76 #if BUGFIX54 77 for ( i = 0; i < MAX_CU_DEPTH+1; i++ ) 78 #else 76 79 for ( i = 0; i < MAX_CU_DEPTH; i++ ) 80 #endif 77 81 { 78 82 const int iBlockSize = 1 << i; 79 83 const UInt uiNumScanPos = UInt( iBlockSize * iBlockSize ); … … 83 87 initSigLastScanPattern( g_auiSigLastScan[ i ][ 0 ], i, false ); 84 88 } 85 89 #endif 90 #endif 86 91 87 92 #if QC_MDDT 88 93 int ipredmode; -
TComRom.h
47 47 // Macros 48 48 // ==================================================================================================================== 49 49 50 #define MAX_CU_DEPTH 7// log2(LCUSize)50 #define MAX_CU_DEPTH 6 // log2(LCUSize) 51 51 #define MAX_CU_SIZE (1<<(MAX_CU_DEPTH)) // maximum allowable size of CU 52 52 #define MIN_PU_SIZE 4 53 53 #define MAX_NUM_SPU_W (MAX_CU_SIZE/MIN_PU_SIZE) // maximum number of SPU in horizontal line -
TypeDef.h
58 58 #define HHI_AMVP_OFF 0 ///< SOPH: Advanced Motion Vector Predictor deactivated [not in TMuC] 59 59 #define HHI_DEBLOCKING_FILTER 0 ///< MW: deblocking filter supporting residual quadtrees 60 60 61 #define BUGFIX54 1 62 61 63 #if ( HHI_RQT_INTRA && !HHI_RQT ) 62 64 #error "HHI_RQT_INTRA can only be equal to 1 if HHI_RQT is equal to 1" 63 65 #endif