Home
last modified time | relevance | path

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

/external/v4l2_codec2/vda/
Dh264_parser.cc1074 H264WeightingFactors* w_facts) { in ParseWeightingFactors() argument
1080 READ_BOOL_OR_RETURN(&w_facts->luma_weight_flag); in ParseWeightingFactors()
1081 if (w_facts->luma_weight_flag) { in ParseWeightingFactors()
1082 READ_SE_OR_RETURN(&w_facts->luma_weight[i]); in ParseWeightingFactors()
1083 IN_RANGE_OR_RETURN(w_facts->luma_weight[i], -128, 127); in ParseWeightingFactors()
1085 READ_SE_OR_RETURN(&w_facts->luma_offset[i]); in ParseWeightingFactors()
1086 IN_RANGE_OR_RETURN(w_facts->luma_offset[i], -128, 127); in ParseWeightingFactors()
1088 w_facts->luma_weight[i] = def_luma_weight; in ParseWeightingFactors()
1089 w_facts->luma_offset[i] = 0; in ParseWeightingFactors()
1093 READ_BOOL_OR_RETURN(&w_facts->chroma_weight_flag); in ParseWeightingFactors()
[all …]
Dh264_parser.h476 H264WeightingFactors* w_facts);