From ad06f5b188493253c938e2fb307fbb762db6feee Mon Sep 17 00:00:00 2001 From: Vasiliy Buzoverya Date: Tue, 6 Apr 2021 11:59:52 +0300 Subject: [PATCH] vp9enc: update log2_tile_column description Increase the value range of the log2_tile_column field of VP9 encoding picture parameter buffer structure from [0..5] to [0..6] to align with updates to the underlying SW/HW stack. Signed-off-by: vasiliy.buzoverya@intel.com --- va/va_enc_vp9.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/va/va_enc_vp9.h b/va/va_enc_vp9.h index fce22a471..0539f4db4 100644 --- a/va/va_enc_vp9.h +++ b/va/va_enc_vp9.h @@ -472,7 +472,7 @@ typedef struct _VAEncPictureParameterBufferVP9 /** \brief log2 of number of tile columns * Corresponds to the same VP9 syntax element in frame header. - * value range [0..5] + * value range [0..6] */ uint8_t log2_tile_columns;