Changeset 1305 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibEncoder


Ignore:
Timestamp:
21 Jul 2015, 00:37:39 (10 years ago)
Author:
seregin
Message:

port rev 4352

Location:
branches/SHM-dev/source/Lib/TLibEncoder
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncSbac.cpp

    r1291 r1305  
    337337 * \param rParam                  reference to Rice parameter
    338338 * \param useLimitedPrefixLength
    339  * \param channelType             plane type (luma/chroma)
    340  */
    341 Void TEncSbac::xWriteCoefRemainExGolomb ( UInt symbol, UInt &rParam, const Bool useLimitedPrefixLength, const ChannelType channelType, const Int maxLog2TrDynamicRange )
     339 * \param maxLog2TrDynamicRange
     340 */
     341Void TEncSbac::xWriteCoefRemainExGolomb ( UInt symbol, UInt &rParam, const Bool useLimitedPrefixLength, const Int maxLog2TrDynamicRange )
    342342{
    343343  Int codeNumber  = (Int)symbol;
     
    15071507            const UInt escapeCodeValue = absCoeff[idx] - baseLevel;
    15081508
    1509             xWriteCoefRemainExGolomb( escapeCodeValue, uiGoRiceParam, extendedPrecision, channelType, maxLog2TrDynamicRange );
     1509            xWriteCoefRemainExGolomb( escapeCodeValue, uiGoRiceParam, extendedPrecision, maxLog2TrDynamicRange );
    15101510
    15111511            if (absCoeff[idx] > (3 << uiGoRiceParam))
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncSbac.h

    r1291 r1305  
    119119  Void  xWriteUnaryMaxSymbol ( UInt uiSymbol, ContextModel* pcSCModel, Int iOffset, UInt uiMaxSymbol );
    120120  Void  xWriteEpExGolomb     ( UInt uiSymbol, UInt uiCount );
    121   Void  xWriteCoefRemainExGolomb ( UInt symbol, UInt &rParam, const Bool useLimitedPrefixLength, const ChannelType channelType, const Int maxLog2TrDynamicRange );
     121  Void  xWriteCoefRemainExGolomb ( UInt symbol, UInt &rParam, const Bool useLimitedPrefixLength, const Int maxLog2TrDynamicRange );
    122122
    123123  Void  xCopyFrom            ( const TEncSbac* pSrc );
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncSlice.cpp

    r1291 r1305  
    13301330 * \param [out] startCtuTsAddr
    13311331 * \param [out] boundingCtuTsAddr
    1332  * \param [in] pcPic
    1333  * \param encodingSlice Identifies, if the calling function is compressSlice() [false] or encodeSlice() [true]
     1332 * \param [in]  pcPic
    13341333
    13351334 * Updates startCtuTsAddr, boundingCtuTsAddr with appropriate CTU address
Note: See TracChangeset for help on using the changeset viewer.