Module: Mesa Branch: main Commit: 7bce60f8af27cc8ced44d00efcfd67f39de5aade URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7bce60f8af27cc8ced44d00efcfd67f39de5aade
Author: Thong Thai <[email protected]> Date: Thu Apr 13 10:18:13 2023 -0400 gallium/pipe: add min width and min height video cap enums Signed-off-by: Thong Thai <[email protected]> Reviewed-by: Sil Vilerino <[email protected]> Reviewed-by: Ruijing Dong <[email protected]> Reviewed-by: Boyuan Zhang <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22422> --- src/gallium/include/pipe/p_video_enums.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gallium/include/pipe/p_video_enums.h b/src/gallium/include/pipe/p_video_enums.h index d37f7c6f410..a55a79bf299 100644 --- a/src/gallium/include/pipe/p_video_enums.h +++ b/src/gallium/include/pipe/p_video_enums.h @@ -129,6 +129,9 @@ enum pipe_video_cap when it has reached its maximum async depth capacity */ PIPE_VIDEO_CAP_ENC_SUPPORTS_ASYNC_OPERATION = 33, + + PIPE_VIDEO_CAP_MIN_WIDTH = 34, + PIPE_VIDEO_CAP_MIN_HEIGHT = 35 }; /* To be used with PIPE_VIDEO_CAP_VPP_ORIENTATION_MODES and for VPP state*/
