[Mesa-dev] [PATCH] radeonsi: Expose support for 10 bit VP9 decode
Liu, Leo
Leo.Liu at amd.com
Thu Jun 27 21:34:03 UTC 2019
On 2019-06-26 11:56 p.m., Vishwakarma, Pratik wrote:
> Fix si_vid_is_format_supported to expose
> support for 10-bit VP9 decode using P016 format
You could have a better commit message here, like what it will cause by
missing this patch.
Regards,
Leo
>
> Signed-off-by: Pratik Vishwakarma <Pratik.Vishwakarma at amd.com>
> ---
> src/gallium/drivers/radeonsi/si_get.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/src/gallium/drivers/radeonsi/si_get.c b/src/gallium/drivers/radeonsi/si_get.c
> index 4e23d283ab7..8cc5933f9bc 100644
> --- a/src/gallium/drivers/radeonsi/si_get.c
> +++ b/src/gallium/drivers/radeonsi/si_get.c
> @@ -709,6 +709,10 @@ static boolean si_vid_is_format_supported(struct pipe_screen *screen,
> return (format == PIPE_FORMAT_NV12) ||
> (format == PIPE_FORMAT_P016);
>
> + /* Vp9 profile 2 supports 10 bit decoding using P016 */
> + if (profile == PIPE_VIDEO_PROFILE_VP9_PROFILE2)
> + return format == PIPE_FORMAT_P016;
> +
> /* we can only handle this one with UVD */
> if (profile != PIPE_VIDEO_PROFILE_UNKNOWN)
> return format == PIPE_FORMAT_NV12;
More information about the mesa-dev
mailing list