pipe: Add temporal_id to pipe_h26x_enc_dpb_entry

Reviewed-By: Pohsiang (John) Hsu <pohhsu@microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31268>
This commit is contained in:
Sil Vilerino 2024-09-19 11:49:13 -04:00 committed by Marge Bot
parent 80d60acb77
commit 5e22ddacb6

View file

@ -754,6 +754,7 @@ struct pipe_h264_enc_dpb_entry
uint32_t id;
uint32_t frame_idx;
uint32_t pic_order_cnt;
uint32_t temporal_id;
bool is_ltr;
struct pipe_video_buffer *buffer;
};
@ -1155,6 +1156,7 @@ struct pipe_h265_enc_dpb_entry
{
uint32_t id;
uint32_t pic_order_cnt;
uint32_t temporal_id;
bool is_ltr;
struct pipe_video_buffer *buffer;
};