Home
last modified time | relevance | path

Searched refs:w_facts (Results 1 – 2 of 2) sorted by relevance

/external/v4l2_codec2/vda/
Dh264_parser.cc1164 H264WeightingFactors* w_facts) { in ParseWeightingFactors() argument
1169 READ_BOOL_OR_RETURN(&w_facts->luma_weight_flag); in ParseWeightingFactors()
1170 if (w_facts->luma_weight_flag) { in ParseWeightingFactors()
1171 READ_SE_OR_RETURN(&w_facts->luma_weight[i]); in ParseWeightingFactors()
1172 IN_RANGE_OR_RETURN(w_facts->luma_weight[i], -128, 127); in ParseWeightingFactors()
1174 READ_SE_OR_RETURN(&w_facts->luma_offset[i]); in ParseWeightingFactors()
1175 IN_RANGE_OR_RETURN(w_facts->luma_offset[i], -128, 127); in ParseWeightingFactors()
1177 w_facts->luma_weight[i] = def_luma_weight; in ParseWeightingFactors()
1178 w_facts->luma_offset[i] = 0; in ParseWeightingFactors()
1182 READ_BOOL_OR_RETURN(&w_facts->chroma_weight_flag); in ParseWeightingFactors()
[all …]
Dh264_parser.h482 H264WeightingFactors* w_facts);