Changeset 172 in SHVCSoftware for branches/SHM-2.0-dev
- Timestamp:
- 9 May 2013, 20:26:16 (12 years ago)
- Location:
- branches/SHM-2.0-dev/source/Lib/TLibCommon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-2.0-dev/source/Lib/TLibCommon/TComSlice.cpp
r171 r172 124 124 125 125 #if REF_IDX_FRAMEWORK 126 m_ aiNumILRRefIdx = 0;126 m_numILRRefIdx = 0; 127 127 #endif 128 128 #if JCTVC_M0458 … … 185 185 if(layerId) 186 186 { 187 m_ aiNumILRRefIdx= m_pcVPS->getNumDirectRefLayers( layerId );187 m_numILRRefIdx = m_pcVPS->getNumDirectRefLayers( layerId ); 188 188 #if JCTVC_M0458 189 189 m_aiActiveNumILRRefIdx = 1; … … 193 193 else 194 194 { 195 m_ aiNumILRRefIdx= 0;195 m_numILRRefIdx = 0; 196 196 #if JCTVC_M0458 197 197 m_aiActiveNumILRRefIdx = 0; … … 547 547 Int numPocTotalCurr = NumPocStCurr0 + NumPocStCurr1 + NumPocLtCurr + m_aiActiveNumILRRefIdx; 548 548 #else 549 Int numPocTotalCurr = NumPocStCurr0 + NumPocStCurr1 + NumPocLtCurr + m_ aiNumILRRefIdx;549 Int numPocTotalCurr = NumPocStCurr0 + NumPocStCurr1 + NumPocLtCurr + m_numILRRefIdx; 550 550 #endif 551 551 #else … … 597 597 for( i = 0; i < m_aiActiveNumILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++) 598 598 #else 599 for( i = 0; i < m_ aiNumILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)599 for( i = 0; i < m_numILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++) 600 600 #endif 601 601 { … … 625 625 for( i = 0; i < m_aiActiveNumILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++) 626 626 #else 627 for( i = 0; i < m_ aiNumILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)627 for( i = 0; i < m_numILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++) 628 628 #endif 629 629 { … … 699 699 for(Int i = m_aiActiveNumILRRefIdx; i > 0; i-- ) 700 700 #else 701 for(Int i = m_ aiNumILRRefIdx; i > 0; i-- )701 for(Int i = m_numILRRefIdx; i > 0; i-- ) 702 702 #endif 703 703 { … … 729 729 for(Int i = m_aiActiveNumILRRefIdx; i > 0; i-- ) 730 730 #else 731 for(Int i = m_ aiNumILRRefIdx; i > 0; i-- )731 for(Int i = m_numILRRefIdx; i > 0; i-- ) 732 732 #endif 733 733 { … … 756 756 return m_aiActiveNumILRRefIdx; 757 757 #else 758 return m_ aiNumILRRefIdx;758 return m_numILRRefIdx; 759 759 #endif 760 760 #else -
branches/SHM-2.0-dev/source/Lib/TLibCommon/TComSlice.h
r170 r172 1418 1418 Int m_deblockingFilterTcOffsetDiv2; //< tc offset for deblocking filter 1419 1419 #if REF_IDX_FRAMEWORK 1420 Int m_ aiNumILRRefIdx; //< for inter-layer reference picture ser1420 Int m_numILRRefIdx; //< for inter-layer reference picture ser 1421 1421 #endif 1422 1422 #if JCTVC_M0458 … … 1576 1576 Int getDeblockingFilterTcOffsetDiv2() { return m_deblockingFilterTcOffsetDiv2; } 1577 1577 #if REF_IDX_FRAMEWORK 1578 Int getNumILRRefIdx ( ) { return m_ aiNumILRRefIdx; }1579 Void setNumILRRefIdx ( Int i ) { m_aiNumILRRefIdx = i;}1578 Int getNumILRRefIdx ( ) { return m_numILRRefIdx; } 1579 Void setNumILRRefIdx ( Int i ) { m_numILRRefIdx = i; } 1580 1580 #endif 1581 1581 #if JCTVC_M0458
Note: See TracChangeset for help on using the changeset viewer.