Changeset 912 in 3DVCSoftware for branches/HTM-10.2-dev2-MediaTek/source/Lib/TLibDecoder
- Timestamp:
- 13 Apr 2014, 16:01:57 (11 years ago)
- Location:
- branches/HTM-10.2-dev2-MediaTek/source/Lib/TLibDecoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-10.2-dev2-MediaTek/source/Lib/TLibDecoder/TDecCAVLC.cpp
r884 r912 423 423 pcDLT->setDepthViewBitDepth( (uiCode+8) ); 424 424 425 426 425 427 for( Int i = 0; i <= pcVPS->getMaxLayersMinus1(); i++ ) 426 428 { … … 440 442 441 443 READ_FLAG(uiCode, "inter_view_dlt_pred_enable_flag[ i ]"); 444 445 #if MTK_DLT_CODING_FIX_H0091 446 if( uiCode ) 447 { 448 assert( pcDLT->getUseDLTFlag( 1 )); 449 } 450 #endif 451 442 452 pcDLT->setInterViewDltPredEnableFlag( i, (uiCode == 1) ? true : false ); 443 453 -
branches/HTM-10.2-dev2-MediaTek/source/Lib/TLibDecoder/TDecSlice.cpp
r872 r912 221 221 } 222 222 } 223 #if MTK_DLT_CODING_FIX_H0091 224 if( pcSlice->getPPS()->getDLT() != NULL ) 225 { 226 assert( pcSlice->getSPS()->getBitDepthY() == pcSlice->getPPS()->getDLT()->getDepthViewBitDepth() ); 227 } 228 #endif 223 229 for( Int iCUAddr = iStartCUAddr; !uiIsLast && iCUAddr < rpcPic->getNumCUsInFrame(); iCUAddr = rpcPic->getPicSym()->xCalculateNxtCUAddr(iCUAddr) ) 224 230 {
Note: See TracChangeset for help on using the changeset viewer.