Changeset 655 in 3DVCSoftware for trunk/source/Lib/TLibCommon/TComPic.cpp
- Timestamp:
- 23 Oct 2013, 23:01:30 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibCommon/TComPic.cpp
r608 r655 50 50 , m_bUsedByCurr (false) 51 51 , m_bIsLongTerm (false) 52 , m_bIsUsedAsLongTerm (false)53 52 , m_apcPicSym (NULL) 54 53 , m_pcPicYuvPred (NULL) … … 118 117 memcpy(m_numReorderPics, numReorderPics, MAX_TLAYER*sizeof(Int)); 119 118 119 /* initialize the texture to depth reference status */ 120 #if H_3D_FCO 121 for (int j=0; j<2; j++) 122 { 123 for (int i=0; i<MAX_NUM_REF; i++) 124 { 125 m_aiTexToDepRef[j][i] = -1; 126 } 127 } 128 #endif 129 120 130 return; 121 131 } … … 146 156 deleteSEIs(m_SEIs); 147 157 } 148 #if MTK_SONY_PROGRESSIVE_MV_COMPRESSION_E0170149 Void TComPic::compressMotion( int scale)158 #if H_3D 159 Void TComPic::compressMotion(Int scale) 150 160 #else 151 161 Void TComPic::compressMotion() … … 156 166 { 157 167 TComDataCU* pcCU = pPicSym->getCU(uiCUAddr); 158 #if MTK_SONY_PROGRESSIVE_MV_COMPRESSION_E0170168 #if H_3D 159 169 pcCU->compressMV(scale); 160 170 #else … … 661 671 return numDdvCandPics; 662 672 } 663 #endif 664 #if MTK_NBDV_TN_FIX_E0172 673 665 674 Void TComPic::checkTemporalIVRef() 666 675 { … … 716 725 return m_abTIVRINCurrRL[currCandPic][iColRefDir][iColRefIdx]; 717 726 } 718 #endif 719 #if MTK_TEXTURE_MRGCAND_BUGFIX_E0182 727 720 728 Void TComPic::checkTextureRef( ) 721 729 { 722 730 TComSlice* pcCurrSlice = getSlice(getCurrSliceIdx()); 723 731 TComPic* pcTextPic = pcCurrSlice->getTexturePic(); 732 #if H_3D_FCO 733 if ( pcTextPic ) 734 { 735 #endif 736 724 737 TComSlice* pcTextSlice = pcTextPic->getSlice(0); // currently only support single slice 725 738 … … 743 756 744 757 } 758 #if H_3D_FCO 759 } 760 #endif 761 745 762 } 746 763
Note: See TracChangeset for help on using the changeset viewer.