From 893797eb32123ede1d2a0c098b39824bda1ec4b1 Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Mon, 15 Apr 2024 15:00:02 -0700 Subject: [PATCH] gallium: add pipe_picture_desc::flush_flags It specifies the flush flags for pipe_video_codec::end_frame. 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 87e573d9f56..688e2800267 100644 --- a/src/gallium/include/pipe/p_video_state.h +++ b/src/gallium/include/pipe/p_video_state.h @@ -191,6 +191,8 @@ struct pipe_picture_desc enum pipe_format input_format; bool input_full_range; enum pipe_format output_format; + /* Flush flags for pipe_video_codec::end_frame */ + unsigned flush_flags; /* A fence used on PIPE_VIDEO_ENTRYPOINT_DECODE/PROCESSING to signal job completion */ struct pipe_fence_handle **fence; };