| Index: source/libvpx/vp9/encoder/vp9_quantize.c
|
| diff --git a/source/libvpx/vp9/encoder/vp9_quantize.c b/source/libvpx/vp9/encoder/vp9_quantize.c
|
| index d53d95d294aaa21925e5de5b169744ef48f54b77..cb3e21a562cd69b5aae8110776ee35a638915bd9 100644
|
| --- a/source/libvpx/vp9/encoder/vp9_quantize.c
|
| +++ b/source/libvpx/vp9/encoder/vp9_quantize.c
|
| @@ -199,7 +199,7 @@ void vp9_regular_quantize_b_4x4(MACROBLOCK *x, int plane, int block,
|
|
|
| #if CONFIG_VP9_HIGHBITDEPTH
|
| if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
|
| - vp9_highbd_quantize_b(BLOCK_OFFSET(p->coeff, block),
|
| + vpx_highbd_quantize_b(BLOCK_OFFSET(p->coeff, block),
|
| 16, x->skip_block,
|
| p->zbin, p->round, p->quant, p->quant_shift,
|
| BLOCK_OFFSET(p->qcoeff, block),
|
| @@ -209,7 +209,7 @@ void vp9_regular_quantize_b_4x4(MACROBLOCK *x, int plane, int block,
|
| return;
|
| }
|
| #endif
|
| - vp9_quantize_b(BLOCK_OFFSET(p->coeff, block),
|
| + vpx_quantize_b(BLOCK_OFFSET(p->coeff, block),
|
| 16, x->skip_block,
|
| p->zbin, p->round, p->quant, p->quant_shift,
|
| BLOCK_OFFSET(p->qcoeff, block),
|
|
|