mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
radeonsi: use PIPE_FORMAT_P016 format for VP9 profile2
Signed-off-by: Leo Liu <leo.liu@amd.com> Acked-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
parent
f1277dabbc
commit
dac0024b58
1 changed files with 2 additions and 1 deletions
|
|
@ -662,7 +662,8 @@ static int si_get_video_param(struct pipe_screen *screen,
|
|||
case PIPE_VIDEO_CAP_MAX_HEIGHT:
|
||||
return (sscreen->info.family < CHIP_TONGA) ? 1152 : 4096;
|
||||
case PIPE_VIDEO_CAP_PREFERED_FORMAT:
|
||||
if (profile == PIPE_VIDEO_PROFILE_HEVC_MAIN_10)
|
||||
if (profile == PIPE_VIDEO_PROFILE_HEVC_MAIN_10 ||
|
||||
profile == PIPE_VIDEO_PROFILE_VP9_PROFILE2)
|
||||
return PIPE_FORMAT_P016;
|
||||
else
|
||||
return PIPE_FORMAT_NV12;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue