Changeset 1260 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon/TComWeightPrediction.cpp
- Timestamp:
- 14 Jul 2015, 03:24:13 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComWeightPrediction.cpp
r1259 r1260 62 62 63 63 64 /** weighted averaging for bi-pred 65 * \param TComYuv* pcYuvSrc0 66 * \param TComYuv* pcYuvSrc1 67 * \param iPartUnitIdx 68 * \param iWidth 69 * \param iHeight 70 * \param WPScalingParam *wp0 71 * \param WPScalingParam *wp1 72 * \param TComYuv* rpcYuvDst 73 * \returns Void 74 */ 64 //! weighted averaging for bi-pred 75 65 Void TComWeightPrediction::addWeightBi( const TComYuv *pcYuvSrc0, 76 66 const TComYuv *pcYuvSrc1, … … 137 127 138 128 139 /** weighted averaging for uni-pred 140 * \param TComYuv* pcYuvSrc0 141 * \param iPartUnitIdx 142 * \param iWidth 143 * \param iHeight 144 * \param WPScalingParam *wp0 145 * \param TComYuv* rpcYuvDst 146 * \returns Void 147 */ 129 //! weighted averaging for uni-pred 148 130 Void TComWeightPrediction::addWeightUni( const TComYuv *const pcYuvSrc0, 149 131 const UInt iPartUnitIdx, … … 200 182 // getWpScaling() 201 183 //======================================================= 202 /** derivation of wp tables 203 * \param TComDataCU* pcCU 204 * \param iRefIdx0 205 * \param iRefIdx1 206 * \param WPScalingParam *&wp0 207 * \param WPScalingParam *&wp1 208 * \param ibdi 209 * \returns Void 210 */ 184 //! derivation of wp tables 211 185 Void TComWeightPrediction::getWpScaling( TComDataCU *const pcCU, 212 186 const Int iRefIdx0, … … 287 261 288 262 289 /** weighted prediction for bi-pred 290 * \param TComDataCU* pcCU 291 * \param TComYuv* pcYuvSrc0 292 * \param TComYuv* pcYuvSrc1 293 * \param iRefIdx0 294 * \param iRefIdx1 295 * \param uiPartIdx 296 * \param iWidth 297 * \param iHeight 298 * \param TComYuv* rpcYuvDst 299 * \returns Void 300 */ 263 //! weighted prediction for bi-pred 301 264 Void TComWeightPrediction::xWeightedPredictionBi( TComDataCU *const pcCU, 302 265 const TComYuv *const pcYuvSrc0, … … 335 298 336 299 337 /** weighted prediction for uni-pred 338 * \param TComDataCU* pcCU 339 * \param TComYuv* pcYuvSrc 340 * \param uiPartAddr 341 * \param iWidth 342 * \param iHeight 343 * \param eRefPicList 344 * \param TComYuv* pcYuvPred 345 * \param iPartIdx 346 * \param iRefIdx 347 * \returns Void 348 */ 300 //! weighted prediction for uni-pred 349 301 Void TComWeightPrediction::xWeightedPredictionUni( TComDataCU *const pcCU, 350 302 const TComYuv *const pcYuvSrc,
Note: See TracChangeset for help on using the changeset viewer.