Commit cff71493 authored by Antoine Cellerier's avatar Antoine Cellerier

Oops.

parent 6ec82b01
......@@ -307,7 +307,7 @@ static void FilterErase( filter_t *p_filter, picture_t *p_inpic,
prev = next;
}
/* interpolate new value */
p_outpix[x] = prev;// + (x-prev_x)*(next-prev)/(next_x-prev_x);
p_outpix[x] = prev + (x-prev_x)*(next-prev)/(next_x-prev_x);
}
else
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment