Add TODO comments in av1_quantize.c
Change-Id: I6db698fc5f9b57071e363c595cb076f6797b722f
diff --git a/av1/encoder/av1_quantize.c b/av1/encoder/av1_quantize.c
index c1b7bc8..3a46341 100644
--- a/av1/encoder/av1_quantize.c
+++ b/av1/encoder/av1_quantize.c
@@ -453,6 +453,8 @@
switch (qparam->log_scale) {
case 0:
if (n_coeffs < 16) {
+ // TODO(jingning): Need SIMD implementation for smaller block size
+ // quantization.
av1_quantize_fp_c(coeff_ptr, n_coeffs, skip_block, p->zbin, p->round_fp,
p->quant_fp, p->quant_shift, qcoeff_ptr, dqcoeff_ptr,
pd->dequant, eob_ptr, sc->scan, sc->iscan
@@ -731,6 +733,8 @@
#endif // CONFIG_AOM_QM
if (n_coeffs < 16) {
+ // TODO(jingning): Need SIMD implementation for smaller block size
+ // quantization.
av1_highbd_quantize_fp_c(coeff_ptr, n_coeffs, skip_block, p->zbin,
p->round_fp, p->quant_fp, p->quant_shift,
qcoeff_ptr, dqcoeff_ptr, pd->dequant, eob_ptr,