Changes between Initial Version and Version 1 of Ticket #100
- Timestamp:
- 9 Nov 2018, 14:37:48 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #100 – Description
initial v1 2 2 3 3 The code below is used for multi reference line intra prediction MPM generation. To avoid insert duplicated modes in MPM, the red marked code: 4 {{{ 4 5 if (aboveIntraDir > DC_IDX) 6 }}} 5 7 should be changed to: 6 If (aboveIntraDir > DC_IDX && aboveIntraDir != leftIntraDir) 7 8 {{{ 9 if (aboveIntraDir > DC_IDX && aboveIntraDir != leftIntraDir) 10 }}} 8 11 9 12 Code snip below: 10 13 UtilTools.cpp 11 14 Line 333 15 16 {{{ 12 17 int PU::getIntraMPMs() 13 18 { … … 27 32 } 28 33 } 34 }}}