Changeset 1114 in 3DVCSoftware for branches/HTM-12.2-dev1-Hisilicon/source/Lib/TLibDecoder
- Timestamp:
- 7 Nov 2014, 17:32:36 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-12.2-dev1-Hisilicon/source/Lib/TLibDecoder/TDecCu.cpp
r1084 r1114 735 735 //construction of depth candidates 736 736 Pel testDepth; 737 #if SINGLE_DEPTH_SIMP_J0115 738 Pel DepthNeighbours[2]; 739 #else 737 740 Pel DepthNeighbours[5]; 741 #endif 738 742 Int index =0; 743 #if SINGLE_DEPTH_SIMP_J0115 744 for( Int i = 0; (i < 2) && (index<SINGLE_DEPTH_MODE_CAND_LIST_SIZE) ; i++ ) 745 #else 739 746 for( Int i = 0; (i < 5) && (index<SINGLE_DEPTH_MODE_CAND_LIST_SIZE) ; i++ ) 747 #endif 740 748 { 741 749 if(!pcCU->getNeighDepth (0, uiAbsPartIdx, &testDepth, i)) … … 745 753 DepthNeighbours[index]=testDepth; 746 754 index++; 755 #if !SINGLE_DEPTH_SIMP_J0115 747 756 for(Int j=0;j<index-1;j++) 748 757 { … … 753 762 } 754 763 } 764 #endif 755 765 } 756 766
Note: See TracChangeset for help on using the changeset viewer.