Searched refs:pred_func (Results 1 – 3 of 3) sorted by relevance
/external/webp/src/dsp/ |
D | lossless_enc.c | 541 static WEBP_INLINE uint32_t Predict(VP8LPredictorFunc pred_func, in Predict() argument 550 return pred_func(current_row[x - 1], upper_row + x); in Predict() 578 const VP8LPredictorFunc pred_func = VP8LPredictors[mode]; in GetBestPredictorForTile() local 590 Predict(pred_func, col, row, current_row, upper_row); in GetBestPredictorForTile() 630 VP8LPredictorFunc pred_func = in CopyImageWithPrediction() local 644 Predict(pred_func, x, y, current_row, upper_row); in CopyImageWithPrediction() 653 pred_func = VP8LPredictors[mode]; in CopyImageWithPrediction() 655 predict = Predict(pred_func, x, y, current_row, upper_row); in CopyImageWithPrediction()
|
D | lossless.c | 206 VP8LPredictorFunc pred_func; in PredictorInverseTransform() local 213 pred_func = VP8LPredictors[((*pred_mode_src++) >> 8) & 0xf]; in PredictorInverseTransform() 215 const uint32_t pred = pred_func(data[x - 1], data + x - width); in PredictorInverseTransform() 221 pred_func = VP8LPredictors[((*pred_mode_src++) >> 8) & 0xf]; in PredictorInverseTransform() 223 const uint32_t pred = pred_func(data[x - 1], data + x - width); in PredictorInverseTransform()
|
/external/webp/src/dec/ |
D | frame.c | 150 const int pred_func = CheckMode(mb_x, mb_y, block->imodes_[0]); in ReconstructRow() local 151 VP8PredLuma16[pred_func](y_dst); in ReconstructRow() 161 const int pred_func = CheckMode(mb_x, mb_y, block->uvmode_); in ReconstructRow() local 162 VP8PredChroma8[pred_func](u_dst); in ReconstructRow() 163 VP8PredChroma8[pred_func](v_dst); in ReconstructRow()
|