Encoder: Fix in signalling direct_8x8_inference_flag in SPS am: 7f1e3b7b07
am: 3f977fc6db
Change-Id: I5b29fee94abad6e67d6fcfc397369e2380155273
This commit is contained in:
commit
7fc983fad7
1 changed files with 8 additions and 1 deletions
|
|
@ -933,7 +933,14 @@ IH264E_ERROR_T ih264e_populate_sps(codec_t *ps_codec, sps_t *ps_sps)
|
|||
}
|
||||
|
||||
/* direct_8x8_inference_flag */
|
||||
ps_sps->i1_direct_8x8_inference_flag = 0;
|
||||
if (ps_sps->u1_level_idc < IH264_LEVEL_30)
|
||||
{
|
||||
ps_sps->i1_direct_8x8_inference_flag = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
ps_sps->i1_direct_8x8_inference_flag = 1;
|
||||
}
|
||||
|
||||
/* cropping params */
|
||||
/*NOTE : Cropping values depend on the chroma format
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue