aom: av1_quantize: use optimized aom_quantize_b_helper()

From 0e4de1bf730d63ac4a563afbe8272f3241528dc7 Mon Sep 17 00:00:00 2001
From: James Zern <[EMAIL REDACTED]>
Date: Fri, 14 Jun 2024 13:24:49 -0700
Subject: [PATCH] av1_quantize: use optimized aom_quantize_b_helper()

A NEON version was added in:
5951ee34e9 Add NEON version of few quantize functions

It is used indirectly through aom_quantize_b_32x32_neon() and
aom_quantize_b_64x64_neon() with NULL qm_ptr/iqm_ptr values.

Change-Id: Ie35e61a0ba8cd25460a834f5624de9a97398030b
---
 av1/encoder/av1_quantize.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/av1/encoder/av1_quantize.c b/av1/encoder/av1_quantize.c
index 382d07c5b..de17a2832 100644
--- a/av1/encoder/av1_quantize.c
+++ b/av1/encoder/av1_quantize.c
@@ -343,10 +343,10 @@ void av1_quantize_b_facade(const tran_low_t *coeff_ptr, intptr_t n_coeffs,
 #endif  // !CONFIG_REALTIME_ONLY
 
   if (qm_ptr != NULL && iqm_ptr != NULL) {
-    aom_quantize_b_helper_c(coeff_ptr, n_coeffs, p->zbin_QTX, p->round_QTX,
-                            p->quant_QTX, p->quant_shift_QTX, qcoeff_ptr,
-                            dqcoeff_ptr, p->dequant_QTX, eob_ptr, sc->scan,
-                            sc->iscan, qm_ptr, iqm_ptr, qparam->log_scale);
+    aom_quantize_b_helper(coeff_ptr, n_coeffs, p->zbin_QTX, p->round_QTX,
+                          p->quant_QTX, p->quant_shift_QTX, qcoeff_ptr,
+                          dqcoeff_ptr, p->dequant_QTX, eob_ptr, sc->scan,
+                          sc->iscan, qm_ptr, iqm_ptr, qparam->log_scale);
   } else {
     switch (qparam->log_scale) {
       case 0: