Changeset 644 in SHVCSoftware for trunk/source/Lib/TLibEncoder/TEncSbac.cpp


Ignore:
Timestamp:
25 Mar 2014, 21:51:30 (11 years ago)
Author:
seregin
Message:

merge with SHM-5.1-dev branch

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/source

  • trunk/source/Lib/TLibEncoder/TEncSbac.cpp

    r595 r644  
    266266}
    267267
     268#if POC_RESET_IDC_SIGNALLING
     269Void  TEncSbac::codeSliceHeaderExtn( TComSlice* pSlice, Int shBitsWrittenTillNow )
     270{
     271  assert (0);
     272  return;
     273}
     274#endif
    268275Void TEncSbac::codeTerminatingBit( UInt uilsLast )
    269276{
     
    15921599}
    15931600
     1601#if SVC_EXTENSION
     1602Void TEncSbac::codeSAOOffsetParam(Int compIdx, SAOOffset& ctbParam, Bool sliceEnabled, UInt* saoMaxOffsetQVal)
     1603#else
    15941604Void TEncSbac::codeSAOOffsetParam(Int compIdx, SAOOffset& ctbParam, Bool sliceEnabled)
     1605#endif
    15951606{
    15961607  UInt uiSymbol;
     
    16391650    for(Int i=0; i< 4; i++)
    16401651    {
     1652#if SVC_EXTENSION
     1653      codeSaoMaxUvlc((offset[i]<0)?(-offset[i]):(offset[i]),  saoMaxOffsetQVal[compIdx] ); //sao_offset_abs
     1654#else
    16411655      codeSaoMaxUvlc((offset[i]<0)?(-offset[i]):(offset[i]),  g_saoMaxOffsetQVal[compIdx] ); //sao_offset_abs
     1656#endif
    16421657    }
    16431658
     
    16691684
    16701685Void TEncSbac::codeSAOBlkParam(SAOBlkParam& saoBlkParam
     1686#if SVC_EXTENSION
     1687                              , UInt* saoMaxOffsetQVal
     1688#endif
    16711689                              , Bool* sliceEnabled
    16721690                              , Bool leftMergeAvail
     
    17001718    for(Int compIdx=0; compIdx < NUM_SAO_COMPONENTS; compIdx++)
    17011719    {
     1720#if SVC_EXTENSION
     1721      codeSAOOffsetParam(compIdx, saoBlkParam[compIdx], sliceEnabled[compIdx], saoMaxOffsetQVal);
     1722#else
    17021723      codeSAOOffsetParam(compIdx, saoBlkParam[compIdx], sliceEnabled[compIdx]);
     1724#endif
    17031725    }
    17041726  }
Note: See TracChangeset for help on using the changeset viewer.