Changeset 1223 in 3DVCSoftware for branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder
- Timestamp:
- 21 May 2015, 21:48:53 (10 years ago)
- Location:
- branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder/TDecCu.cpp
r1221 r1223 1275 1275 const UInt uiAbsPartIdxTU = tuRecurseWithPU.GetAbsPartIdxTU(); 1276 1276 1277 Pel* piPredTU = pcPredYuv->getAddr ( COMPONENT_Y, uiAbsPartIdxTU ); 1278 UInt uiStrideTU = pcPredYuv->getStride ( COMPONENT_Y ); 1277 Pel* piPredTU = pcPredYuv->getAddr ( COMPONENT_Y, uiAbsPartIdxTU ); 1278 UInt uiStrideTU = pcPredYuv->getStride( COMPONENT_Y ); 1279 1280 Pel* piRecIPredTU = pcCU->getPic()->getPicYuvRec()->getAddr( COMPONENT_Y, pcCU->getCtuRsAddr(), pcCU->getZorderIdxInCtu() + uiAbsPartIdxTU ); 1281 UInt uiRecIPredStrideTU = pcCU->getPic()->getPicYuvRec()->getStride(COMPONENT_Y); 1282 1283 const Bool bUseFilter = TComPrediction::filteringIntraReferenceSamples(COMPONENT_Y, uiLumaPredMode, puRect.width, puRect.height, chFmt, sps.getSpsRangeExtension().getIntraSmoothingDisabledFlag()); 1279 1284 1280 1285 //===== init pattern for luma prediction ===== … … 1282 1287 Bool bLeftAvail = false; 1283 1288 1284 if (tuRecurseWithPU.ProcessComponentSection(COMPONENT_Y)) 1285 { 1286 m_pcPrediction->initIntraPatternChType( tuRecurseWithPU, bAboveAvail, bLeftAvail, COMPONENT_Y, true DEBUG_STRING_PASS_INTO(sTemp2) ); 1287 } 1289 m_pcPrediction->initIntraPatternChType( tuRecurseWithPU, bAboveAvail, bLeftAvail, COMPONENT_Y, bUseFilter DEBUG_STRING_PASS_INTO(sTemp) ); 1288 1290 1289 const Bool bUseFilter = TComPrediction::filteringIntraReferenceSamples(COMPONENT_Y, uiLumaPredMode, puRect.width, puRect.height, chFmt, sps.getSpsRangeExtension().getIntraSmoothingDisabledFlag());1291 m_pcPrediction->predIntraAng( COMPONENT_Y, uiLumaPredMode, NULL, uiStrideTU, piPredTU, uiStrideTU, tuRecurseWithPU, bAboveAvail, bLeftAvail, bUseFilter ); 1290 1292 1291 m_pcPrediction->predIntraAng( COMPONENT_Y, uiLumaPredMode, NULL, uiStrideTU, piPredTU, uiStrideTU, tuRecurseWithPU, bAboveAvail, bLeftAvail, bUseFilter, TComPrediction::UseDPCMForFirstPassIntraEstimation(tuRecurseWithPU, uiLumaPredMode) ); 1293 // copy for prediction of next part 1294 for( UInt uiY = 0; uiY < puRect.height; uiY++ ) 1295 { 1296 for( UInt uiX = 0; uiX < puRect.width; uiX++ ) 1297 { 1298 piPredTU [ uiX ] = ClipBD( piPredTU[ uiX ], bitDepthY ); 1299 piRecIPredTU [ uiX ] = piPredTU[ uiX ]; 1300 } 1301 piPredTU += uiStrideTU; 1302 piRecIPredTU += uiRecIPredStrideTU; 1303 } 1304 1292 1305 1293 1306 } while (tuRecurseWithPU.nextSection(tuRecurseCU)); -
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder/TDecSbac.cpp
r1221 r1223 2409 2409 } 2410 2410 } 2411 2411 #if H_MV_ENC_DEC_TRAC 2412 2412 DTRACE_CU("delta_dc", rValDeltaDC); 2413 #endif 2413 2414 } 2414 2415 … … 2509 2510 2510 2511 m_pcTDecBinIf->decodeBin( uiSymbol, m_cSDCFlagSCModel.get( 0, 0, 0 ) ); 2512 #if H_MV_ENC_DEC_TRAC 2511 2513 DTRACE_CU("dc_only_flag", uiSymbol) 2514 #endif 2512 2515 if( uiSymbol ) 2513 2516 {
Note: See TracChangeset for help on using the changeset viewer.