From 5e22ddacb6163a8538266744544ce0e7c6b48769 Mon Sep 17 00:00:00 2001 From: Sil Vilerino Date: Thu, 19 Sep 2024 11:49:13 -0400 Subject: [PATCH] pipe: Add temporal_id to pipe_h26x_enc_dpb_entry Reviewed-By: Pohsiang (John) Hsu Part-of: --- src/gallium/include/pipe/p_video_state.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/include/pipe/p_video_state.h b/src/gallium/include/pipe/p_video_state.h index e2575133a46..05db20a3177 100644 --- a/src/gallium/include/pipe/p_video_state.h +++ b/src/gallium/include/pipe/p_video_state.h @@ -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; };