From a23beb9c4369bb6e258558427f22aa8a9a701c94 Mon Sep 17 00:00:00 2001 From: Thong Thai Date: Tue, 13 Jul 2021 11:55:00 -0400 Subject: [PATCH] gallium: add temporal layers cap enum Determine the number of temporal layers the encoder supports. Used for encoding Scalable Video Coding (SVC) videos. Signed-off-by: Thong Thai Reviewed-by: Boyuan Zhang Part-of: --- src/gallium/include/pipe/p_video_enums.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/include/pipe/p_video_enums.h b/src/gallium/include/pipe/p_video_enums.h index e26f73f..02a3ff8 100644 --- a/src/gallium/include/pipe/p_video_enums.h +++ b/src/gallium/include/pipe/p_video_enums.h @@ -90,6 +90,7 @@ enum pipe_video_cap PIPE_VIDEO_CAP_MAX_LEVEL = 8, PIPE_VIDEO_CAP_STACKED_FRAMES = 9, PIPE_VIDEO_CAP_MAX_MACROBLOCKS = 10, + PIPE_VIDEO_CAP_MAX_TEMPORAL_LAYERS = 11, }; enum pipe_video_entrypoint -- 2.7.4