Commit d8e55641 authored by Dmitry Kovalev's avatar Dmitry Kovalev
Browse files

Using MB_PREDICTION_MODE enum instead of int.

Change-Id: I652d17f7bff84f75d015f4f39652472e14eb3134
Showing with 2 additions and 2 deletions
...@@ -434,7 +434,7 @@ static void build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref, ...@@ -434,7 +434,7 @@ static void build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref,
} }
void vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in, void vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in,
TX_SIZE tx_size, int mode, TX_SIZE tx_size, MB_PREDICTION_MODE mode,
const uint8_t *ref, int ref_stride, const uint8_t *ref, int ref_stride,
uint8_t *dst, int dst_stride, uint8_t *dst, int dst_stride,
int aoff, int loff, int plane) { int aoff, int loff, int plane) {
......
...@@ -19,7 +19,7 @@ extern "C" { ...@@ -19,7 +19,7 @@ extern "C" {
#endif #endif
void vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in, void vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in,
TX_SIZE tx_size, int mode, TX_SIZE tx_size, MB_PREDICTION_MODE mode,
const uint8_t *ref, int ref_stride, const uint8_t *ref, int ref_stride,
uint8_t *dst, int dst_stride, uint8_t *dst, int dst_stride,
int aoff, int loff, int plane); int aoff, int loff, int plane);
......
Supports Markdown
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