Skip to content
Snippets Groups Projects
Commit 8c891c6f authored by Xiang Li's avatar Xiang Li
Browse files

Add comment on the MVd fix

parent bccedd88
Branches fix_mvdcrash
No related tags found
No related merge requests found
Pipeline #320 passed
......@@ -3382,6 +3382,7 @@ void EncCu::xEncodeInterResidual( CodingStructure *&tempCS, CodingStructure *&be
int minEMTMode = 0;
int maxEMTMode = (considerEmtSecondPass?1:0);
// Not allow very big |MVd| to avoid CABAC crash caused by too large MVd. Normally no impact on coding performance.
const int maxMvd = 1 << 15;
const PredictionUnit& pu = *cu->firstPU;
if (!cu->affine)
......
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