Changeset 71 in SHVCSoftware for branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder
- Timestamp:
- 8 Mar 2013, 01:22:04 (12 years ago)
- Location:
- branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder/TEncGOP.cpp
r57 r71 514 514 515 515 #if SVC_EXTENSION 516 517 518 519 516 if(m_layerId > 0) 517 { 518 TComList<TComPic*> *cListPic = m_ppcTEncTop[m_layerId-1]->getListPic(); 519 pcSlice->setBaseColPic (*cListPic, m_layerId ); 520 520 #if SVC_UPSAMPLING 521 522 523 524 525 526 527 528 529 530 #endif 531 521 if ( pcPic->isSpatialEnhLayer()) 522 { 523 m_pcPredSearch->upsampleBasePic( pcPic->getFullPelBaseRec(), pcSlice->getBaseColPic()->getPicYuvRec(), pcPic->getPicYuvRec() ); 524 } 525 else 526 { 527 pcPic->setFullPelBaseRec( pcSlice->getBaseColPic()->getPicYuvRec() ); 528 } 529 pcSlice->setFullPelBaseRec ( pcPic->getFullPelBaseRec() ); 530 #endif 531 } 532 532 #endif 533 533 -
branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder/TEncTop.cpp
r57 r71 407 407 Void TEncTop::encodePrep( TComPicYuv* pcPicYuvOrg ) 408 408 { 409 if (pcPicYuvOrg) { 409 if (pcPicYuvOrg) 410 { 410 411 // get original YUV 411 412 TComPic* pcPicCurr = NULL; … … 1094 1095 { 1095 1096 for(Int i=0; i<m_iNumRowsMinus1; i++) 1097 { 1096 1098 uiCummulativeRowHeight += m_puiRowHeight[i]; 1099 } 1097 1100 1098 1101 if( uiCummulativeRowHeight >= iHeightInCU )
Note: See TracChangeset for help on using the changeset viewer.