Changeset 1402 in 3DVCSoftware for branches/HTM-16.1-dev/source/Lib/TLibEncoder/TEncRateCtrl.h
- Timestamp:
- 26 May 2016, 15:03:18 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-16.1-dev/source/Lib/TLibEncoder/TEncRateCtrl.h
r1401 r1402 267 267 Int xEstPicTargetBits( TEncRCSeq* encRCSeq, TEncRCGOP* encRCGOP ); 268 268 Int xEstPicHeaderBits( list<TEncRCPic*>& listPreviousPictures, Int frameLevel ); 269 #if V0078_ADAPTIVE_LOWER_BOUND 270 Int xEstPicLowerBound( TEncRCSeq* encRCSeq, TEncRCGOP* encRCGOP ); 271 #endif 269 272 270 273 public: … … 282 285 Int getBitsCoded() { return m_targetBits - m_estHeaderBits - m_bitsLeft; } 283 286 Int getLCUCoded() { return m_numberOfLCU - m_LCULeft; } 287 #if V0078_ADAPTIVE_LOWER_BOUND 288 Int getLowerBound() { return m_lowerBound; } 289 #endif 284 290 TRCLCU* getLCU() { return m_LCUs; } 285 291 TRCLCU& getLCU( Int LCUIdx ) { return m_LCUs[LCUIdx]; } … … 321 327 Int m_estHeaderBits; 322 328 Int m_estPicQP; 329 #if V0078_ADAPTIVE_LOWER_BOUND 330 Int m_lowerBound; 331 #endif 323 332 Double m_estPicLambda; 324 333
Note: See TracChangeset for help on using the changeset viewer.