port ext_quant experiment into research branch
Change-Id: I46db3720e3dd75a8b74615824684f0dfb1d6b6df
diff --git a/av1/decoder/inspection.h b/av1/decoder/inspection.h
index b963f6a..9a17254 100644
--- a/av1/decoder/inspection.h
+++ b/av1/decoder/inspection.h
@@ -72,9 +72,15 @@
int mi_cols;
int tile_mi_rows;
int tile_mi_cols;
+#if CONFIG_EXTQUANT
+ int32_t y_dequant[MAX_SEGMENTS][2];
+ int32_t u_dequant[MAX_SEGMENTS][2];
+ int32_t v_dequant[MAX_SEGMENTS][2];
+#else
int16_t y_dequant[MAX_SEGMENTS][2];
int16_t u_dequant[MAX_SEGMENTS][2];
int16_t v_dequant[MAX_SEGMENTS][2];
+#endif
// TODO(negge): add per frame CDEF data
int delta_q_present_flag;
int delta_q_res;