Changeset 644 in SHVCSoftware for trunk/source/Lib/TLibEncoder/TEncSbac.cpp
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/SHM-5.1-dev (added) merged: 599-600,602-643
- Property svn:mergeinfo changed
-
trunk/source
- Property svn:mergeinfo changed
/branches/SHM-5.0-dev/source merged: 601 /branches/SHM-5.1-dev/source (added) merged: 600,602-643
- Property svn:mergeinfo changed
-
trunk/source/Lib/TLibEncoder/TEncSbac.cpp
r595 r644 266 266 } 267 267 268 #if POC_RESET_IDC_SIGNALLING 269 Void TEncSbac::codeSliceHeaderExtn( TComSlice* pSlice, Int shBitsWrittenTillNow ) 270 { 271 assert (0); 272 return; 273 } 274 #endif 268 275 Void TEncSbac::codeTerminatingBit( UInt uilsLast ) 269 276 { … … 1592 1599 } 1593 1600 1601 #if SVC_EXTENSION 1602 Void TEncSbac::codeSAOOffsetParam(Int compIdx, SAOOffset& ctbParam, Bool sliceEnabled, UInt* saoMaxOffsetQVal) 1603 #else 1594 1604 Void TEncSbac::codeSAOOffsetParam(Int compIdx, SAOOffset& ctbParam, Bool sliceEnabled) 1605 #endif 1595 1606 { 1596 1607 UInt uiSymbol; … … 1639 1650 for(Int i=0; i< 4; i++) 1640 1651 { 1652 #if SVC_EXTENSION 1653 codeSaoMaxUvlc((offset[i]<0)?(-offset[i]):(offset[i]), saoMaxOffsetQVal[compIdx] ); //sao_offset_abs 1654 #else 1641 1655 codeSaoMaxUvlc((offset[i]<0)?(-offset[i]):(offset[i]), g_saoMaxOffsetQVal[compIdx] ); //sao_offset_abs 1656 #endif 1642 1657 } 1643 1658 … … 1669 1684 1670 1685 Void TEncSbac::codeSAOBlkParam(SAOBlkParam& saoBlkParam 1686 #if SVC_EXTENSION 1687 , UInt* saoMaxOffsetQVal 1688 #endif 1671 1689 , Bool* sliceEnabled 1672 1690 , Bool leftMergeAvail … … 1700 1718 for(Int compIdx=0; compIdx < NUM_SAO_COMPONENTS; compIdx++) 1701 1719 { 1720 #if SVC_EXTENSION 1721 codeSAOOffsetParam(compIdx, saoBlkParam[compIdx], sliceEnabled[compIdx], saoMaxOffsetQVal); 1722 #else 1702 1723 codeSAOOffsetParam(compIdx, saoBlkParam[compIdx], sliceEnabled[compIdx]); 1724 #endif 1703 1725 } 1704 1726 }
Note: See TracChangeset for help on using the changeset viewer.