Changeset 841 in 3DVCSoftware for branches/HTM-10.0rc1-dev0/source/App/TAppDecoder/TAppDecTop.cpp
- Timestamp:
- 8 Feb 2014, 18:03:54 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-10.0rc1-dev0/source/App/TAppDecoder/TAppDecTop.cpp
r840 r841 165 165 Bool firstSlice = true; 166 166 #endif 167 Bool loopFiltered = false;167 Bool loopFiltered = false; 168 168 169 169 while (!!bitstreamFile) … … 297 297 if (bNewPicture || !bitstreamFile || nalu.m_nalUnitType == NAL_UNIT_EOS ) 298 298 { 299 #if H_MV300 assert( decIdxLastPic != -1 );301 // TODO add loop filtered variable here302 m_tDecTop[decIdxLastPic]->endPicDecoding(poc, pcListPic, m_targetDecLayerIdSet );303 #else304 299 if (!loopFiltered || bitstreamFile) 305 300 { 301 #if H_MV 302 assert( decIdxLastPic != -1 ); 303 m_tDecTop[decIdxLastPic]->endPicDecoding(poc, pcListPic, m_targetDecLayerIdSet ); 304 #else 306 305 m_cTDecTop.executeLoopFilters(poc, pcListPic); 306 #endif 307 307 } 308 308 loopFiltered = (nalu.m_nalUnitType == NAL_UNIT_EOS); 309 #endif310 309 } 311 310 #if H_3D
Note: See TracChangeset for help on using the changeset viewer.