Changeset 838 in 3DVCSoftware for branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon
- Timestamp:
- 8 Feb 2014, 01:07:38 (11 years ago)
- Location:
- branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TComPic.cpp
r837 r838 111 111 memcpy(m_numReorderPics, numReorderPics, MAX_TLAYER*sizeof(Int)); 112 112 113 /* initialize the texture to depth reference status */114 113 #if H_3D_FCO 114 /* initialize the texture to depth reference status */ 115 115 for (int j=0; j<2; j++) 116 116 { -
branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TComPic.h
r837 r838 192 192 Window& getDefDisplayWindow() { return m_defaultDisplayWindow; } 193 193 194 Bool getSAOMergeAvailability(Int currAddr, Int mergeAddr); 194 195 195 196 /* field coding parameters*/ -
branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TComPicSym.cpp
r837 r838 123 123 m_puiInverseCUOrderMap[i] = i; 124 124 } 125 126 m_saoBlkParams = new SAOBlkParam[m_uiNumCUsInFrame]; 125 127 } 126 128 -
branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TComRom.cpp
r837 r838 327 327 UInt g_uiPCMBitDepthChroma = 8; // PCM bit-depth 328 328 329 #if H_3D_DIM_DMM 329 330 // ==================================================================================================================== 330 331 // Depth coding modes 331 332 // ==================================================================================================================== 332 #if H_3D_DIM_DMM333 333 const WedgeResolution g_dmmWedgeResolution[6] = 334 334 { -
branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TComTrQuant.h
r837 r838 150 150 151 151 #if RDOQ_CHROMA_LAMBDA 152 Void setLambdas ( const Double lambdas[3] ) { for (Int component = 0; component < 3; component++) m_lambdas[component] = lambdas[component]; } 152 153 Void setLambda(Double dLambdaLuma, Double dLambdaChroma) { m_dLambdaLuma = dLambdaLuma; m_dLambdaChroma = dLambdaChroma; } 153 154 Void selectLambda(TextType eTType) { m_dLambda = (eTType == TEXT_LUMA) ? m_lambdas[0] : ((eTType == TEXT_CHROMA_U) ? m_lambdas[1] : m_lambdas[2]); } -
branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TypeDef.h
r837 r838 551 551 }; 552 552 553 enum SAOComponentIdx 554 { 555 SAO_Y =0, 556 SAO_Cb, 557 SAO_Cr, 558 NUM_SAO_COMPONENTS 559 }; 553 560 554 561 enum SAOMode //mode
Note: See TracChangeset for help on using the changeset viewer.