Skip to content
Snippets Groups Projects
Commit dbe0f5ce authored by Hongtao Wang's avatar Hongtao Wang Committed by Jie Chen
Browse files

Fix: encoder/decoder mismatch related to AH0136

parent 5d7c2cab
No related branches found
No related tags found
1 merge request!669Fix: encoder/decoder mismatch related to AH0136
...@@ -10772,6 +10772,7 @@ void IntraPrediction::predCoLuma(const CompArea &area, const CPelBuf &recoBuf, P ...@@ -10772,6 +10772,7 @@ void IntraPrediction::predCoLuma(const CompArea &area, const CPelBuf &recoBuf, P
} }
   
// padding // padding
pred = predBuf.buf;
// left // left
if (refx < 0) if (refx < 0)
{ {
...@@ -11145,7 +11146,7 @@ void IntraPrediction::predChromaTM(const CompArea &areaCb, const CompArea &areaC ...@@ -11145,7 +11146,7 @@ void IntraPrediction::predChromaTM(const CompArea &areaCb, const CompArea &areaC
#endif #endif
{ {
m_topRefLength = (areaCb.width + line) << 1; m_topRefLength = (areaCb.width + line) << 1;
m_leftRefLength = (areaCb.height + predMode) << 1; m_leftRefLength = (areaCb.height + line) << 1;
xFillTimdReferenceSamples(pu.cs->picture->getRecoBuf(areaCb), m_refBuffer[COMPONENT_Cb][PRED_BUF_UNFILTERED], areaCb, *pu.cu, line, line); xFillTimdReferenceSamples(pu.cs->picture->getRecoBuf(areaCb), m_refBuffer[COMPONENT_Cb][PRED_BUF_UNFILTERED], areaCb, *pu.cu, line, line);
initPredIntraParams(pu, areaCb, *(pu.cs->sps)); initPredIntraParams(pu, areaCb, *(pu.cs->sps));
predTimdIntraAng(COMPONENT_Cb, pu, predMode, predCb.buf, predCb.stride, areaCb.width + line, areaCb.height + line, eTplType, line, line); predTimdIntraAng(COMPONENT_Cb, pu, predMode, predCb.buf, predCb.stride, areaCb.width + line, areaCb.height + line, eTplType, line, line);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment