Changeset 1402 in 3DVCSoftware for branches/HTM-16.1-dev/source/Lib/TLibEncoder/TEncSlice.h
- Timestamp:
- 26 May 2016, 15:03:18 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-16.1-dev/source/Lib/TLibEncoder/TEncSlice.h
r1401 r1402 68 68 // pictures 69 69 TComList<TComPic*>* m_pcListPic; ///< list of pictures 70 TComPicYuv * m_apcPicYuvPred;///< prediction picture buffer71 TComPicYuv * m_apcPicYuvResi;///< residual picture buffer70 TComPicYuv m_picYuvPred; ///< prediction picture buffer 71 TComPicYuv m_picYuvResi; ///< residual picture buffer 72 72 73 73 // processing units … … 95 95 #endif 96 96 Double m_dPicRdCost; ///< picture-level RD cost 97 Double* m_pdRdPicLambda; ///< array of lambda candidates98 Double* m_pdRdPicQp; ///< array of picture QP candidates (double-type for lambda)99 Int* m_piRdPicQp; ///< array of picture QP candidates (Int-type)97 std::vector<Double> m_vdRdPicLambda; ///< array of lambda candidates 98 std::vector<Double> m_vdRdPicQp; ///< array of picture QP candidates (double-type for lambda) 99 std::vector<Int> m_viRdPicQp; ///< array of picture QP candidates (Int-type) 100 100 TEncRateCtrl* m_pcRateCtrl; ///< Rate control manager 101 101 UInt m_uiSliceIdx;
Note: See TracChangeset for help on using the changeset viewer.