From: Alex Converse Date: Thu, 3 Nov 2016 17:27:40 +0000 (-0700) Subject: Use TX_SIZES in intra_high_pred_fn declarations X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86b56742fb1528e2145b2dcbe12fbc9fbf7f4858;p=libvpx Use TX_SIZES in intra_high_pred_fn declarations Change-Id: I078bb5244dbff153bcfab226206540ca6cebdad0 --- diff --git a/av1/common/reconintra.c b/av1/common/reconintra.c index cfd283f8f..5bb232d74 100644 --- a/av1/common/reconintra.c +++ b/av1/common/reconintra.c @@ -317,8 +317,8 @@ static intra_pred_fn dc_pred[2][2][TX_SIZES]; typedef void (*intra_high_pred_fn)(uint16_t *dst, ptrdiff_t stride, const uint16_t *above, const uint16_t *left, int bd); -static intra_high_pred_fn pred_high[INTRA_MODES][4]; -static intra_high_pred_fn dc_pred_high[2][2][4]; +static intra_high_pred_fn pred_high[INTRA_MODES][TX_SIZES]; +static intra_high_pred_fn dc_pred_high[2][2][TX_SIZES]; #endif // CONFIG_AOM_HIGHBITDEPTH static void av1_init_intra_predictors_internal(void) {