HomeSort by relevance Sort by last modified time
    Searched defs:txfm_param (Results 1 - 4 of 4) sorted by null

  /external/libaom/libaom/av1/common/
idct.c 43 int stride, const TxfmParam *txfm_param) {
44 assert(av1_ext_tx_used[txfm_param->tx_set_type][txfm_param->tx_type]);
45 int eob = txfm_param->eob;
46 int bd = txfm_param->bd;
47 int lossless = txfm_param->lossless;
49 const TX_TYPE tx_type = txfm_param->tx_type;
60 int stride, const TxfmParam *txfm_param) {
61 assert(av1_ext_tx_used[txfm_param->tx_set_type][txfm_param->tx_type])
312 TxfmParam txfm_param; local
    [all...]
  /external/libaom/libaom/aom_dsp/
txfm_common.h 25 typedef struct txfm_param { struct
  /external/libaom/libaom/test/
av1_highbd_iht_test.cc 175 int stride, const TxfmParam *txfm_param);
192 TxfmParam txfm_param; local
213 txfm_param.tx_type = tx_type_;
214 txfm_param.tx_size = tx_size_;
215 txfm_param.lossless = 0;
216 txfm_param.bd = bit_depth_;
217 txfm_param.is_hbd = 1;
218 txfm_param.tx_set_type = EXT_TX_SET_ALL16;
236 txfm_param.eob = eob;
242 stride, &txfm_param);
    [all...]
  /external/libaom/libaom/av1/encoder/
encodemb.c 166 TxfmParam txfm_param; local
167 txfm_param.tx_type = tx_type;
168 txfm_param.tx_size = tx_size;
169 txfm_param.lossless = xd->lossless[mbmi->segment_id];
170 txfm_param.tx_set_type = av1_get_ext_tx_set_type(
171 txfm_param.tx_size, is_inter_block(mbmi), cm->reduced_tx_set_used);
173 txfm_param.bd = xd->bd;
174 txfm_param.is_hbd = is_cur_buf_hbd(xd);
176 av1_fwd_txfm(src_diff, coeff, diff_stride, &txfm_param);
181 quant_func_list[xform_quant_idx][txfm_param.is_hbd]
429 TxfmParam txfm_param; local
    [all...]

Completed in 196 milliseconds