static uint32_t Predictor5(uint32_t left, const uint32_t* const top) { return Average3(&left, top + 0, top + 1); }
static uint32_t Predictor5(uint32_t left, const uint32_t* const top) { const uint32_t pred = Average3(left, top[0], top[1]); return pred; }