Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion va/va_dec_av1.h
Original file line number Diff line number Diff line change
Expand Up @@ -621,10 +621,14 @@ typedef struct _VADecPictureParameterBufferAV1 {
*/
VAWarpedMotionParamsAV1 wm[7];

/** \brief corresponds to AV1 spec variable of the same name. */
uint16_t max_frame_width_minus_1;
uint16_t max_frame_height_minus_1;

/**@}*/

/** \brief Reserved bytes for future use, must be zero */
uint32_t va_reserved[VA_PADDING_MEDIUM];
uint32_t va_reserved[VA_PADDING_MEDIUM - 1];
} VADecPictureParameterBufferAV1;


Expand Down
3 changes: 3 additions & 0 deletions va/va_trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -5421,6 +5421,9 @@ static void va_TraceVAPictureParameterBufferAV1(
va_TraceMsg(trace_ctx, "\t\twm[%d].invalid = %d:\n", i, p->wm[i].invalid);
}

va_TraceMsg(trace_ctx, "\tmax_frame_width_minus_1 = %d\n", p->max_frame_width_minus_1);
va_TraceMsg(trace_ctx, "\tmax_frame_height_minus_1 = %d\n", p->max_frame_height_minus_1);

va_TraceMsg(trace_ctx, NULL);

return;
Expand Down