コード例 #1
0
static uint32_t Predictor5(uint32_t left, const uint32_t* const top) {
  return Average3(&left, top + 0, top + 1);
}
コード例 #2
0
ファイル: lossless_sse2.c プロジェクト: BBLionel/libwebp
static uint32_t Predictor5(uint32_t left, const uint32_t* const top) {
  const uint32_t pred = Average3(left, top[0], top[1]);
  return pred;
}