函数xPredIntraAng
功能:帧内 - -角度预测、DC预测
着重关注:
1.数组的相互赋值
2.数组的含义
3.指针的位置变化
*/
// Function for deriving the angular Intra predictions
/** Function for deriving the simplified angular intra predictions.
// 重建数组参数
* \param pSrc pointer to reconstructed sample array
* \param srcStride the stride of the reconstructed sample array
// 预测数组参数
* \param rpDst reference to pointer for the prediction sample array
* \param dstStride the stride of the prediction sample array
* \param width the width of the block
* \param height the height of the block
* \param dirMode the intra prediction mode index
* \param blkAboveAvailable boolean indication if the block above is available
* \param blkLeftAvailable boolean indication if the block to the left is availab

本文详细介绍了视频编码中帧内预测的一种实现方式——角度预测。该方法基于预测方向,通过线性插值从参考样本中生成预测样本。文章还探讨了不同预测模式下主参考行的选择、预测值的计算及特殊模式如DC模式的处理。
最低0.47元/天 解锁文章
1324





