vdpau: remove bogus assert
The assert introduced by24f2b0a856triggers when an application requests a chroma_type that's different to the one from the PIPE_VIDEO_CAP_PREFERED_FORMAT (before this change the chroma_type was set but ignored). So restore this behavior and ignore the chroma_type. Reported-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Leo Liu <leo.liu@amd.com> Fixes:24f2b0a856("gallium/video: remove pipe_video_buffer.chroma_format") Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4104> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4104>
This commit is contained in:
committed by
Marge Bot
parent
b6cebf6439
commit
78d42d41d4
@@ -82,6 +82,7 @@ vlVdpVideoSurfaceCreate(VdpDevice device, VdpChromaType chroma_type,
|
||||
|
||||
mtx_lock(&dev->mutex);
|
||||
memset(&p_surf->templat, 0, sizeof(p_surf->templat));
|
||||
/* TODO: buffer_format should be selected to match chroma_type */
|
||||
p_surf->templat.buffer_format = pipe->screen->get_video_param
|
||||
(
|
||||
pipe->screen,
|
||||
@@ -89,7 +90,6 @@ vlVdpVideoSurfaceCreate(VdpDevice device, VdpChromaType chroma_type,
|
||||
PIPE_VIDEO_ENTRYPOINT_BITSTREAM,
|
||||
PIPE_VIDEO_CAP_PREFERED_FORMAT
|
||||
);
|
||||
assert(pipe_format_to_chroma_format(p_surf->templat.buffer_format) == ChromaToPipe(chroma_type));
|
||||
p_surf->templat.width = width;
|
||||
p_surf->templat.height = height;
|
||||
p_surf->templat.interlaced = pipe->screen->get_video_param
|
||||
|
||||
Reference in New Issue
Block a user