frontends/va: Add AV1 profile main to the config

Thus enabling the AV1 support

Signed-off-by: Leo Liu <leo.liu@amd.com>
Reviewed-by: Boyuan Zhang <Boyuan.Zhang@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12307>
This commit is contained in:
Leo Liu
2021-08-07 17:04:20 -04:00
parent 4ce6100215
commit 2ea47f258d
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ vlVaQueryConfigProfiles(VADriverContextP ctx, VAProfile *profile_list, int *num_
*num_profiles = 0;
pscreen = VL_VA_PSCREEN(ctx);
for (p = PIPE_VIDEO_PROFILE_MPEG2_SIMPLE; p <= PIPE_VIDEO_PROFILE_VP9_PROFILE2; ++p) {
for (p = PIPE_VIDEO_PROFILE_MPEG2_SIMPLE; p <= PIPE_VIDEO_PROFILE_AV1_MAIN; ++p) {
if (u_reduce_video_profile(p) == PIPE_VIDEO_FORMAT_MPEG4 && !debug_get_option_mpeg4())
continue;
+4
View File
@@ -182,6 +182,8 @@ PipeToProfile(enum pipe_video_profile profile)
return VAProfileVP9Profile0;
case PIPE_VIDEO_PROFILE_VP9_PROFILE2:
return VAProfileVP9Profile2;
case PIPE_VIDEO_PROFILE_AV1_MAIN:
return VAProfileAV1Profile0;
case PIPE_VIDEO_PROFILE_MPEG4_AVC_EXTENDED:
case PIPE_VIDEO_PROFILE_MPEG4_AVC_HIGH10:
case PIPE_VIDEO_PROFILE_MPEG4_AVC_HIGH422:
@@ -232,6 +234,8 @@ ProfileToPipe(VAProfile profile)
return PIPE_VIDEO_PROFILE_VP9_PROFILE0;
case VAProfileVP9Profile2:
return PIPE_VIDEO_PROFILE_VP9_PROFILE2;
case VAProfileAV1Profile0:
return PIPE_VIDEO_PROFILE_AV1_MAIN;
case VAProfileNone:
return PIPE_VIDEO_PROFILE_UNKNOWN;
default: