Changeset 1247 in 3DVCSoftware for branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder
- Timestamp:
- 2 Jun 2015, 15:08:23 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1243 r1247 501 501 TComDLT* pcDLT = pcPPS->getDLT(); 502 502 503 READ_FLAG(uiCode, "dlt _present_flag");503 READ_FLAG(uiCode, "dlts_present_flag"); 504 504 pcDLT->setDltPresentFlag( (uiCode == 1) ? true : false ); 505 505 … … 509 509 pcDLT->setNumDepthViews( uiCode+1 ); 510 510 511 READ_CODE(4, uiCode, "pps_bit_depth_for_depth_ views_minus8");511 READ_CODE(4, uiCode, "pps_bit_depth_for_depth_layers_minus8"); 512 512 pcDLT->setDepthViewBitDepth( (uiCode+8) ); 513 513 … … 526 526 UInt uiCodeLength = 0; 527 527 528 READ_FLAG(uiCode, " inter_view_dlt_pred_enable_flag[ i]");528 READ_FLAG(uiCode, "dlt_pred_flag[i]"); 529 529 530 530 if( uiCode ) … … 536 536 if ( pcDLT->getInterViewDltPredEnableFlag( layerId ) == false ) 537 537 { 538 READ_FLAG(uiCode, "dlt_ bit_map_rep_flag[ layerId]");538 READ_FLAG(uiCode, "dlt_val_flags_present_flag[i]"); 539 539 bDltBitMapRepFlag = (uiCode == 1) ? true : false; 540 540 } … … 552 552 for (UInt d=0; d<256; d++) 553 553 { 554 READ_FLAG(uiCode, "dlt_ bit_map_flag[ layerId ][ j]");554 READ_FLAG(uiCode, "dlt_value_flag[i][j]"); 555 555 if (uiCode == 1) 556 556 { … … 563 563 else 564 564 { 565 READ_CODE(8, uiNumDepthValues, "num_ depth_values_in_dlt[i]"); // num_entry565 READ_CODE(8, uiNumDepthValues, "num_val_delta_dlt"); // num_entry 566 566 567 567 { … … 570 570 if (uiNumDepthValues > 1) 571 571 { 572 READ_CODE(8, uiCode, "max_diff [ layerId ]");572 READ_CODE(8, uiCode, "max_diff"); 573 573 uiMaxDiff = uiCode; 574 574 } … … 581 581 { 582 582 uiCodeLength = (UInt) gCeilLog2(uiMaxDiff + 1); 583 READ_CODE(uiCodeLength, uiCode, "min_diff_minus1 [ layerId ]");583 READ_CODE(uiCodeLength, uiCode, "min_diff_minus1"); 584 584 uiMinDiff = uiCode + 1; 585 585 } … … 589 589 } 590 590 591 READ_CODE(8, uiCode, "d lt_depth_value0[layerId]"); // entry0591 READ_CODE(8, uiCode, "delta_dlt_val0"); // entry0 592 592 aiIdx2DepthValue[0] = uiCode; 593 593 … … 604 604 for (UInt d=1; d<uiNumDepthValues; d++) 605 605 { 606 READ_CODE(uiCodeLength, uiCode, "d lt_depth_value_diff_minus_min[ layerId ][ j]");606 READ_CODE(uiCodeLength, uiCode, "delta_val_diff_minus_min[k]"); 607 607 aiIdx2DepthValue[d] = aiIdx2DepthValue[d-1] + uiMinDiff + uiCode; 608 608 } … … 648 648 { 649 649 READ_CODE(16, uiCode, "sar_width"); pcVUI->setSarWidth(uiCode); 650 READ_CODE(16, uiCode, "sar_height"); pcVUI->setSarHeight(uiCode);650 READ_CODE(16, uiCode, "sar_height"); pcVUI->setSarHeight(uiCode); 651 651 } 652 652 }
Note: See TracChangeset for help on using the changeset viewer.