Remove redundant flags in H264SliceHeader
- luma_weight_l0_flag, luma_weight_l1_flag, chroma_weight_l0_flag, chroma_weight_l1_flag were there but not set. - The user should use the values in pred_weight_table_l0 and pred_weight_table_l1 instead which are set. Change-Id: Ic9c44fb113717346938a339faf074daa32d4c2d2
This commit is contained in:
parent
8806f78655
commit
15fd745fa7
|
@ -202,12 +202,7 @@ struct H264SliceHeader {
|
|||
int luma_log2_weight_denom;
|
||||
int chroma_log2_weight_denom;
|
||||
|
||||
bool luma_weight_l0_flag;
|
||||
bool chroma_weight_l0_flag;
|
||||
H264WeightingFactors pred_weight_table_l0;
|
||||
|
||||
bool luma_weight_l1_flag;
|
||||
bool chroma_weight_l1_flag;
|
||||
H264WeightingFactors pred_weight_table_l1;
|
||||
|
||||
bool no_output_of_prior_pics_flag;
|
||||
|
|
Loading…
Reference in New Issue