Fix build for --enable-pvq
commit#f030558 made change in call to av1_xform_quant() that requires
coeff_ctx to be defined always.
Change-Id: Ia169ef7ec55c4600e60db513321dc9beb773ede9
diff --git a/av1/encoder/rdopt.c b/av1/encoder/rdopt.c
index 27db8f6..195f3d3 100644
--- a/av1/encoder/rdopt.c
+++ b/av1/encoder/rdopt.c
@@ -1173,10 +1173,8 @@
MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi;
const AV1_COMMON *cm = &args->cpi->common;
int64_t rd1, rd2, rd;
-#if !CONFIG_PVQ
int coeff_ctx = combine_entropy_contexts(*(args->t_above + blk_col),
*(args->t_left + blk_row));
-#endif
RD_STATS this_rd_stats;
av1_init_rd_stats(&this_rd_stats);