[Mesa-dev] [PATCH 3/3] radeon/uvd: disable VC-1 simple/main on UVD 2.x

Christian König deathsimple at vodafone.de
Wed Jun 4 10:11:04 PDT 2014


Am 04.06.2014 18:54, schrieb Grigori Goronzy:
> It's about as broken as on later UVD revisions.
>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=66452
> Cc: "10.1 10.2" <mesa-stable at lists.freedesktop.org>

Do you have commit rights?

Patch is Reviewed-by: Christian König <christian.koenig at amd.com>

Thanks for the help,
Christian.

> ---
>   src/gallium/drivers/radeon/radeon_video.c | 5 ++++-
>   1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/src/gallium/drivers/radeon/radeon_video.c b/src/gallium/drivers/radeon/radeon_video.c
> index 63bd805..eae533e 100644
> --- a/src/gallium/drivers/radeon/radeon_video.c
> +++ b/src/gallium/drivers/radeon/radeon_video.c
> @@ -242,7 +242,10 @@ int rvid_get_video_param(struct pipe_screen *screen,
>   		switch (param) {
>   		case PIPE_VIDEO_CAP_SUPPORTED:
>   			/* no support for MPEG4 */
> -			return codec != PIPE_VIDEO_FORMAT_MPEG4;
> +			return codec != PIPE_VIDEO_FORMAT_MPEG4 &&
> +			       /* FIXME: VC-1 simple/main profile is broken */
> +			       profile != PIPE_VIDEO_PROFILE_VC1_SIMPLE &&
> +			       profile != PIPE_VIDEO_PROFILE_VC1_MAIN;
>   		case PIPE_VIDEO_CAP_PREFERS_INTERLACED:
>   		case PIPE_VIDEO_CAP_SUPPORTS_INTERLACED:
>   			/* and MPEG2 only with shaders */



More information about the mesa-dev mailing list