Skip to content

Commit

Permalink
Add allow_content_tools and force_intger_mv to AV1 enc
Browse files Browse the repository at this point in the history
Signed-off-by: Hirokazu Honda <[email protected]>
  • Loading branch information
Hirokazu Honda committed Feb 9, 2024
1 parent a438699 commit bc76dcc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion va/va_enc_av1.h
Original file line number Diff line number Diff line change
Expand Up @@ -656,8 +656,12 @@ typedef struct _VAEncPictureParameterBufferAV1 {
* Otherwise disable palette encoding.
*/
uint32_t palette_mode_enable : 1;
/** \brief Corresponds to AV1 syntax element of the same name. */
uint32_t allow_screen_content_tools : 1;
/** \brief Corresponds to AV1 syntax element of the same name. */
uint32_t force_integer_mv : 1;
/** \brief Reserved bytes for future use, must be zero. */
uint32_t reserved : 18;
uint32_t reserved : 16;
} bits;
uint32_t value;
} picture_flags;
Expand Down

0 comments on commit bc76dcc

Please sign in to comment.