Changes between Initial Version and Version 1 of Ticket #100


Ignore:
Timestamp:
9 Nov 2018, 14:37:48 (5 years ago)
Author:
ksuehring
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #100 – Description

    initial v1  
    22 
    33The code below is used for multi reference line intra prediction MPM generation. To avoid insert duplicated modes in MPM, the red marked code:
     4{{{
    45if (aboveIntraDir > DC_IDX)
     6}}}
    57should be changed to:
    6 If (aboveIntraDir > DC_IDX && aboveIntraDir != leftIntraDir)
    7  
     8{{{
     9if (aboveIntraDir > DC_IDX && aboveIntraDir != leftIntraDir)
     10}}}
    811 
    912Code snip below:
    1013UtilTools.cpp
    1114Line 333
     15
     16{{{
    1217int PU::getIntraMPMs()
    1318{
     
    2732      }
    2833}
     34}}}