Remove a redundant call of av1_init_plane_quantizers()
With aq_mode=VARIANCE_AQ, the av1_init_plane_quantizers() is
called in set_segment_rdmult().
Change-Id: Id2584a0544ee633832b844ba06c137236068c4b9
diff --git a/av1/encoder/encodeframe.c b/av1/encoder/encodeframe.c
index 57f5e33..f57b216 100644
--- a/av1/encoder/encodeframe.c
+++ b/av1/encoder/encodeframe.c
@@ -708,8 +708,6 @@
const int energy =
bsize <= BLOCK_16X16 ? x->mb_energy : av1_block_energy(cpi, x, bsize);
mbmi->segment_id = av1_vaq_segment_id(energy);
- // Re-initialise quantiser
- av1_init_plane_quantizers(cpi, x, mbmi->segment_id);
}
x->rdmult = set_segment_rdmult(cpi, x, mbmi->segment_id);
} else if (aq_mode == COMPLEXITY_AQ) {