Ignore:
Timestamp:
26 May 2016, 15:03:18 (8 years ago)
Author:
tech
Message:

Initial merge of HM-16.9.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-16.1-dev/source/Lib/TLibEncoder/TEncRateCtrl.h

    r1401 r1402  
    267267  Int xEstPicTargetBits( TEncRCSeq* encRCSeq, TEncRCGOP* encRCGOP );
    268268  Int xEstPicHeaderBits( list<TEncRCPic*>& listPreviousPictures, Int frameLevel );
     269#if V0078_ADAPTIVE_LOWER_BOUND
     270  Int xEstPicLowerBound( TEncRCSeq* encRCSeq, TEncRCGOP* encRCGOP );
     271#endif
    269272
    270273public:
     
    282285  Int  getBitsCoded()                                     { return m_targetBits - m_estHeaderBits - m_bitsLeft; }
    283286  Int  getLCUCoded()                                      { return m_numberOfLCU - m_LCULeft; }
     287#if V0078_ADAPTIVE_LOWER_BOUND
     288  Int  getLowerBound()                                    { return m_lowerBound; }
     289#endif
    284290  TRCLCU* getLCU()                                        { return m_LCUs; }
    285291  TRCLCU& getLCU( Int LCUIdx )                            { return m_LCUs[LCUIdx]; }
     
    321327  Int m_estHeaderBits;
    322328  Int m_estPicQP;
     329#if V0078_ADAPTIVE_LOWER_BOUND
     330  Int m_lowerBound;
     331#endif
    323332  Double m_estPicLambda;
    324333
Note: See TracChangeset for help on using the changeset viewer.