You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix invalid memory access in ScalerFastBoxSampling (pion#513)
[src-px]->[dst-px] of 4x1px to 2x1px scaling was
0->0, 1->1, 2->1, 3->2(out of bounds)
Fix it to be
0->0, 1->0, 2->1, 3->1