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:
Rintaro Kuroiwa 2017-03-16 15:45:55 -07:00
parent 8806f78655
commit 15fd745fa7
1 changed files with 0 additions and 5 deletions

View File

@ -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;