vpp to report the chroma formats according to what's allowed by vaCreateSurfaces2
Signed-off-by: Daniel Charles <[email protected]> --- src/i965_drv_video.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/i965_drv_video.c b/src/i965_drv_video.c index 3a33356..197066e 100644 --- a/src/i965_drv_video.c +++ b/src/i965_drv_video.c @@ -847,8 +847,11 @@ i965_get_default_chroma_formats(VADriverContextP ctx, VAProfile profile, break; case VAProfileNone: - if(HAS_VPP_P010(i965)) + if(HAS_VPP_P010(i965)) chroma_formats |= VA_RT_FORMAT_YUV420_10BPP; + + if(HAS_VPP(i965)) + chroma_formats |= VA_RT_FORMAT_YUV422 | VA_RT_FORMAT_RGB32; break; case VAProfileVP9Profile0: -- 2.5.5 _______________________________________________ Libva mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libva
