Generalize txfm scale in highbd quantizer

Change-Id: I359aa49c09b244e0d44ebd09442e365a3d22556c
This commit is contained in:
Angie Chiang
2016-03-29 15:23:20 -07:00
parent 64413a6ca7
commit c7c40d2329
3 changed files with 103 additions and 60 deletions

View File

@@ -108,6 +108,13 @@ void vp10_highbd_quantize_dc_facade(
tran_low_t *qcoeff_ptr, const MACROBLOCKD_PLANE *pd,
tran_low_t *dqcoeff_ptr, uint16_t *eob_ptr, const scan_order *sc,
const QUANT_PARAM *qparam);
void vp10_highbd_quantize_dc(const tran_low_t *coeff_ptr,
int n_coeffs, int skip_block,
const int16_t *round_ptr, const int16_t quant,
tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
const int16_t dequant_ptr, uint16_t *eob_ptr,
const int log_scale);
#endif // CONFIG_VP9_HIGHBITDEPTH
#ifdef __cplusplus