Changeset 1247 in 3DVCSoftware for branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibEncoder
- Timestamp:
- 2 Jun 2015, 15:08:23 (10 years ago)
- Location:
- branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibEncoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibEncoder/TEncCavlc.cpp
r1243 r1247 373 373 { 374 374 #if NH_3D_DLT 375 WRITE_FLAG( pcPPS->getDLT()->getDltPresentFlag() ? 1 : 0, "dlt _present_flag" );375 WRITE_FLAG( pcPPS->getDLT()->getDltPresentFlag() ? 1 : 0, "dlts_present_flag" ); 376 376 377 377 if ( pcPPS->getDLT()->getDltPresentFlag() ) 378 378 { 379 379 WRITE_CODE(pcPPS->getDLT()->getNumDepthViews() - 1, 6, "pps_depth_layers_minus1"); 380 WRITE_CODE((pcPPS->getDLT()->getDepthViewBitDepth() - 8), 4, "pps_bit_depth_for_depth_ views_minus8");380 WRITE_CODE((pcPPS->getDLT()->getDepthViewBitDepth() - 8), 4, "pps_bit_depth_for_depth_layers_minus8"); 381 381 382 382 for( Int i = 0; i <= pcPPS->getDLT()->getNumDepthViews(); i++ ) … … 384 384 Int layerId = pcPPS->getDLT()->getDepthIdxToLayerId(i); 385 385 386 WRITE_FLAG( pcPPS->getDLT()->getUseDLTFlag( layerId ) ? 1 : 0, "dlt_flag[ layerId]" );386 WRITE_FLAG( pcPPS->getDLT()->getUseDLTFlag( layerId ) ? 1 : 0, "dlt_flag[i]" ); 387 387 388 388 if ( pcPPS->getDLT()->getUseDLTFlag( layerId ) ) … … 392 392 393 393 // ----------------------------- Actual coding ----------------------------- 394 WRITE_FLAG( pcPPS->getDLT()->getInterViewDltPredEnableFlag( layerId ) ? 1 : 0, " inter_view_dlt_pred_enable_flag[ layerId]");394 WRITE_FLAG( pcPPS->getDLT()->getInterViewDltPredEnableFlag( layerId ) ? 1 : 0, "dlt_pred_flag[i]"); 395 395 if ( pcPPS->getDLT()->getInterViewDltPredEnableFlag( layerId ) == false ) 396 396 { 397 WRITE_FLAG( pcPPS->getDLT()->getUseBitmapRep( layerId ) ? 1 : 0, "dlt_ bit_map_rep_flag[ layerId]" );397 WRITE_FLAG( pcPPS->getDLT()->getUseBitmapRep( layerId ) ? 1 : 0, "dlt_val_flags_present_flag[i]" ); 398 398 399 399 for( UInt ui = 0; ui<uiNumDepthValues_coded; ui++ ) … … 419 419 if ( d == aiIdx2DepthValue_coded[uiDltArrayIndex] ) 420 420 { 421 WRITE_FLAG(1, "dlt_ bit_map_flag[ layerId ][ j]");421 WRITE_FLAG(1, "dlt_value_flag[i][j]"); 422 422 uiDltArrayIndex++; 423 423 } 424 424 else 425 425 { 426 WRITE_FLAG(0, "dlt_ bit_map_flag[ layerId ][ j]");426 WRITE_FLAG(0, "dlt_value_flag[i][j]"); 427 427 } 428 428 } … … 462 462 } 463 463 464 WRITE_CODE(uiNumDepthValues_coded, 8, "num_ depth_values_in_dlt[layerId]"); // num_entry464 WRITE_CODE(uiNumDepthValues_coded, 8, "num_val_delta_dlt"); // num_entry 465 465 { 466 466 // The condition if( uiNumDepthValues_coded > 0 ) is always true since for Single-view Diff Coding, there is at least one depth value in depth component. 467 467 if ( uiNumDepthValues_coded > 1 ) 468 468 { 469 WRITE_CODE(uiMaxDiff, 8, "max_diff [ layerId ]"); // max_diff469 WRITE_CODE(uiMaxDiff, 8, "max_diff"); // max_diff 470 470 } 471 471 472 472 if ( uiNumDepthValues_coded > 2 ) 473 473 { 474 WRITE_CODE((uiMinDiff - 1), uiLengthMinDiff, "min_diff_minus1 [ layerId ]"); // min_diff_minus1474 WRITE_CODE((uiMinDiff - 1), uiLengthMinDiff, "min_diff_minus1"); // min_diff_minus1 475 475 } 476 476 477 WRITE_CODE(aiIdx2DepthValue_coded[0], 8, "d lt_depth_value0[layerId]"); // entry0477 WRITE_CODE(aiIdx2DepthValue_coded[0], 8, "delta_dlt_val0"); // entry0 478 478 479 479 if (uiMaxDiff > uiMinDiff) … … 481 481 for (UInt d=1; d < uiNumDepthValues_coded; d++) 482 482 { 483 WRITE_CODE( (puiDltDiffValues[d] - uiMinDiff), uiLengthDltDiffMinusMin, "d lt_depth_value_diff_minus_min[ layerId ][ j]"); // entry_value_diff_minus_min[ k ]483 WRITE_CODE( (puiDltDiffValues[d] - uiMinDiff), uiLengthDltDiffMinusMin, "delta_val_diff_minus_min[k]"); // entry_value_diff_minus_min[ k ] 484 484 } 485 485 } -
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibEncoder/TEncSearch.cpp
r1243 r1247 3198 3198 Bool zeroResiTest = (pcCU->getSlice()->getIsDepth() && !pcCU->getSlice()->isIRAP()); 3199 3199 #if NH_3D_SDC_INTRA 3200 zeroResiTest |=pcCU->getSDCFlag(uiPartOffset);3200 zeroResiTest = zeroResiTest || pcCU->getSDCFlag(uiPartOffset); 3201 3201 if( uiSDC != 0 && iSDCDeltaResi != 0 ) 3202 3202 { … … 3204 3204 } 3205 3205 #endif 3206 for( UInt zeroResi = 0; zeroResi <= zeroResiTest?1:0; zeroResi++ )3206 for( UInt zeroResi = 0; zeroResi <= ( zeroResiTest ? 1 : 0 ); zeroResi++ ) 3207 3207 { 3208 3208 #endif
Note: See TracChangeset for help on using the changeset viewer.