Opened 4 years ago

Closed 4 years ago

#642 closed defect (invalid)

typo in function xPredIntraPlanar

Reported by: tcmakwai Owned by:
Priority: minor Milestone:
Component: VTM Version:
Keywords: Cc: ksuehring, XiangLi, fbossen, jvet@…

Description

in function xPredIntraPlanar, x, y index of pSrc are wrong
for( int k = 0; k < height + 1; k++ )
{

leftColumn[k] = pSrc.at(k + 1, 1);

}

for leftColumn[k],
it should be leftColumn[k] = pSrc.at(0, k+1) as in VVC6.0

Change history (1)

comment:1 Changed 4 years ago by fbossen

  • Resolution set to invalid
  • Status changed from new to closed

Data structures are different in VTM. VTM uses an Nx2 array instead of an NxN array. This is not a typo.

Note: See TracTickets for help on using tickets.