]> granicus.if.org Git - libvpx/commitdiff
Resolve build issue --enable-aom-qm
authorYaowu Xu <yaowu@google.com>
Tue, 1 Nov 2016 16:32:03 +0000 (09:32 -0700)
committerYaowu Xu <yaowu@google.com>
Tue, 1 Nov 2016 16:32:03 +0000 (09:32 -0700)
Change-Id: I9f52ddb53b39cefd2e0ee7144203e1f3958d01aa

av1/common/quant_common.c
av1/decoder/detokenize.c

index b3228b727db855da99653834a80b263b8c36160c..69d0cc08952cdc1fcafc65e83010d5e9d8faf260 100644 (file)
 #include "av1/common/seg_common.h"
 #include "av1/common/blockd.h"
 
-#if CONFIG_AOM_QM
-static void make_qmatrices(qm_val_t *wmatrix[NUM_QM_LEVELS][2][2][TX_SIZES],
-                           qm_val_t *iwmatrix[NUM_QM_LEVELS][2][2][TX_SIZES]);
-#endif
-
 #if CONFIG_NEW_QUANT
 // Bin widths expressed as a fraction over 128 of the quant stepsize,
 // for the quantization bins 0-4.
index ea1b50cf7c9c93affb7daefc6a4774f54ba65a7d..795b1b0ac2f74eb58a1b52efd2b7d138abff47cf 100644 (file)
@@ -51,7 +51,8 @@ static INLINE int read_coeff(const aom_prob *probs, int n, aom_reader *r) {
 static int decode_coefs(MACROBLOCKD *xd, PLANE_TYPE type, tran_low_t *dqcoeff,
                         TX_SIZE tx_size, TX_TYPE tx_type, const int16_t *dq,
                         int ctx, const int16_t *scan, const int16_t *nb,
-                        aom_reader *r, const qm_val_t *iqm[2][TX_SIZES])
+                        int16_t *max_scan_line, aom_reader *r,
+                        const qm_val_t *iqm[2][TX_SIZES])
 #else
 static int decode_coefs(MACROBLOCKD *xd, PLANE_TYPE type, tran_low_t *dqcoeff,
                         TX_SIZE tx_size, TX_TYPE tx_type, const int16_t *dq,
@@ -343,7 +344,7 @@ int av1_decode_block_tokens(MACROBLOCKD *const xd, int plane,
 #if CONFIG_AOM_QM
   const int eob = decode_coefs(xd, pd->plane_type, pd->dqcoeff, tx_size,
                                tx_type, dequant, ctx, sc->scan, sc->neighbors,
-                               &sc->max_scan_line, r, pd->seg_iqmatrix[seg_id]);
+                               max_scan_line, r, pd->seg_iqmatrix[seg_id]);
 #else
   const int eob =
       decode_coefs(xd, pd->plane_type, pd->dqcoeff, tx_size, tx_type, dequant,