Home
last modified time | relevance | path

Searched refs:qmlevel (Results 1 – 3 of 3) sorted by relevance

/external/libaom/libaom/av1/common/
Dquant_common.c239 const qm_val_t *av1_iqmatrix(AV1_COMMON *cm, int qmlevel, int plane, in av1_iqmatrix() argument
241 return &cm->giqmatrix[qmlevel][plane][tx_size][0]; in av1_iqmatrix()
243 const qm_val_t *av1_qmatrix(AV1_COMMON *cm, int qmlevel, int plane, in av1_qmatrix() argument
245 return &cm->gqmatrix[qmlevel][plane][tx_size][0]; in av1_qmatrix()
/external/libaom/libaom/av1/encoder/
Dav1_quantize.c690 int qmlevel = (xd->lossless[segment_id] || cm->using_qmatrix == 0) in av1_init_plane_quantizers() local
702 memcpy(&xd->plane[0].seg_qmatrix[segment_id], cm->gqmatrix[qmlevel][0], in av1_init_plane_quantizers()
703 sizeof(cm->gqmatrix[qmlevel][0])); in av1_init_plane_quantizers()
704 memcpy(&xd->plane[0].seg_iqmatrix[segment_id], cm->giqmatrix[qmlevel][0], in av1_init_plane_quantizers()
705 sizeof(cm->giqmatrix[qmlevel][0])); in av1_init_plane_quantizers()
709 qmlevel = (xd->lossless[segment_id] || cm->using_qmatrix == 0) in av1_init_plane_quantizers()
720 memcpy(&xd->plane[1].seg_qmatrix[segment_id], cm->gqmatrix[qmlevel][1], in av1_init_plane_quantizers()
721 sizeof(cm->gqmatrix[qmlevel][1])); in av1_init_plane_quantizers()
722 memcpy(&xd->plane[1].seg_iqmatrix[segment_id], cm->giqmatrix[qmlevel][1], in av1_init_plane_quantizers()
723 sizeof(cm->giqmatrix[qmlevel][1])); in av1_init_plane_quantizers()
[all …]
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c2283 int qmlevel = (lossless || using_qm == 0) ? NUM_QM_LEVELS - 1 : cm->qm_y; in setup_segmentation_dequant() local
2285 cm->y_iqmatrix[i][j] = av1_iqmatrix(cm, qmlevel, AOM_PLANE_Y, j); in setup_segmentation_dequant()
2287 qmlevel = (lossless || using_qm == 0) ? NUM_QM_LEVELS - 1 : cm->qm_u; in setup_segmentation_dequant()
2289 cm->u_iqmatrix[i][j] = av1_iqmatrix(cm, qmlevel, AOM_PLANE_U, j); in setup_segmentation_dequant()
2291 qmlevel = (lossless || using_qm == 0) ? NUM_QM_LEVELS - 1 : cm->qm_v; in setup_segmentation_dequant()
2293 cm->v_iqmatrix[i][j] = av1_iqmatrix(cm, qmlevel, AOM_PLANE_V, j); in setup_segmentation_dequant()