﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
127	Incorrect calculation of adjacent modes in MPM list formation	andrew.dorrell		"In UnitTools.cpp the adjacent angles are being incorrectly calculated for extreme angular modes due to incorrect offset values in the code. Specifically:

    const int offset = (int)NUM_LUMA_MODE - 6;  // incorrect
    const int offset = (int)NUM_LUMA_MODE - 5;  // correct

and in inactive code:

    const int offset = 61;  // incorrect
    const int mod    = 64;  // incorrect

    const int offset = 62;  // correct
    const int mod    = 65;  // correct


"	defect	closed	minor		VTM	VTM-3.0	wontfix	MPM Intra	ksuehring XiangLi fbossen jvet@…
